/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  /** Hero Variables **/
  --white: #fff;
  --black: #000;
  --silver: #c0c0c0;
  --primary-color: #ee2326;
  --text-color: #303030;
  --link-color: #009fda;
  --border-color: #a5a5a5;
  --brand-red: #e30613;
  --red: #f00;
  --dark-theme-text-color: #f3f3f3;
  --footer-border-color: #969696;
  --nav-border-color: #595959;
  --radio-outline-color: #d30000;
  --grey-bright-color: #b8b8b8;
  --dropdown-hover-color: #deebff !important;
  --dropdown-background-color: #0884ff !important;
  --bg-gradient1: linear-gradient(160.69deg, #b50000 22.35%, #f00 68.47%, #b50000 114.59%);

  /* Fonts */
  --tstar-medium: "TSTAR-PRO-Medium";
  --tstar-bold: "TSTAR-PRO-Bold";
  --tstar-regular: "TSTAR-PRO-Regular";
  --tstar-heavy: "TSTAR-PRO-Heavy";
  --transducer-bold: "TRANSDUCER-EDS-Bold";
  --transducer-regular: "TRANSDUCER-EDS-Regular";
  --transducer-medium: "TRANSDUCER-EDS-Medium";
  --montserrat-bold: "Montserrat-Bold";
  --transducer-test-regular: "TRANSDUCER-Test-Regular";
  --transducer-test-medium: "TRANSDUCER-Test-Medium";
  --transducer-test-bold: "TRANSDUCER-Test-Bold";
  --transducer-test-med-oblique: "TRANSDUCER-Test-CondensedMedObli";

  /* Font Sizes */
  --font-size10: 10px;
  --font-size12: 12px;
  --font-size14: 14px;
  --font-size16: 16px;
  --font-size18: 18px;
  --font-size20: 20px;
  --font-size24: 24px;
  --font-size26: 26px;
  --font-size28: 28px;
  --font-size30: 30px;
  --font-size32: 32px;
  --font-size42: 42px;
  --font-size48: 48px;
  --font-size52: 52px;
  --font-size56: 56px;

  /** BreakPoints **/
  --breakpoint-sm: 1024;
  --max-width: 1366;
  --mobile-max: 766;
  --min-width: 320;

  /* colors */
  --background-color: white;
  --light-color: #f8f8f8;
  --dark-color: #505050;
  --gray-color: #686868;
}

html {
  height: 100%;
  width: 100%;
}

body {
  display: none;
  margin: 0;
  background-color: var(--white);
  color: var(--text-color);
  font-family: var(--tstar-bold);
  font-size: var(--font-size16);
  width: 100%;
  line-height: 20px;
  overflow-x: initial !important;
  padding-top: 95px !important;
  scroll-behavior: smooth;
}

@media (width < 768px) {
  body {
    padding-top: 90px !important;
  }
}

@media(width >=1200px) {
  body::-webkit-scrollbar {
    width: 5px !important;
    height: 5px !important;
    background-color: rgb(255 255 255 / 10%);
  }

  body::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255 / 50%) !important;
    border-radius: 5px !important;
  }
}

body.appear {
  display: block;
}

header .header,
footer .footer {
  visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
  visibility: visible;
}

/** Defining Hero Theme Color Classes **/

.theme-performance {
  --bg-theme: url("https://www.heromotocorp.com/etc.clientlibs/hero-commerce/clientlibs/clientlib-site/resources/images/performance-bg.svg");
  --text-theme: var(--white);
}

.theme-scooter {
  --bg-theme: radial-gradient(90.76% 82.33% at 96.83% 11.44%, #e1ffeb 0%, #fff8ed 100%);
  --text-theme: var(--text-color);
}

.theme-executive {
  --bg-theme: linear-gradient(180deg, #4f4d4d 0%, #3d3d3d 100%);
  --text-theme: var(--white);
}

.theme-practical {
  --bg-theme: #ededed;
  --text-theme: var(--text-color);
}

.theme-premium {
  --bg-theme: var(--white);
  --text-theme: var(--text-color);
}

.theme-xoom-scooter {
  --bg-theme: linear-gradient(180deg, #0b2c53 0%, #001937 100%);
  --text-theme: var(--white);
}

h1,
.h1 {
  font-size: 3.25rem;
  line-height: 4rem
}

h2,
.h2 {
  font-size: 3rem;
  line-height: 3.625rem
}

h3,
.h3 {
  font-size: 2rem;
  line-height: 3rem
}

h4,
.h4 {
  font-size: 1.5rem;
  line-height: 2rem
}

.button-primary-large,
.button-primary {
  font-family: var(--tstar-heavy);
  font-weight: 900;
  font-size: var(--font-size20);
  padding: .625rem 2rem;
  text-transform: uppercase;
  border: 0.667px solid var(--radio-outline-color);
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: .25rem;
  max-height: 48px;
  color: var(--white);
  letter-spacing: normal;
  line-height: 1.75rem;
  background-image: var(--bg-gradient1);
}

.button-secondary-large,
.button-secondary {
  font-family: var(--tstar-heavy);
  font-weight: 900;
  font-size: var(--font-size20);
  padding: .625rem 2rem;
  text-transform: uppercase;
  white-space: nowrap;
  border: 0.667px solid var(--radio-outline-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .25rem;
  max-height: 48px;
  letter-spacing: normal;
  line-height: 1.75rem;
  background-color: var(--white);
  color: var(--radio-outline-color);
}

.button-primary,
.button-secondary {
  padding: 0.625rem 1.125rem;
}

.button-primary-large i,
.button-secondary-large i {
  padding-left: 12px;
}

.button-primary:hover,
.button-primary-large:hover,
.button-primary:focus,
.button-primary-large:focus {
  color: var(--white);
}

.button-secondary:hover,
.button-secondary-large:hover,
.button-secondary:focus,
.button-secondary-large:focus {
  color: var(--radio-outline-color);
}

@media (width < 1024px) {
  h1,
  .h1 {
    font-size: 2rem;
    line-height: 3rem
  }

  h2,
  .h2 {
    font-size: 1.75rem;
    line-height: 2.5rem
  }

  h3,
  .h3 {
    font-size: 1.5rem;
    line-height: 2rem
  }

  h4,
  .h4 {
    font-size: 1.125rem;
    line-height: 1.5rem
  }

  .button-primary-large,
  .button-secondary-large,
  .button-primary,
  .button-secondary {
    font-size: .875rem;
    padding: 0.5rem 1.5rem;
    max-height: 36px;
  }
}

.custom-scroll-wrapper {
  position: relative;
  max-height: 295px;
  overflow: hidden;
}

.custom-scrollbar {
  position: absolute;
  top: 0;
  right: -1px;
  width: 7px;
  height: 100%;
  background: #f5f5f5;
  padding: 5px 0;
}

.custom-scrollbar .scroll-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  transform: skewY(-30deg);
  transform-origin: top;
}

/* Example format
.icon-moon-heroicon-open-eye:before {
  content: "\E996";
} */

@font-face {
  font-family: hero-icon-font;
  src: url('../fonts/hero-icon-font/hero-icon.woff') format('woff'),
    url('../fonts/hero-icon-font/hero-icon.ttf') format('truetype'),
    url('../fonts/hero-icon-font/hero-icon.svg') format('svg'),
    url('../fonts/hero-icon-font/hero-icon.eot') format('eot');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.hero-eds-icon {
  font-family: hero-icon-font, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.heroicon-360::before {
  content: "\e900";
}

.heroicon-rotate-left::before {
  content: '\e9a3';
}

.heroicon-rotate-right::before {
  content: '\e9a3';
  transform: rotate(180deg);
}

.heroicon-open-eye::before {
  content: "\E996";
}

.heroicon-open-eye:hover::before {
  color: var(--primary-color);
}

.heroicon-bike::before {
  content: "\E915";
}

.heroicon-bike:hover::before {
  color: var(--primary-color);
}

.heroicon-wallet-money::before {
  content: "\E9C6";
}

.heroicon-wallet-money:hover::before {
  color: var(--primary-color);
}

.heroicon-exchange::before {
  content: "\E964";
}

.heroicon-exchange:hover::before {
  color: var(--primary-color);
}

.heroicon-settings::before {
  content: "\E9AD";
}

.heroicon-settings:hover::before {
  color: var(--primary-color);
}

.heroicon-delear-locator::before {
  content: "\E942";
}

.heroicon-delear-locator:hover::before {
  color: var(--primary-color);

}

.heroicon-spedometer::before {
  content: '\e9a3';
}

.heroicon-short-logo::before {
  content: '\e9cc';
}

.heroicon-suspension::before {
  content: '\e9b2';
}

.heroicon-right::before {
  content: '\e9a2';
}

.heroicon-left-arrow::before {
  content: '\e9bd';
}

.heroicon-tyre::before {
  content: '\e9bd';
}

.heroicon-safety::before {
  content: '\e9a4';
}

.heroicon-disbrake::before {
  content: '\e945';
}

.heroicon-speedometer::before {
  content: '\e9b0';
}

.heroicon-start::before {
  content: '\ea28';
}

.heroicon-seat::before {
  content: '\ea25';
}

.heroicon-side-stand::before {
  content: '\ea27';
}

.heroicon-fuel-injection::before {
  content: '\ea1c';
}

.heroicon-download::before {
  content: '\e948';
}

.heroicon-share::before {
  content: '\e9ae';
}

.heroicon-color-path1::before {
  content: '\e931';
}

.heroicon-whatsapp::before {
  content: '\e9c8';
}

.heroicon-email::before {
  content: '\e9cd'
}

.heroicon-facebook::before {
  content: '\e965';
}

.heroicon-engine::before {
  content: '\e94f';
}

.heroicon-wheel::before {
  content: '\e9c9';
}

.heroicon-chassis::before {
  content: '\e92f';
}

.heroicon-electrical::before {
  content: '\e94c';
}

.heroicon-reorder::before {
  content: '\e99e';
}

.heroicon-call::before {
  content: "\e927";
}

.heroicon-address .path1::before {
  content: "\e908";
}

.heroicon-address .path2::before {
  content: "'\e909";
}

.heroicon-address .path3::before {
  content: "\e90a";
}

.heroicon-logo .path1::before {
  content: "\e9ce";
}

.heroicon-logo .path2::before {
  content: "\e9cf";
}

.heroicon-logo .path3::before {
  content: "\e9d0";
}
