@charset "utf-8";

:root {
  --accent: #E50014;
  --yellow: #FFD600;
  --white: #ffffff;
  --black: #000000;
  --light: #DEDEDE;
  --light-dark: #9B9B9B;
  --dark: #1F2B3E;

  --border-light: #9B9B9B;
}


/* ------------------------------------ basic ------------------------------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: 'Montserrat', sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: var(--white);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--dark);
  overflow-x: hidden;
}

::-moz-selection {
  background: var(--accent);
  color: var(--white);
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: var(--dark);
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

a:focus,
a:hover {
  color: var(--accent);
  outline: none;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.vselect-custome .vs__search::placeholder,
.vselect-custome .vs__dropdown-toggle,
.vselect-custome .vs__dropdown-menu {
  background: var(--white);
  border: none;
  font-weight: 500;
  font-size: 0.75rem;
  color: #9B9B9B;
  opacity: 0.9;
}

.vselect-custome .vs__dropdown-toggle {
  height: 2.188rem;
  border: 1px solid #CED2D1;
  font-weight: normal;
  font-size: 0.875rem;
  color: var(--black);
  border-radius: 5px;
  white-space: normal;
}

.vselect-custome.trans .vs__dropdown-toggle {
  border: 1px solid transparent;
}

.vselect-custome .vs__dropdown-option {
  display: block;
  padding: 5px 20px;
  clear: both;
  font-size: 0.813rem;
  line-height: 2.188rem;
  color: var(--dark);
  white-space: nowrap;
}

.vselect-custome .vs__dropdown-option--highlight {
  background: var(--yellow);
  font-weight: bold;
  color: var(--dark);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.font-weight-200 {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.font-10 {
  font-size: 0.625rem !important;
}

.font-11 {
  font-size: 0.688rem !important;
}

.font-12 {
  font-size: 0.75rem !important;
}

.font-13 {
  font-size: 0.813rem !important;
}

.font-14 {
  font-size: 0.875rem !important;
}

.font-15 {
  font-size: 0.938rem !important;
}

.font-16 {
  font-size: 1rem !important;
}

.font-17 {
  font-size: 1.063rem !important;
}

.font-18 {
  font-size: 1.125rem !important;
}

.font-19 {
  font-size: 1.188rem !important;
}

.font-20 {
  font-size: 1.25rem !important;
}

.font-21 {
  font-size: 1.313rem !important;
}

.font-22 {
  font-size: 1.375rem !important;
}

.font-23 {
  font-size: 1.438rem !important;
}

.font-24 {
  font-size: 1.5rem !important;
}

.font-25 {
  font-size: 1.563rem !important;
}

.lh-1 {
  line-height: 1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.lh-4 {
  line-height: 1.4;
}

.lh-5 {
  line-height: 1.5;
}

.lh-23 {
  line-height: 2.3;
}

.text-white {
  color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-light {
  color: var(--light) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.text-blue {
  color: #0048B9 !important;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-none {
  opacity: 1;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.word-break-all {
  word-break: break-all !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.p-absolute {
  position: absolute !important;
}

.p-relative {
  position: relative !important;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.line-heading {
  width: 4.063rem;
  border-bottom: 0.25rem solid var(--orange);
}

.img-circle {
  border-radius: 50% !important;
}

.border-secondary {
  border: 1px solid var(--secondary) !important;
}

.border-top {
  border-top: 1px solid #ced4da !important;
}

.border-bottom-none {
  border-bottom: none !important;
}

.border-none {
  border: none !important;
}

.shadow-box {
  box-shadow: 0rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
}

.line-shadow {
  border-bottom: 1px solid #C4C4C4;
  box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.line-accent {
  height: 0.375rem;
  width: 9.375rem;
  background: var(--accent);
  margin: 0;
}

.w-100-important {
  width: 100% !important;
}

.jm-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 7em;
}

.textmore,
.textless {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: var(--black);
  letter-spacing: 0.02em;
}

.has-error {
  color: #DC3545 !important;
}

.has-error>input {
  border-color: #DC3545 !important;
}

.has-error em {
  color: #DC3545 !important;
  font-size: 0.875rem !important;
}

.trans-ease-in-out {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.trans-4 {
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

/* ------------------------------------ end basic ------------------------------------ */



/* ------------------------------------ navigation bar ------------------------------------ */
.header-main {
  position: relative;
  display: block;
}

.header-main .main-header-menu-wrap {
  display: block !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slideInU;
  animation-name: slideInU;
  background: var(--dark);
  /* border-top: 0.5rem solid var(--yellow); */
}

.header-main .main-header-menu-wrap.affix {
  border-top: none;
}

.header-main .main-header-menu-wrap.affix {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.header-main .main-header-menu-wrap .navbar-toggler.btn {
  color: var(--white);
}

.header-main .main-header-menu-wrap .navbar-toggler.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--yellow);
}

.header-main .main-header-menu-wrap .header-nav {
  padding: 0;
}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav {}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item {}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item:hover .custom-nav-link,
.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item:focus .custom-nav-link {
  color: var(--yellow);
}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item .custom-nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--white);
  position: relative;
}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item .custom-nav-link .icon-nav {
  max-width: 85%;
}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth {
  color: var(--white);
  background: none;
  /*padding: 0.75rem 1.25rem;*/
}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth svg {
  width: 23px;
  height: 23px;
}

.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth span {
  display: none;
}

/*.header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth span { color: var(--yellow); }
    .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth:hover, 
    .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth:focus { 
        background: transparent; border-color: rgba(255, 255, 255, 0.15);
    }*/


.header-main .nav-tabs-style .nav-tabs li a {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.875rem;
}

.header-main .nav-tabs-style .nav-tabs-content {
  width: 100%;
  padding: 0;
  border: none;
}

.header-main .nav-tabs-style .flex-4-column {
  align-items: stretch;
}

.header-main .nav-tabs-style .flex-4-column .flex-col {
  align-self: stretch;
  padding: 0.5rem;
}

.header-main .nav-tabs-style .flex-4-column .flex-col hr {
  margin-top: 0.313rem;
  margin-bottom: 0.313rem;
}

.header-main .nav-tabs-style .flex-4-column .flex-col .price {
  font-weight: bold !important;
  font-size: 0.813rem !important;
  margin-bottom: 0.188rem;
}

.header-main .nav-tabs-style .flex-4-column .flex-col del {
  font-size: 0.75rem;
}

.header-main .nav-tabs-style .flex-4-column .flex-col .card-product-2 .price-display-1 a.link {
  margin-top: 1.5%;
}

.header-main .nav-tabs-style .flex-4-column .flex-col .card-product-2 .price-display-2 .box-price {
  width: 100%;
  padding: 0.625rem 0.313rem;
  border-left: 1px solid #DEDEDE;
}

.header-main .nav-tabs-style .flex-4-column .flex-col .card-product-2 .price-display-2 .box-price:first-child {
  border-left: none;
}

.header-main .nav-tabs-style .flex-4-column .flex-col .card-product-2 .price-display-2 .box-price:last-child {
  border-right: none;
}

.header-main .nav-tabs-style .flex-4-column .flex-col .card-product-2 .price-display-2 p {
  font-weight: 600;
  font-size: 0.563rem;
  letter-spacing: -0.03em;
}


/*sub menucss*/
.hs-has-sub-menu {
  position: relative;
}

.main-sub-menu .active>.sub-menu-nav-link {
  color: var(--yellow);
}

.main-sub-menu {
  max-width: 75rem;
  padding-left: 0;
  list-style: none;
}

.main-sub-menu .sub-menu-nav-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.main-sub-menu .sub-menu-nav-link:hover {
  background: var(--yellow);
}

.main-link-toggle::after {
  display: inline-block;
  font-family: "themify";
  font-size: 50%;
  content: "\e64b";
  margin-left: .4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  top: -1px;
}

@media (min-width: 320px) and (max-width: 992px) {
  .navbar-expand-md .main-navbar-nav .custom-nav-link {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }
}

@media (min-width: 768px) {
  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item .custom-nav-link {
    padding: 0.938rem 0.875rem;
  }

  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item .main-sub-menu {
    background: rgba(255, 255, 255, 0.88);
    width: 100%;
    border-radius: 0.313rem;
    -webkit-box-shadow: 0 0.75rem 1.25rem 0 rgba(23, 28, 33, 0.16);
    box-shadow: 0 0.75rem 1.25rem 0 rgba(23, 28, 33, 0.16);
  }

  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }

  .header-main .header-nav .hs-has-sub-menu ul.hs-sub-menu>.hs-has-sub-menu ul.hs-sub-menu {
    border-top-right-radius: 0.625rem;
  }

  .header-main .header-nav .main-navbar-nav .main-sub-menu.hs-sub-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header-main .header-nav .main-navbar-nav .main-sub-menu .hs-has-sub-menu .main-sub-menu {
    margin-top: -1.1875rem;
  }

  .header-main .header-nav .main-navbar-nav .main-sub-menu .hs-has-sub-menu {
    padding: 0;
  }

  .header-main .header-nav .main-navbar-nav .header-nav-last-item {
    text-align: right;
    padding-left: 1rem;
    padding-right: 0;
  }

  .header-main .header-nav .mega-menu-wrap {
    padding: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .header-main .header-nav .main-navbar-nav .sub-menu-nav-group .sub-menu-nav-link {
    padding-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .hs-mega-menu {
    height: 36.875rem;
    overflow-y: scroll;
    padding: 1.25rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hs-mega-menu {
    height: 27.5rem;
    overflow-y: scroll;
    padding: 1.25rem;
  }
}


/*responsive menu css*/
@media (max-width: 767px) {
  .hs-mega-menu {
    height: 100%;
    overflow-y: scroll;
  }

  .hs-mega-menu.hs-position-center {
    -webkit-transform: none !important;
    transform: none !important;
  }

  .hs-mega-menu .btn-expl {
    padding: 0.5rem 0.625rem !important;
  }

  .header-main .main-header-menu-wrap .header-nav {
    padding: 0.625rem 0;
  }

  .header-main .main-header-menu-wrap .header-nav .header-logo {
    max-width: 12.5rem;
  }

  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .custom-nav-item .custom-nav-link {
    line-height: 1.875rem;
  }

  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth {
    width: 100%;
    margin-top: 0.938rem;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .header-main .main-header-menu-wrap .header-nav .main-navbar-nav .btn-auth span {
    display: block;
    margin-left: 5px;
  }

  .header-main .nav-tabs-style .nav-tabs {
    max-width: 23.75rem;
  }

  .header-main .nav-tabs-style .nav-tabs li a {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 2.5rem;
  }

  .header-main .nav-tabs-style .flex-4-column {
    flex-wrap: inherit;
    max-width: 23.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .header-main .nav-tabs-style .flex-4-column .flex-col .card-product-2 {
    width: 100%;
    min-width: 15.625rem;
  }

  .header-main .header-nav .custom-nav-link,
  .header-main .header-nav .sub-menu-nav-link {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .header-main .header-nav .main-link-toggle::after,
  .header-main .header-nav .sub-link-toggle::after {
    margin-left: auto;
  }

  .header-main .header-nav .hs-mega-menu-opened .custom-nav-link-toggle::after,
  .header-main .header-nav .hs-sub-menu-opened .custom-nav-link-toggle::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .header-main .header-nav .hs-sub-menu-opened>.sub-link-toggle::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .header-main .header-nav .sub-menu-nav-group {
    padding-top: .5rem;
    padding-left: 1.5rem;
  }

  .header-main .header-nav .main-navbar-nav .custom-nav-item .main-sub-menu {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .header-main .header-nav .main-navbar-nav .custom-nav-item .main-sub-menu .hs-has-sub-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-main .header-nav .main-navbar-nav .custom-nav-item .main-sub-menu .submenu-item {}

  .header-main .header-nav .main-navbar-nav .custom-nav-item .main-sub-menu .submenu-item .sub-menu-nav-link {
    padding-left: 1.25rem;
    padding-right: 0.625rem;
  }
}

/* ------------------------------------ end navigation ------------------------------------ */



/* ------------------------------------ flex-column ------------------------------------ */
.flex-2-column {
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center
}

.flex-2-column .flex-col {
  align-self: center;
  flex-basis: 100%;
  -ms-flex: auto;
  width: 100%;
}

@media (min-width: 31.25em) {
  .flex-2-column .flex-col {
    flex-basis: 50%;
  }
}

@media (min-width: 37.5em) {
  .flex-2-column .flex-col {
    flex-basis: 50%;
  }
}

@media (min-width: 60em) {
  .flex-2-column .flex-col {
    flex-basis: 50%;
  }
}

@media (min-width: 68.75em) {
  .flex-2-column .flex-col {
    flex-basis: 50%;
  }
}

@media (min-width: 77.5em) {
  .flex-2-column .flex-col {
    flex-basis: 50%;
  }
}



.flex-3-column {
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center
}

.flex-3-column .flex-col {
  align-self: center;
  flex-basis: 100%;
  -ms-flex: auto;
  width: 100%;
}

@media (min-width: 31.25em) {
  .flex-3-column .flex-col {
    flex-basis: 50%;
  }
}

@media (min-width: 37.5em) {
  .flex-3-column .flex-col {
    flex-basis: 33.33%;
  }
}

@media (min-width: 60em) {
  .flex-3-column .flex-col {
    flex-basis: 33.33%;
  }
}

@media (min-width: 68.75em) {
  .flex-3-column .flex-col {
    flex-basis: 33.33%;
  }
}

@media (min-width: 77.5em) {
  .flex-3-column .flex-col {
    flex-basis: 33.33%;
  }
}



.flex-4-column {
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center
}

.flex-4-column .flex-col {
  align-self: center;
  flex-basis: 100%;
  -ms-flex: auto;
  width: 100%;
}

@media (min-width: 31.25em) {
  .flex-4-column .flex-col {
    flex-basis: 50%;
  }
}

@media (min-width: 37.5em) {
  .flex-4-column .flex-col {
    flex-basis: 25%;
  }
}

@media (min-width: 60em) {
  .flex-4-column .flex-col {
    flex-basis: 25%;
  }
}

@media (min-width: 68.75em) {
  .flex-4-column .flex-col {
    flex-basis: 25%;
  }
}

@media (min-width: 77.5em) {
  .flex-4-column .flex-col {
    flex-basis: 25%;
  }
}



.flex-6-column {
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center
}

.flex-6-column .flex-col {
  align-self: center;
  flex-basis: 50%;
  -ms-flex: auto;
  width: 100%;
  margin-bottom: 0.625rem;
}

@media (min-width: 31.25em) {
  .flex-6-column .flex-col {
    flex-basis: 33.33%;
  }
}

@media (min-width: 37.5em) {
  .flex-6-column .flex-col {
    flex-basis: 25%;
  }
}

@media (min-width: 60em) {
  .flex-6-column .flex-col {
    flex-basis: 20%;
  }
}

@media (min-width: 68.75em) {
  .flex-6-column .flex-col {
    flex-basis: 16.66%;
  }
}

@media (min-width: 77.5em) {
  .flex-6-column .flex-col {
    flex-basis: 16.66%;
  }
}

/* ------------------------------------ end flex-column ------------------------------------ */



/* ------------------------------------ grid-column ------------------------------------ */
.grid-3-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
}

.grid-3-column .grid-col {}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .grid-3-column {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3.75rem;
    grid-row-gap: 2.75rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid-3-column {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2.55rem;
    grid-row-gap: 2.55rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-3-column {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.55rem;
    grid-row-gap: 2.55rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .grid-3-column {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0rem;
    grid-row-gap: 1.25rem;
  }

  .grid-3-column .grid-col {
    padding: 0 1.45rem;
  }
}

@media (max-width: 767px) {
  .grid-3-column {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0rem;
    grid-row-gap: 1.25rem;
  }

  .grid-3-column .grid-col {
    padding: 0 1.45rem;
  }
}



.grid-2-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
}

.grid-2-column .grid-col {}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .grid-2-column {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3.75rem;
    grid-row-gap: 2.75rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid-2-column {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.55rem;
    grid-row-gap: 2.55rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-2-column {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.55rem;
    grid-row-gap: 2.55rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .grid-2-column {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0rem;
    grid-row-gap: 1.25rem;
  }

  .grid-2-column .grid-col {
    padding: 0 1.45rem;
  }
}

@media (max-width: 767px) {
  .grid-2-column {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0rem;
    grid-row-gap: 1.25rem;
  }

  .grid-2-column .grid-col {
    padding: 0 1.45rem;
  }
}



.grid-5-column {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 1.55rem;
  grid-row-gap: 2.75rem;
}

.grid-5-column .grid-col {}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .grid-5-column {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 1.55rem;
    grid-row-gap: 2.75rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid-5-column {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2.55rem;
    grid-row-gap: 2.55rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-5-column {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2.55rem;
    grid-row-gap: 2.55rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .grid-5-column {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0rem;
    grid-row-gap: 1.25rem;
  }

  .grid-5-column .grid-col {
    padding: 0 1.45rem;
  }
}

@media (max-width: 767px) {
  .grid-5-column {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0rem;
    grid-row-gap: 1.25rem;
  }

  .grid-5-column .grid-col {
    padding: 0 1.45rem;
  }
}

/* ------------------------------------ end grid-grid ------------------------------------ */



/* ------------------------------------ general class ------------------------------------ */
/*.site-wrap:before {
        -webkit-transition: .3s all ease-in-out;
        -o-transition: .3s all ease-in-out;
        transition: .3s all ease-in-out;
        background: rgba(0, 0, 0, 0.6);
        content: "";
        position: absolute;
        z-index: 2000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
    }*/

.site-wrap {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  /*z-index: 2;*/
}

/*.site-wrap:before { opacity: 1; visibility: visible; }
    .offcanvas-menu { position: relative; }
    .offcanvas-menu:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        top: 0;
        right: 0;
        z-index: 21;
        background: rgba(0, 0, 0, 0.2);
    }*/


.mh-100 {
  min-height: 100vh;
}

.mh-93 {
  min-height: 93.5vh;
}

.section-100 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100%;
  max-width: 112.5rem;
  margin: auto;
}

.section-100-top {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100%;
  max-width: 112.5rem;
  margin: auto;
}

.section-lg {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.section-md {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-sm {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.section-xs {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-lg {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .section-md {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-sm {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-xs {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-lg {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .section-md {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-sm {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-xs {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-lg {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-md {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-sm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-xs {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-lg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-md {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-sm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-xs {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .section-lg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-md {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-sm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-xs {
    padding-top: 0.938rem;
    padding-bottom: 0.938rem;
  }
}



.section-lg-top--3 {}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-lg-top--3 {
    margin-top: -3%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-lg-top--3 {
    margin-top: -3%;
  }
}



.section-lg-top--5 {}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-lg-top--5 {
    margin-top: -5%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-lg-top--5 {
    margin-top: -5%;
  }
}



.section-top--3 {}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-top--3 {
    margin-top: -3%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-top--3 {
    margin-top: -3%;
  }
}



.section-subheading {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  letter-spacing: 0.38em;
  color: var(--dark);
}

.section-subheading-xs {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #595959;
}

.section-heading-lg {
  font-weight: 900;
  font-size: 2.955rem;
  line-height: 1.2;
  color: var(--dark);
}

.section-heading {
  font-weight: 800;
  font-size: 2.375rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-heading-sm {
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-heading-xs {
  font-weight: 800;
  font-size: 1.563rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-description-lg {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-description {
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-description-md {
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-description-sm {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-description-xs {
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--dark);
}

.section-description-xxs {
  font-weight: normal;
  font-size: 0.625rem;
  line-height: 1.5;
  color: var(--dark);
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-heading-lg {
    font-size: 2.955rem;
  }

  .section-heading {
    font-size: 2.375rem;
  }

  .section-description {
    font-size: 1.125rem;
  }

  .section-description-md {
    font-size: 1rem;
  }

  .section-description-sm {
    font-size: 0.875rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-heading-lg {
    font-size: 2.955rem;
  }

  .section-heading {
    font-size: 2.375rem;
  }

  .section-description {
    font-size: 1.125rem;
  }

  .section-description-md {
    font-size: 1rem;
  }

  .section-description-sm {
    font-size: 0.875rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-heading-lg {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 2.188rem;
  }

  .section-heading-sm {
    font-size: 28px;
  }

  .section-description {
    font-size: 1rem;
  }

  .section-description-md {
    font-size: 0.935rem;
  }

  .section-description-sm {
    font-size: 0.875rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-heading-lg {
    font-size: 1.9rem;
  }

  .section-heading {
    font-size: 1.625rem;
  }

  .section-heading-sm {
    font-size: 1.5rem;
  }

  .section-heading-xs {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.938rem;
  }

  .section-description-md {
    font-size: 0.875rem;
  }

  .section-description-sm {
    font-size: 0.813rem;
  }

  .section-description-xs {
    font-size: 0.625rem;
  }

  .section-description-xxs {
    font-size: 0.563rem;
  }
}

@media (max-width: 767px) {
  .section-heading-lg {
    font-size: 1.9rem;
  }

  .section-heading {
    font-size: 1.625rem;
  }

  .section-heading-sm {
    font-size: 1.5rem;
  }

  .section-heading-xs {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.938rem;
  }

  .section-description-md {
    font-size: 0.875rem;
  }

  .section-description-sm {
    font-size: 0.813rem;
  }

  .section-description-xs {
    font-size: 0.625rem;
  }

  .section-description-xxs {
    font-size: 0.563rem;
  }
}


.box-section-title {
  margin-bottom: 1.875rem;
}

.box-section-title h2 {
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 0.938rem;
}

.box-section-title h2 span {
  color: var(--accent);
}

.box-section-title p {}


.box-section-title-2 {
  margin-bottom: 2.5rem;
  background: #F7F7F7;
}

.box-section-title-2 h2 {
  font-weight: bold;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 0rem;
  padding: 0.625rem 1.875rem;
  padding-right: 3.75rem;
  background: var(--yellow);
  background: linear-gradient(120deg, rgba(255, 214, 0, 0.77) 92%, rgba(255, 255, 255, 0) 0%);
  clear: both;
  display: inline-block;
}


.box-section-title.line-title {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #dadada;
  margin-bottom: 1.25rem;
}

.box-section-title.line-title h2 {
  margin-bottom: 0rem;
}

/* ------------------------------------ end general class ------------------------------------ */



/* ------------------------------------ intro ------------------------------------ */
.intro-home {
  position: relative;
  height: 100vh;
}

.intro-home .intro-slider-container {
  overflow: hidden;
  height: 100%;
}

.intro-home .intro-slider-container .intro-slider {}

.intro-home .intro-slider-container .intro-slider .owl-item {
  height: calc(100vh);
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.intro-home .intro-slider-container .intro-slider .img-slider {
  object-fit: cover;
  height: 100%;
}

.intro-home .intro-slider-container .wrap-nav-slider {
  position: absolute;
  display: inline-flex;
  bottom: 20%;
  right: 10%;
  z-index: 3;
}

.intro-home .intro-slider-container .nav-slider {
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
  font-size: 1.625rem;
  line-height: 1;
  color: var(--white);
  opacity: 0.6;
}

.intro-home .intro-slider-container .nav-slider:hover {
  opacity: 1;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.intro-home .intro-slider-container .intro-slider-prev {
  text-align: left;
}

.intro-home .intro-slider-container .intro-slider-next {
  text-align: right;
}

.intro-home .journey {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  z-index: 5;
}

.intro-home .journey p {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.36em;
  color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .intro-home {
    position: relative;
    height: 100%;
  }

  .intro-home .intro-slider-container {
    height: 90vh;
  }

  .intro-home .journey {
    position: relative;
    margin-top: 1.875rem;
  }

  .intro-home .journey p {
    background: var(--dark);
    padding: 0.938rem;
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .intro-home {
    position: relative;
    height: 100%;
  }

  .intro-home .intro-slider-container {
    height: 100vh;
  }

  .intro-home .journey {
    position: relative;
  }

  .intro-home .journey p {
    background: var(--dark);
    padding: 0.938rem;
    margin-left: -0.938rem;
    margin-right: -0.938rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .intro-home {
    position: relative;
    height: 100%;
  }

  .intro-home .intro-slider-container {
    height: 100vh;
  }

  .intro-home .journey {
    position: relative;
  }

  .intro-home .journey p {
    background: var(--dark);
    padding: 0.938rem;
    margin-left: -0.938rem;
    margin-right: -0.938rem;
    text-align: center;
  }
}

.box-journey {
  position: relative;
  background: var(--white);
  padding: 0.813rem;
  -webkit-box-shadow: 0rem 1.875rem 5rem rgba(0, 17, 77, 0.2);
  -moz-box-shadow: 0rem 1.875rem 5rem rgba(0, 17, 77, 0.2);
  box-shadow: 0rem 1.875rem 5rem rgba(0, 17, 77, 0.2);
}

.box-journey .form-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box-journey .form-style .wrap-form {
  width: 100%;
  /*-webkit-animation: fadeInLEFT 2s;*/
}

.box-journey .form-style .wrap-form.d-none {}

.box-journey .form-style .vselect-custome {
  border: none;
  border-right: 1px solid var(--light);
  border-radius: 0;
  height: 3.125rem;
  line-height: 3.125rem;
}

.box-journey .form-style .vselect-custome .vs__dropdown-toggle {
  height: 3.125rem;
  line-height: 3.125rem;
}

.box-journey .form-style .vselect-custome:last-child {
  border-right: none;
}

.box-journey .form-style .vselect-custome.border-none {
  border-right: none;
}

.box-journey .form-style .input-search {
  background: rgba(196, 196, 196, 0.29);
  border: none;
  height: 3.125rem;
}

.box-journey .form-style .input-search::placeholder {
  font-weight: bold;
  font-size: 0.688rem;
  color: var(--dark);
  opacity: 0.5;
}

.box-journey .form-style .btn {
  padding: 0.938rem 1.25rem;
  margin-left: 1.25rem;
}

.box-journey .form-style .btn:hover {
  color: var(--dark);
  background: var(--yellow);
}

.box-journey .form-style .btn span {
  margin-right: 1.875rem;
  font-weight: bold;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .box-journey .form-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .box-journey .form-style .vselect-custome {
    margin-bottom: 0;
  }

  .box-journey .form-style .vselect-custome.last-child {
    width: 80%;
    border: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-journey .form-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .box-journey .form-style .vselect-custome {
    margin-bottom: 0;
  }

  .box-journey .form-style .vselect-custome.last-child {
    width: 80%;
    border: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-journey .form-style {
    flex-flow: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .box-journey .form-style .vselect-custome {
    flex-basis: 50%;
    width: 50%;
    margin-bottom: 0.938rem;
  }

  .box-journey .form-style .vselect-custome.last-child {
    width: 50%;
  }

  .box-journey .form-style .btn {
    padding: 0.75rem 1.25rem;
    margin-left: 1.25rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .box-journey .form-style {
    flex-flow: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .box-journey .form-style .vselect-custome {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 0.938rem;
    border-right: 0;
    border-bottom: 1px solid var(--light);
  }

  .box-journey .form-style .vselect-custome.last-child {
    width: 100%;
  }

  .box-journey .form-style .btn {
    padding: 0.75rem 2.5rem;
    margin-left: 0rem;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .box-journey .form-style {
    flex-flow: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .box-journey .form-style .nice-select {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 0.938rem;
    border-right: 0;
    border-bottom: 1px solid var(--light);
  }

  .box-journey .form-style .nice-select.last-child {
    width: 100%;
  }

  .box-journey .form-style .btn {
    padding: 0.75rem 2.5rem;
    margin-left: 0rem;
    margin: auto;
  }
}



.intro-md {
  position: relative;
  height: 26.875rem;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-md:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 43, 62, 0.8);
}

.intro-md .block-text {
  text-align: center;
}

.intro-md .block-text .section-subheading {
  color: var(--yellow);
  margin-bottom: 0.313rem;
}

.intro-md .block-text h2 {
  font-size: 2rem;
  color: var(--white);
  line-height: 1.2;
}

.intro-md .block-text p {
  color: var(--white);
}

.intro-md .block-text .section-heading-lg {
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .intro-md .block-text {}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .intro-md .block-text {}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .intro-md .block-text {}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .intro-md {}

  .intro-md .block-text {
    padding-top: 1.875rem;
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .intro-md .block-text {
    padding-top: 1.875rem;
    padding-bottom: 1.25rem;
  }
}

/* ------------------------------------ end intro ------------------------------------ */



/* ------------------------------------ dream car ------------------------------------ */
.dream-car {
  position: relative;
  overflow: hidden;
}

.dream-car-box {
  padding-bottom: 2.5rem;
  margin-top: 0.938rem;
}

.dream-car-box .nav-tabs-category {
  display: inline-flex;
  flex-wrap: inherit;
  width: 100%;
  padding: 0rem;
  border-bottom: 1px solid var(--light);
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dream-car-box .nav-tabs-category::-webkit-scrollbar {
  display: none;
}

.dream-car-box .nav-tabs-category li {
  display: inline-block;
}

.dream-car-box .nav-tabs-category li a {
  position: relative;
  background: transparent;
  border: none;
  width: 9.375rem;
  padding: 0rem 1.25rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 2.5rem;
  color: var(--dark);
}

.dream-car-box .nav-tabs-category li a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.168rem;
  border-top-left-radius: 0.313rem;
  border-top-right-radius: 0.313rem;
  background-color: var(--accent);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.dream-car-box .nav-tabs-category li a:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.dream-car-box .nav-tabs-category li a.active {
  background: transparent;
}

.dream-car-box .nav-tabs-category li a.active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.dream-car-box .tab-content {
  padding-top: 1.25rem;
}

.dream-car .dream-car-box .tab-content .dream-car-content {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  float: left;
  border-left: 1px solid var(--light);
  margin-right: 1.25rem;
  background: #F7F7F7;
  width: 9.375rem;
  height: 100%;
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product::-webkit-scrollbar {
  display: none;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a {
  position: relative;
  width: 9.375rem;
  padding: 0.938rem 0.313rem;
  text-align: center;
  opacity: 0.4;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a:hover,
.dream-car .dream-car-box .tab-content .nav-dream-car-product a.active {
  background: var(--yellow);
  opacity: 1;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 70%;
  height: 1px;
  background-color: var(--light);
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a:last-child {}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a:last-child::before {
  height: 0rem;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a img {
  object-fit: contain;
  max-width: 6.25rem;
  margin: auto;
  margin-bottom: 0.625rem;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-product a p {
  font-weight: 600;
  font-size: 0.813rem;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview {
  width: 100%;
  padding: 1.25rem;
  border: 1px solid var(--light);
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info {
  border-right: 1px solid var(--light);
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info h2 {
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 1.2;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info .price {
  font-size: 1.125rem;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info del {
  font-size: 0.938rem;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info a.link {
  font-size: 0.875rem;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info hr {
  border-top-color: var(--light);
  margin: 1.875rem 0;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product img {
  margin: auto;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product .test-drive {
  position: absolute;
  right: 1.25rem;
  bottom: 0;
}

.dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product .test-drive img {
  margin-left: 0.625rem;
  max-width: 3.438rem;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dream-car-box .nav-tabs-category li a {
    width: 8.125rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }

  .dream-car .dream-car-box .tab-content .dream-car-content {
    display: block;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: inherit;
    width: 100%;
    margin-bottom: 1.25rem;
    border-left: none;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product::-webkit-scrollbar {
    display: none;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a {
    width: 11.25rem;
    padding: 0.938rem 0.938rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a::before {
    content: '';
    position: absolute;
    margin: auto 0;
    top: 0;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: var(--light);
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a:first-child::before {
    height: 0rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a:last-child::before {
    height: 70%;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info h2 {
    font-size: 1.5rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info hr {
    margin: 0.625rem 0;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product {
    display: block;
    margin-top: 1.25rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product .test-drive {
    position: relative;
    right: 0;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .dream-car-box .nav-tabs-category li a {
    width: 8.125rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }

  .dream-car .dream-car-box .tab-content .dream-car-content {
    display: block;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: inherit;
    width: 100%;
    margin-bottom: 1.25rem;
    border-left: none;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product::-webkit-scrollbar {
    display: none;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a {
    width: 11.25rem;
    padding: 0.938rem 0.938rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a::before {
    content: '';
    position: absolute;
    margin: auto 0;
    top: 0;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: var(--light);
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a:first-child::before {
    height: 0rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-product a:last-child::before {
    height: 70%;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info h2 {
    font-size: 1.5rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-info hr {
    margin: 0.625rem 0;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product {
    display: block;
    margin-top: 1.25rem;
  }

  .dream-car .dream-car-box .tab-content .nav-dream-car-preview .dream-car-preview-product .test-drive {
    position: relative;
    right: 0;
    text-align: right;
  }
}

/* ------------------------------------ end dream car ------------------------------------ */



/* ------------------------------------ block section ------------------------------------ */
.price-display-1 {
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.price-display-1 .box-price {
  background: none;
}

.price-display-1 .box-price .price {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 0.313rem;
}

.price-display-1 .box-price .price.bg-price {
  color: var(--white);
  background: var(--accent);
  border-radius: 1.875rem;
  padding: 0.5rem 0.938rem;
}

.price-display-1 .box-price del {
  font-weight: 500;
  font-size: 0.813rem;
  color: #9B9B9B;
  letter-spacing: 0.05em;
}

.price-display-1 a.link {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 4%;
}



.price-display-2 {
  display: -ms-flexbox;
  display: flex;
}

.price-display-2 .box-price {
  width: 100%;
  padding: 0.938rem 0.625rem;
  border-left: 1px solid #DEDEDE;
}

.price-display-2 .box-price:nth-child(1) {}

.price-display-2 .box-price:last-child {
  border-right: 1px solid #DEDEDE;
  background: #F7F7F7;
  box-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.price-display-2 .box-price p.price {
  margin-bottom: 0.313rem;
}

.price-display-2 .box-price p {
  font-weight: 600;
  font-size: 0.688rem;
  letter-spacing: -0.03em;
}



.services {}

.services .flex-4-column {}

.services .flex-4-column .flex-col {
  align-self: flex-start;
}

.services .flex-4-column .flex-col .items {
  text-align: center;
  border-right: 1px solid var(--light);
}

.services .flex-4-column .flex-col:last-child .items {
  border-right: none;
}

.services .flex-4-column .flex-col .items .icon {
  margin-bottom: 0.625rem;
  max-height: 4.375rem;
}

.services .flex-4-column .flex-col .items p {
  font-weight: bold;
}

.services hr {
  border-bottom: 1px solid var(--light);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services .flex-4-column .flex-col .items {
    border-right: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services .flex-4-column {
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .services .flex-4-column .flex-col {
    align-self: stretch;
    flex-basis: 50%;
  }

  .services .flex-4-column .flex-col .items {
    padding: 1.25rem 0.938rem;
    height: 100%;
    border-bottom: 1px solid var(--light);
  }

  .services .flex-4-column .flex-col:nth-child(2) .items {
    border-right: none;
  }

  .services .flex-4-column .flex-col:nth-last-child(2) .items {
    border-bottom: none;
  }

  .services .flex-4-column .flex-col:last-child .items {
    border-bottom: none;
  }

  .services .flex-4-column .flex-col .items .icon {
    max-height: 3.438rem;
  }
}

@media (max-width: 767px) {
  .services .flex-4-column {
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .services .flex-4-column .flex-col {
    align-self: stretch;
    flex-basis: 50%;
  }

  .services .flex-4-column .flex-col .items {
    padding: 1.25rem 0.938rem;
    height: 100%;
    border-bottom: 1px solid var(--light);
  }

  .services .flex-4-column .flex-col:nth-child(2) .items {
    border-right: none;
  }

  .services .flex-4-column .flex-col:nth-last-child(2) .items {
    border-bottom: none;
  }

  .services .flex-4-column .flex-col:last-child .items {
    border-bottom: none;
  }

  .services .flex-4-column .flex-col .items .icon {
    max-height: 3.438rem;
  }
}



.recomended-product {
  position: relative;
  overflow: hidden;
}

.recomended-product .box-section-title {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recomended-product .box-section-title .wrap-nav-slider {
  display: inline-flex;
  cursor: pointer;
  font-size: 1.375rem;
  line-height: 1;
  color: #C4C4C4;
}

.recomended-product .box-section-title .wrap-nav-slider:hover {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.recomended-product .box-section-title .wrap-nav-slider .recomended-slider-prev {
  margin-right: 0.938rem;
}

.recomended-product .box-section-title .wrap-nav-slider .recomended-slider-prev:hover {
  color: var(--accent);
}

.recomended-product .box-section-title .wrap-nav-slider .recomended-slider-next:hover {
  color: var(--accent);
}



.product-slider-container {
  position: relative;
  height: 100%;
}

.product-slider-container .product-slider {
  overflow: auto;
}

.product-slider-container .product-slider .owl-item {}

.product-slider-container .owl-carousel .owl-stage-outer {
  overflow: visible;
  margin: 1.438rem 0.125rem;
}

/*.product-slider-container .owl-carousel .owl-stage-outer:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0.77) 0%, rgba(255, 255, 255, 0) 53.82%);
    }*/
.product-slider-container .no-js .owl-carousel,
.product-slider-container .owl-carousel.owl-loaded {
  overflow: hidden;
  position: relative;
  right: -8%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .product-slider-container .no-js .owl-carousel,
  .product-slider-container .owl-carousel.owl-loaded {
    right: -5%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-slider-container .owl-carousel .owl-stage-outer {
    overflow: visible;
    margin: 1.438rem 0rem 1.438rem -2.438rem;
  }

  .product-slider-container .no-js .owl-carousel,
  .product-slider-container .owl-carousel.owl-loaded {
    right: 0%;
  }
}

@media (max-width: 767px) {
  .product-slider-container .owl-carousel .owl-stage-outer {
    overflow: visible;
    margin: 1.438rem 0rem 1.438rem -2.438rem;
  }

  .product-slider-container .no-js .owl-carousel,
  .product-slider-container .owl-carousel.owl-loaded {
    right: 0%;
  }
}



.spesial-offer {}

.spesial-offer .spesial-offer-slider {
  height: 100%;
}

.spesial-offer .spesial-offer-slider .items {
  margin: 3.75rem -2.5rem;
  opacity: .8;
  -webkit-transform: scale3d(0.85, 0.85, 1);
  transform: scale3d(0.85, 0.85, 1);
  border-radius: 1rem;
  box-shadow: 0rem 0.25rem 1.875rem rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
}

.spesial-offer .spesial-offer-slider .owl-stage-outer {
  margin: 1.875rem 0.063rem;
}

.spesial-offer .spesial-offer-slider .owl-item.active.center {
  z-index: 1;
}

.spesial-offer .spesial-offer-slider .owl-item.active.center .items {
  opacity: 1;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}

.spesial-offer .spesial-offer-slider .owl-item.active.center .items:before {
  background: none;
}

.spesial-offer .spesial-offer-slider .items:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.66) 10%, rgba(255, 255, 255, 0.44) 50%, rgba(255, 255, 255, 0.66) 99%);
}

.spesial-offer .spesial-offer-slider .items img {
  border-radius: 1rem;
}

.spesial-offer .spesial-offer-slider-container {
  position: relative;
  overflow: hidden;
}

.spesial-offer .spesial-offer-slider-container .spesial-offer-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.spesial-offer .spesial-offer-slider-container .spesial-offer-slider-dots .owl-dot {
  display: inline-block;
  width: 0.813rem;
  height: 0.813rem;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  margin-right: 0.313rem;
  box-shadow: 0rem 0.063rem 0.25rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.spesial-offer .spesial-offer-slider-container .spesial-offer-slider-dots .owl-dot:last-child {
  margin-right: 0rem;
}

.spesial-offer .spesial-offer-slider-container .spesial-offer-slider-dots .owl-dot.active {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .spesial-offer .spesial-offer-slider .items {
    margin: 1.25rem 0rem 2.063rem 0rem;
    box-shadow: 0rem 0.188rem 1.25rem rgba(0, 0, 0, 0.4);
  }

  .spesial-offer .spesial-offer-slider .owl-item.active.center .items {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}



.serve-section {
  background: #F7F7F7;
}

.serve-section .promotion-slider-container {
  position: relative;
  height: 100%;
}

.serve-section .promotion-slider-container .promotion-slider {}

.serve-section .promotion-slider-container .wrap-nav-slider {
  position: absolute;
  bottom: -2.5rem;
  display: flex;
  align-items: center;
  z-index: 2;
}

.serve-section .promotion-slider-container .wrap-nav-slider .nav-slider {
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
  font-size: 1.375rem;
  line-height: 1;
  color: var(--border-light);
  opacity: 0.6;
}

.serve-section .promotion-slider-container .wrap-nav-slider .nav-slider:hover {
  opacity: 1;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.serve-section .promotion-slider-container .wrap-nav-slider .intro-slider-prev {
  text-align: left;
}

.serve-section .promotion-slider-container .wrap-nav-slider .intro-slider-next {
  text-align: right;
}

.serve-section .promotion-slider-container .wrap-nav-slider span {
  font-weight: 600;
  line-height: 1.4;
  color: var(--border-light);
}

.serve-section .flex-col {
  align-self: stretch;
  padding: 0 0.5rem;
  padding-bottom: 1.125rem;
}

.serve-section .flex-col .card {
  height: 100%;
  box-shadow: 0rem 1.625rem 2.5rem rgba(38, 58, 126, 0.14);
  border-radius: 1rem;
}

.serve-section .flex-col .card:hover {
  background: var(--yellow);
}

.serve-section .flex-col .card:hover .icon,
.serve-section .flex-col .card:hover .icon.yellow {
  background: var(--dark);
}

.serve-section .flex-col .card:hover .icon.yellow svg {
  fill: var(--white);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.serve-section .flex-col .card .card-body {
  padding: 2.188rem 1.875rem;
}

.serve-section .flex-col .card .icon {
  width: 2.813rem;
  height: 2.813rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--accent);
  margin-bottom: 15px;
}

.serve-section .flex-col .card .icon.yellow {
  background: var(--yellow);
}

.serve-section .flex-col .card .icon.icon-lg {
  width: 3.438rem;
  height: 3.438rem;
}

.serve-section .flex-col .card .icon img {
  max-height: 1.875rem;
}

.serve-section .flex-col .card .icon svg {
  max-width: 2.688rem;
  max-height: 1.875rem;
  fill: var(--dark);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.serve-section .flex-col .card h4 {
  font-weight: bold;
  margin-bottom: 0.625rem;
}

.serve-section .flex-col .card p {
  margin-bottom: 0rem;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .serve-section {
    padding-bottom: 5rem;
  }

  .serve-section .promotion-slider-container .promotion-slider {
    margin-top: 3.75rem;
  }

  .serve-section .promotion-slider-container .wrap-nav-slider {
    bottom: 0rem;
  }

  .serve-section .flex-col {
    flex-basis: 50%;
  }

  .serve-section .flex-col .card {
    text-align: center;
  }

  .serve-section .flex-col .card .icon {
    margin: auto;
    margin-bottom: 0.938rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .serve-section {
    padding-bottom: 5rem;
  }

  .serve-section .promotion-slider-container .promotion-slider {
    margin-top: 3.75rem;
  }

  .serve-section .promotion-slider-container .wrap-nav-slider {
    bottom: 0rem;
  }

  .serve-section .flex-col {
    flex-basis: 50%;
  }

  .serve-section .flex-col .card {
    text-align: center;
  }

  .serve-section .flex-col .card .icon {
    margin: auto;
    margin-bottom: 0.938rem;
  }
}

@media only screen and (max-width: 767px) {
  .serve-section {
    padding-bottom: 5rem;
  }

  .serve-section .promotion-slider-container .promotion-slider {
    margin-top: 3.75rem;
  }

  .serve-section .promotion-slider-container .wrap-nav-slider {
    bottom: 0rem;
  }

  .serve-section .flex-col .card {
    text-align: center;
  }

  .serve-section .flex-col .card .icon {
    margin: auto;
    margin-bottom: 0.938rem;
  }
}



.highlight-blog {}

.highlight-blog .card {
  margin-bottom: 1.875rem;
}

.highlight-blog .card .card-header {
  position: relative;
  padding: 0;
  border: none;
  height: 15.313rem;
  overflow: hidden;
  text-align: center;
  border-radius: 1.563rem;
}

.highlight-blog .card .card-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 36, 36, 0) 0%, #242424 100%);
}

.highlight-blog .card .card-header img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.highlight-blog .card .card-body {
  padding: 1.25rem 0;
}

.highlight-blog .card .card-body h2 {
  font-weight: bold;
  overflow: hidden;
  height: 46px;
}

.highlight-blog .card .card-body p {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .highlight-blog .card {
    margin-bottom: 0;
  }
}



.trusted-values {}

.trusted-values .box-content {}

.trusted-values .box-content .items {
  align-self: flex-start;
  text-align: center;
  padding: 0 0.938rem;
}

.trusted-values .box-content .items img {
  margin-bottom: 0.938rem;
  max-height: 3rem;
}

.trusted-values .box-content .items p {
  margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .trusted-values .box-section-title {
    text-align: center;
  }

  .trusted-values .box-content {
    margin-top: 1.25rem;
  }

  .trusted-values .box-content .items {
    flex-basis: 50%;
    align-self: stretch;
    margin-bottom: 1.875rem;
  }
}

@media only screen and (max-width: 767px) {
  .trusted-values .box-section-title {
    text-align: center;
  }

  .trusted-values .box-content {
    margin-top: 1.25rem;
  }

  .trusted-values .box-content .items {
    flex-basis: 50%;
    align-self: stretch;
    margin-bottom: 1.875rem;
  }
}



.near-us {
  position: relative;
  overflow: hidden;
}

.near-us .card-video {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .near-us .card-video {
    max-height: 28.125rem;
    margin-bottom: 1.25rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .near-us .card-video {
    width: 80%;
    margin: auto;
    max-height: 28.125rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .near-us .box-section-title {
    text-align: center;
    margin-top: 1.25rem;
  }

  .near-us .card-video {
    max-height: 15.625rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .near-us .box-section-title {
    text-align: center;
    margin-top: 1.25rem;
  }

  .near-us .card-video {
    max-height: 15.625rem;
    margin-bottom: 2.5rem;
  }
}



.section-bottom-question {}

.section-bottom-question .block-text {
  padding-left: 9%;
  padding-right: 9%;
  background: var(--yellow);
}

.section-bottom-question .block-thumbnails {}

.section-bottom-question .block-thumbnails img {
  object-fit: cover;
  position: 50% 50%;
}

.find-call {}

.find-call a {
  font-weight: 600;
  padding: 0.938rem;
  margin-right: 1.25rem;
}

.find-call a:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .find-call {
    margin-top: 1.25rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-bottom-question .block-text .box-section-title {
    text-align: center;
  }

  .find-call {
    margin-top: 1.25rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-bottom-question .block-text {
    padding-left: 0.938rem;
    padding-right: 0.938rem;
  }

  .section-bottom-question .block-text .box-section-title {
    text-align: center;
  }

  .section-bottom-question .block-thumbnails img {
    display: none;
  }

  .find-call {
    margin-top: 1.25rem;
  }

  .find-call a {
    margin-right: 0rem;
  }

  .btn.btn-padd {
    padding: 0.75rem 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .section-bottom-question .block-text {
    padding-left: 0.938rem;
    padding-right: 0.938rem;
  }

  .section-bottom-question .block-text .box-section-title {
    text-align: center;
  }

  .section-bottom-question .block-thumbnails img {
    display: none;
  }

  .find-call {
    margin-top: 1.875rem;
  }

  .find-call a {
    margin-right: 0rem;
  }

  .btn.btn-padd {
    padding: 0.938rem 1.25rem;
    width: 80%;
    margin-bottom: 1.25rem;
  }
}



.top-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-heading .title h2 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.top-heading .filter-product .single-filter-product {}

.top-heading .filter-product .single-filter-product h5 {
  font-size: 0.875rem;
  margin-bottom: 0;
  margin-right: 0.313rem;
}

.top-heading .filter-product .single-filter-product .select-custome {
  width: 8.125rem;
}

.top-heading.choose-type {
  justify-content: center;
}

.top-heading.choose-type .filter-product {
  position: absolute;
  right: 0;
}

.top-heading.choose-type .filter-product .select-custome {
  width: 10rem;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .top-heading {
    display: block;
    margin-bottom: 1.25rem;
  }

  .top-heading .title h2 {
    font-size: 0.875rem;
  }

  .top-heading .filter-product .single-filter-product {
    justify-content: flex-end;
  }

  .top-heading.choose-type .filter-product {
    position: relative;
    left: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .top-heading {
    display: block;
    margin-bottom: 1.25rem;
  }

  .top-heading .title h2 {
    font-size: 0.875rem;
  }

  .top-heading .filter-product .single-filter-product {
    justify-content: flex-end;
  }

  .top-heading.choose-type .filter-product {
    position: relative;
    left: 0;
    right: 0;
  }

  .top-heading.choose-type .filter-product .single-filter-product {
    justify-content: center;
  }
}



.search-result-journey {}

.search-result-journey .flex-3-column {
  justify-content: flex-start;
}

.search-result-journey .flex-3-column .flex-col {
  padding: 0.938rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-result-journey .flex-3-column .flex-col {
    padding: 0.938rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .search-result-journey .flex-3-column .flex-col {
    padding: 0.938rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .search-result-journey .flex-3-column .flex-col {
    padding: 0;
    margin-bottom: 1.25rem;
  }
}



.journey-section {
  padding-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .journey-section {
    margin-top: -3%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .journey-section {
    margin-top: -3%;
    padding-top: 0;
    padding-bottom: 0;
  }
}



.trusting-sales-section {}

.trusting-sales-section .card-style .card-body {
  padding: 40px 30px;
}

.trusting-sales-section .flex-3-column .flex-col img {
  margin-bottom: 0.938rem;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .trusting-sales-section {
    margin-top: -6.3%;
    padding-top: 0;
    padding-bottom: 1.25rem;
  }

  .trusting-sales-section .card-style .card-body .block-text {
    width: 85%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .trusting-sales-section {
    margin-top: -6.3%;
    padding-top: 0;
    padding-bottom: 1.25rem;
  }

  .trusting-sales-section .card-style .card-body .block-text {
    width: 85%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .trusting-sales-section .flex-3-column {
    align-items: center;
  }

  .trusting-sales-section .flex-3-column .flex-col {
    flex-basis: 50%;
    margin-top: 1.25rem;
  }

  .trusting-sales-section .flex-3-column .flex-col .logo {
    max-height: 1.875rem;
    margin-bottom: 0.625rem;
  }

  .trusting-sales-section .flex-3-column .flex-col .stars {
    max-height: 0.938rem;
  }
}

@media (max-width: 767px) {
  .trusting-sales-section .flex-3-column {
    align-items: center;
  }

  .trusting-sales-section .flex-3-column .flex-col {
    flex-basis: 50%;
    margin-top: 1.25rem;
  }

  .trusting-sales-section .flex-3-column .flex-col .logo {
    max-height: 1.875rem;
    margin-bottom: 0.625rem;
  }

  .trusting-sales-section .flex-3-column .flex-col .stars {
    max-height: 0.938rem;
  }
}



.find-dealer {}

.find-dealer .box-find-dealer {
  border: 1px solid #9B9B9B;
}

.find-dealer .dealer-address-container {
  height: 26.25rem;
  overflow-y: scroll;
  padding: 1.25rem;
}

.find-dealer .dealer-address-container .wrap-dealer-address {
  margin-bottom: 2.5rem;
}

.find-dealer .dealer-address-container .wrap-dealer-address h4 {
  margin-bottom: 0.625rem;
}

.find-dealer .dealer-address-container .wrap-dealer-address ul.list-info {
  display: flex;
  align-items: flex-start;
}

.find-dealer .dealer-address-container .wrap-dealer-address ul.list-info li {
  display: flex;
  align-self: stretch;
  margin-bottom: 0.625rem;
}

.find-dealer .dealer-address-container .wrap-dealer-address ul.list-info li:first-child {
  flex-basis: 100%;
}

.find-dealer .dealer-address-container .wrap-dealer-address ul.list-info li i {
  margin-right: 0.5rem;
  line-height: 1.3;
}

.find-dealer .dealer-address-container .wrap-dealer-address ul.list-info li span {
  font-weight: 500;
  font-size: 0.75rem;
}

.dealer-maps-container {
  padding: 0.625rem;
}

.dealer-maps-container iframe {
  width: 100%;
  height: 100%;
  min-height: 23.75rem;
}



.pricelist-section {}

.pricelist-section ol.pricelist {
  list-style: none;
  counter-reset: item;
  padding-left: 1.25rem;
}

.pricelist-section ol.pricelist li {
  counter-increment: item;
  margin-bottom: 3.125rem;
}

.pricelist-section ol.pricelist li:before {
  position: absolute;
  display: inline-block;
  content: counter(item);
  margin-left: -1.25rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.pricelist-section ol.pricelist .wrap-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 11.25rem;
}

.pricelist-section ol.pricelist .wrap-image img {
  object-fit: contain;
  height: 100%;
}

.pricelist-section ol.pricelist h4 {
  font-weight: 600;
}

.pricelist-section ol.pricelist table {
  width: 100%;
}

.pricelist-section ol.pricelist table tr th {
  width: 8.125rem;
}

.pricelist-section ol.pricelist table tr td {
  font-weight: normal;
  font-size: 0.813rem;
  line-height: 1.6;
  color: var(--dark);
}

.pricelist-section .block-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.pricelist-section .block-right .card.card-icon {
  margin-top: 3.125rem;
}

.pricelist-section .block-right .card.card-icon .img-icon {
  margin-top: -3.75rem;
  width: 100px;
}

.pricelist-section .block-right .card {
  background: #F7F7F7;
  margin-bottom: 1.25rem;
}

.pricelist-section .cover-video { width: 100%; height: 100%; object-fit: contain; object-position: 50% 50% ;}


.formulir-section {}

.formulir-section .card {
  border-radius: 0;
  border: 1px solid #9B9B9B;
}

.formulir-section .card .card-header {
  background: #F7F7F7;
  border-bottom: 0;
  padding: 0.938rem 3.125rem;
}

.formulir-section .card .card-header span {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.05em;
  color: #6E7684;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media (max-width: 767px) {
  .formulir-section .card .card-header {
    text-align: center;
  }
}

/* ------------------------------------ end block section ------------------------------------ */



/* ------------------------------------ news ------------------------------------ */
.flex-news {
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-news .flex-col {
  align-self: flex-start;
}

.flex-news.flex-1lg .flex-col:nth-child(3) {
  position: absolute;
  top: 20rem;
  right: 0;
  width: 33.33%;
}

.flex-news.flex-1lg .flex-col:first-child {
  flex-basis: 66.67%;
}

.flex-news.flex-1lg .flex-col:first-child .card-news {
  height: 31.25rem;
}

.flex-news.flex-1lg .flex-col:first-child .card-news .card-body .title {
  font-size: 1.375rem;
  text-decoration: underline;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .flex-news.flex-1lg .flex-col:nth-child(3) {
    position: relative;
    top: auto;
    width: 100%;
  }

  .flex-news.flex-1lg .flex-col:first-child {
    flex-basis: 100%;
  }

  .flex-news.flex-1lg .flex-col:first-child .card-news {
    height: 100%;
  }

  .flex-news.flex-1lg .flex-col:first-child .card-news .card-body .title {
    font-size: 0.938rem;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .flex-news.flex-1lg .flex-col:nth-child(3) {
    position: relative;
    top: auto;
    width: 100%;
  }

  .flex-news.flex-1lg .flex-col:first-child {
    flex-basis: 100%;
  }

  .flex-news.flex-1lg .flex-col:first-child .card-news {
    height: 100%;
  }

  .flex-news.flex-1lg .flex-col:first-child .card-news .card-body .title {
    font-size: 0.938rem;
    text-decoration: none;
  }
}


.card-news {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 1.25rem;
  height: 15rem;
}

.card-news .img-news {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.card-news .img-news:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-news .card-body {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(36, 36, 36, 0) 0%, #242424 100%);
}

.card-news .card-body .title {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-news .card-body .title {
    font-size: 0.938rem;
  }
}

@media (max-width: 767px) {
  .card-news .card-body .title {
    font-size: 0.938rem;
  }
}


.list-news {}

.list-news .flex-col {
  align-self: stretch;
  margin-bottom: 1.25rem;
}

.list-news .flex-col .card {
  height: 100%;
  box-shadow: 0rem 0.25rem 0.5rem rgba(0, 0, 0, 0.18);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.list-news .flex-col .card h2 {
  line-height: 1.3;
  height: 5.313rem;
  overflow: hidden;
}

.list-news .flex-col .card:hover {
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .flex-news {
    align-items: stretch;
  }

  .flex-news .flex-col {
    flex-basis: 33.33%;
    align-self: stretch;
  }

  .flex-news .flex-col .card-news {
    width: 100%;
    height: 18.75rem;
  }

  .flex-news .flex-col:first-child {
    flex-basis: 33.33%;
  }

  .flex-news .flex-col:first-child .card-news {
    width: 100%;
    height: 18.75rem;
  }

  .flex-news .flex-col:first-child .card-news .card-body .title {
    font-size: 1.125rem;
    text-decoration: none;
  }

  .flex-news .flex-col:nth-child(3) {
    position: relative;
    top: auto;
    right: 0;
    width: 100%;
  }

  .list-news .flex-col {
    flex-basis: 33.33%;
  }

  .list-news .flex-col .card {
    min-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .flex-news {
    align-items: stretch;
  }

  .flex-news .flex-col {
    flex-basis: 100%;
  }

  .flex-news .flex-col .card-news {
    width: 100%;
    height: 17.5rem;
  }

  .flex-news .flex-col:first-child {
    flex-basis: 100%;
  }

  .flex-news .flex-col:first-child .card-news {
    width: 100%;
    height: 17.5rem;
  }

  .flex-news .flex-col:first-child .card-news .card-body .title {
    font-size: 1.125rem;
    text-decoration: none;
  }

  .flex-news .flex-col:nth-child(3) {
    position: relative;
    top: auto;
    right: 0;
    width: 100%;
  }

  .list-news {
    width: 100%;
    flex-wrap: inherit;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .list-news::-webkit-scrollbar {
    display: none;
  }

  .list-news .flex-col .card {
    min-width: 18.75rem;
  }
}

@media (max-width: 767px) {
  .flex-news {
    align-items: stretch;
  }

  .flex-news .flex-col {
    flex-basis: 100%;
  }

  .flex-news .flex-col .card-news {
    width: 100%;
    height: 17.5rem;
  }

  .flex-news .flex-col:first-child {
    flex-basis: 100%;
  }

  .flex-news .flex-col:first-child .card-news {
    width: 100%;
    height: 17.5rem;
  }

  .flex-news .flex-col:first-child .card-news .card-body .title {
    font-size: 1.125rem;
    text-decoration: none;
  }

  .flex-news .flex-col:nth-child(3) {
    position: relative;
    top: auto;
    right: 0;
    width: 100%;
  }

  .list-news {
    width: 100%;
    flex-wrap: inherit;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .list-news::-webkit-scrollbar {
    display: none;
  }

  .list-news .flex-col .card {
    min-width: 18.75rem;
  }
}



.news {}

.news .wrap-info-news {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.news .wrap-info-news p {
  font-weight: 500;
  font-size: 0.813rem;
  margin-bottom: 0;
}

.news .wrap-info-news p span {
  font-size: 1rem;
  line-height: 1.2;
}

.news .text-3 {
  font-weight: normal;
  font-size: 0.813rem;
  line-height: 1.5;
  color: var(--dark);
}

.news .text-3 span {
  font-weight: bold;
}

.news .content {
  /*position: relative; overflow: hidden;*/
}

.news .news-sidebar {}

.news .news-sidebar .card {
  border-radius: 0;
  background: none;
  border: 1px solid var(--light);
}

.news .news-sidebar .card .media {
  display: block;
  border-bottom: 1px solid var(--light);
  padding-bottom: 0.938rem;
  margin-bottom: 0.938rem;
}

.news .news-sidebar .card .media:last-child {
  border-bottom: none;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
}

.news .news-sidebar .card .media .text-3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.news .share-sosial-media {
  display: flex;
  margin-top: 2.5rem;
}

.news .share-sosial-media li {
  margin-right: 1.25rem;
}

.news .share-sosial-media li:last-child {
  margin-right: 0;
}

.news .share-sosial-media li a.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.688rem;
  height: 2.688rem;
  cursor: pointer;
  border: 1px solid var(--light);
  text-align: center;
  color: var(--dark);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.news .share-sosial-media li a.icon i {
  font-size: 1.5rem;
}

.news .share-sosial-media li a.icon:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .news .share-sosial-media {
    justify-content: center;
  }
}


.stickyfill-content:before,
.stickyfill-content:after {
  content: " ";
  display: table;
}

.stickyfill-content:after {
  clear: both;
}

.stickyfill-content {
  *zoom: 1;
}

.stickyfill-content .news-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

/* ------------------------------------ end news ------------------------------------ */



/* ------------------------------------ testimoni ------------------------------------ */
.testimoni {
  position: relative;
  overflow: hidden;
}

.testimoni .testimoni-content {
  position: relative;
  width: 75%;
  margin: auto;
  margin-top: 3.125rem;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: stretch;
}

.testimoni .testimoni-content .testimoni-text {
  padding: 1.875rem;
  padding-top: 4.375rem;
}

.testimoni .testimoni-content .testimoni-text .section-description-sm {
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.4);
}

.testimoni .testimoni-content .testimoni-img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 17.5rem;
}

.testimoni .testimoni-content .quotation-mark {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 5.625rem;
  height: 4.688rem;
  background: var(--yellow);
  padding: 1.25rem;
}

.testimoni .testimoni-slider-container {
  position: relative;
}

.testimoni .testimoni-slider-container .owl-carousel .owl-stage-outer {
  overflow: visible;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.testimoni .testimoni-slider-container .testimoni-slider-prev {
  left: 1.25em;
}

.testimoni .testimoni-slider-container .testimoni-slider-next {
  right: 1.25em;
}

.testimoni .testimoni-slider-container .testimoni-slider-dots {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
  padding-bottom: 0.313rem;
}

.testimoni .testimoni-slider-container .testimoni-slider-dots .owl-dot {
  display: inline-block;
  width: 1.25rem;
  height: 0.313rem;
  background: rgba(35, 35, 39, 0.3);
  border-radius: 0.625rem;
  margin-right: 0.625rem;
  box-shadow: 0rem 0.063rem 0.25rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.testimoni .testimoni-slider-container .testimoni-slider-dots .owl-dot:last-child {
  margin-right: 0rem;
}

.testimoni .testimoni-slider-container .testimoni-slider-dots .owl-dot.active {
  width: 2.5rem;
  background: var(--accent);
  box-shadow: none;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.testimoni .testimoni-slider-container .nav-slider {
  position: absolute;
  cursor: pointer;
  top: 50%;
  opacity: 0.09;
  z-index: 15;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.testimoni .testimoni-slider-container .nav-slider i {
  font-size: 2.5rem;
  color: var(--dark);
}

.testimoni .testimoni-slider-container .nav-slider:hover {
  opacity: 0.7;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimoni .testimoni-content {
    position: relative;
    width: 85%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimoni {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .testimoni .testimoni-content {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    margin: auto;
    margin-top: 0;
    display: block;
  }

  .testimoni .testimoni-content .testimoni-text {
    padding: 0;
    text-align: center;
  }

  .testimoni .testimoni-content .testimoni-img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    margin: auto;
  }

  .testimoni .testimoni-content .quotation-mark {
    display: none;
  }

  .testimoni .testimoni-slider-container .nav-slider {
    display: none;
  }

  .testimoni .testimoni-slider-container .owl-carousel .owl-stage-outer {
    overflow: visible;
    overflow: hidden;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .testimoni {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .testimoni .testimoni-content {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    margin: auto;
    margin-top: 0;
    display: block;
  }

  .testimoni .testimoni-content .testimoni-text {
    padding: 0;
    text-align: center;
  }

  .testimoni .testimoni-content .testimoni-img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    margin: auto;
  }

  .testimoni .testimoni-content .quotation-mark {
    display: none;
  }

  .testimoni .testimoni-slider-container .nav-slider {
    display: none;
  }

  .testimoni .testimoni-slider-container .owl-carousel .owl-stage-outer {
    overflow: visible;
    overflow: hidden;
    margin-bottom: 1.25rem;
  }
}

/* ------------------------------------ end testimoni ------------------------------------ */



/* ------------------------------------ details product ------------------------------------ */
.intro-detail-product {
  position: relative;
  height: 100vh;
}

.intro-detail-product .img-product {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.intro-detail-product:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(31, 43, 62, 0.68) 3%, rgba(31, 43, 62, 0) 22.22%);
}

.intro-detail-product .excellent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  z-index: 1;
}

.intro-detail-product .excellent .flex-col {
  display: flex;
  justify-content: center;
  border-right: 1px solid var(--white);
}

.intro-detail-product .excellent .flex-col:last-child {
  border-right: none;
}

.intro-detail-product .excellent .flex-col .items {
  display: flex;
  align-items: center;
}

.intro-detail-product .excellent .flex-col .items .icon {
  max-height: 80px;
  margin-right: 1.25rem;
}

.intro-detail-product .excellent .flex-col .items h4 {
  font-weight: bold;
  color: var(--white);
  letter-spacing: -0.05em;
  margin-bottom: 0.313rem;
}

.intro-detail-product .excellent .flex-col .items p {
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .intro-detail-product .flex-3-column .flex-col {
    flex-basis: 33.33%;
  }

  .intro-detail-product .excellent .flex-col .items {
    display: block;
    text-align: center;
    padding-left: 0.313rem;
    padding-right: 0.313rem;
  }

  .intro-detail-product .excellent .flex-col .items .icon {
    max-height: 40px;
    margin-right: 0rem;
  }

  .intro-detail-product .excellent .flex-col .items h4 {
    font-size: 0.875rem;
  }

  .intro-detail-product .excellent .flex-col .items p {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .intro-detail-product:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(31, 43, 62, 0.68) 10%, rgba(31, 43, 62, 0) 22.22%);
  }

  .intro-detail-product .flex-3-column .flex-col {
    flex-basis: 33.33%;
  }

  .intro-detail-product .excellent .flex-col .items {
    display: block;
    text-align: center;
    padding-left: 0.313rem;
    padding-right: 0.313rem;
  }

  .intro-detail-product .excellent .flex-col .items .icon {
    max-height: 40px;
    margin-right: 0rem;
  }

  .intro-detail-product .excellent .flex-col .items h4 {
    font-size: 0.875rem;
  }

  .intro-detail-product .excellent .flex-col .items p {
    font-size: 0.75rem;
  }
}



.top-heading-product {
  position: relative;
}

.top-heading-product .heading-product ul {
  list-style: none;
  padding-left: 0;
  display: flex;
}

.top-heading-product .heading-product ul li {
  border-right: 1px solid #DEDEDE;
}

.top-heading-product .heading-product .price-display-2 .box-price {
  background: var(--white);
}

.top-heading-product .heading-product .price-display-2 .box-price:hover {
  background: #F7F7F7;
}

.top-heading-product .heading-product .price-display-2 .box-price:last-child {
  box-shadow: none;
}

.top-heading-product .heading-product .price-display-2 .box-price h3 {
  font-weight: bold;
  margin-bottom: 0px;
}

.top-heading-product .heading-product .price-display-2 .box-price p {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.03em;
  color: #9B9B9B;
}

.top-heading-product .btn {
  font-weight: 600;
}

.top-heading-product .btn .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 5px;
  text-align: center;
  font-size: 16px;
  margin-left: 5px;
}

.top-heading-product .btn.btn-accent .icon {
  background: var(--yellow);
  color: var(--dark);
}

.top-heading-product .btn.btn-accent:hover .icon {
  background: var(--accent);
  color: var(--white);
}

.top-heading-product .btn.btn-yellow .icon {
  background: var(--dark);
  color: var(--white);
}

.top-heading-product .btn.btn-yellow:hover .icon {
  background: var(--yellow);
  color: var(--dark);
}

.wrap-simulation {
  padding: 30px;
  background: #F7F7F7;
}

.wrap-simulation .simulation-dismiss {
  position: absolute;
  top: 0px;
  right: 20px;
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
}

.wrap-simulation .form-control,
.wrap-simulation .select-custome {
  margin-bottom: 0rem;
}

.wrap-btn-mn {
  display: block;
}

.wrap-btn-mb {
  display: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

  .wrap-simulation .form-control,
  .wrap-simulation .select-custome {
    margin-bottom: 0.625rem;
  }

  .wrap-btn-mn {
    display: none;
  }

  .wrap-btn-mb {
    display: block;
    padding-top: 10px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {

  .wrap-simulation .form-control,
  .wrap-simulation .select-custome {
    margin-bottom: 0.625rem;
  }

  .wrap-btn-mn {
    display: none;
  }

  .wrap-btn-mb {
    display: block;
    padding-top: 10px;
    display: flex;
    justify-content: center;
  }
}



.specification-product {}

.specification-product ul {
  list-style: none;
  padding-left: 0;
}

.specification-product ul li {
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-light);
}

.specification-product ul li:nth-child(odd) {
  border-right: 1px solid var(--border-light);
}

.specification-product ul li label {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.specification-product ul li .value {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.specification-product .table-specification {}

.specification-product .table-specification tr {}

.specification-product .table-specification tr td {
  font-weight: normal;
  line-height: 1.3;
}

.specification-product .table-specification tr td:first-child {
  width: 35%;
  font-weight: bold;
  border-right: 1px solid var(--border-light);
}

.specification-product .table-specification tr td:nth-child(2) {
  text-align: center;
}

.specification-product .table-specification tr td:nth-child(3) {
  text-align: center;
}

.specification-product .table-specification tr td .ion-checkmark {
  color: green;
}

.specification-product .table-specification tr td .ion-close {
  color: red;
}

.specification-product .table-specification tr.header {
  background: var(--white);
}

.specification-product .table-specification tr.header td {
  border: none;
}

.specification-product .table-specification tr.header td:first-child {
  border-right: none;
}

.specification-product .table-specification tr.header td .img-wrap {
  position: relative;
  overflow: hidden;
  height: 9.375rem;
  margin-bottom: 0.313rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specification-product .table-specification tr.header td .img-wrap img {
  object-fit: contain;
}

.specification-product .table-specification tr.header td h3 {
  font-weight: bold;
  margin-bottom: 0;
}

.specification-product .table-specification tr.header td p {
  margin-bottom: 0;
}

.specification-product.compare-lg tr>td.hemm {
  width: 50%;
  text-align: center;
}

.specification-product.compare-lg tr>td.hemm :first-child {
  width: 50%;
}

.specification-product.compare-lg .table-specification tr td label {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: 0.313rem;
}

.specification-product.compare-lg .table-specification tr td .value {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.wrap-specification-collapse {}

.wrap-specification-collapse .card {
  border: none;
  border-radius: 0;
  margin-bottom: 10px;
}

.wrap-specification-collapse .card .card-header {
  padding: 0.95rem 1.25rem;
  background: var(--dark);
  margin-bottom: 0;
  border: none;
}

.wrap-specification-collapse .card .card-header h6 {
  font-weight: bold;
  color: var(--white);
}

.wrap-specification-collapse .card .card-header:after {
  font-family: "Ionicons";
  content: "\f2f4";
  font-weight: 900;
  color: var(--white);
  float: right;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  line-height: 1;
  width: 20px;
}

.wrap-specification-collapse .card .card-header.collapsed {
  background: #F7F7F7;
}

.wrap-specification-collapse .card .card-header.collapsed h6 {
  color: #6E7684;
}

.wrap-specification-collapse .card .card-header.collapsed:after {
  content: "\f2c7";
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: initial;
}

.wrap-specification-collapse .card .card-body {
  border: 1px solid #F7F7F7;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .specification-product .table-specification tr td {
    padding-left: 0.313rem;
    padding-right: 0.313rem;
    font-size: 0.75rem;
  }

  .specification-product .table-specification tr.header td {
    padding-bottom: 0;
  }

  .specification-product .table-specification tr.header td .img-wrap {
    height: 5.313rem;
  }

  .wrap-specification-collapse .card .card-header {
    padding: 0.625rem 0.95rem;
  }
}

@media (max-width: 767px) {
  .specification-product .table-specification tr td {
    padding-left: 0.313rem;
    padding-right: 0.313rem;
    font-size: 0.75rem;
  }

  .specification-product .table-specification tr.header td {
    padding-bottom: 0;
  }

  .specification-product .table-specification tr.header td .img-wrap {
    height: 5.313rem;
  }

  .wrap-specification-collapse .card .card-header {
    padding: 0.625rem 0.95rem;
  }
}



.product-video-preview {
  position: relative;
  overflow: hidden;
}

.product-video-preview .card-video {
  width: 850px;
  height: 430px;
}

.product-video-preview .card-video:before {
  background: none;
}

.product-video-preview .card-video .img-cover-video { position: absolute; top: 0; left: 0; width: 100%; height: 100; object-fit: cover; object-position: 50% center;} 

.product-video-preview .card-video .play-button {
  background: var(--accent);
  border: 2px solid var(--accent);
  background-clip: content-box;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-video-preview .card-video {
    width: 100%;
    height: 230px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-video-preview .card-video {
    width: 100%;
    height: 230px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-video-preview {
    padding-top: 60px;
  }

  .product-video-preview .card-video {
    width: 100%;
    height: 230px;
  }
}

@media (max-width: 767px) {
  .product-video-preview {
    padding-top: 60px;
  }

  .product-video-preview .card-video {
    width: 100%;
    height: 230px;
  }
}



.preview-car {}

.preview-car .preview-color-car {
  position: relative;
  width: 100%;
}

.preview-car .preview-color-car .nav-tabs-custome {
  margin-top: 0.938rem;
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs {
  width: 100%;
  padding: 0px;
  border-bottom: 1px solid var(--border-light);
  display: inline-flex;
  flex-wrap: inherit;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li {
  display: block;
  flex-basis: 16.66%;
  -ms-flex: auto;
  width: 100%;
  border-right: 2px solid: red;
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a {
  position: relative;
  background: none;
  border: none;
  height: 100%;
  padding: 0 0.938rem 0.625rem 0.938rem;
  text-align: center;
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.168rem;
  border-top-left-radius: 0.313rem;
  border-top-right-radius: 0.313rem;
  background-color: var(--accent);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a.active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a img {
  max-width: 5.625rem;
  margin-bottom: 0.313rem;
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a .color-product {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 0.313rem;
  border: 1px solid var(--light)
}

.preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a p {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #6E7684;
  margin-bottom: 0;
}

.preview-car .preview-color-car .nav-tabs-custome .tab-content {
  padding-top: 2.5rem;
  min-height: 28.75rem;
}

.preview-car .preview-color-car .nav-tabs-custome .tab-content .tab-pane {
  text-align: center;
}

.preview-car .preview-color-car .nav-tabs-custome .tab-content .tab-pane img {
  max-width: 700px;
  margin: auto;
}

.preview-car .preview-features {
  margin-top: 2.5rem;
}

.preview-car .preview-features .card-features {
  position: relative;
  overflow: hidden;
}

.preview-car .preview-features .card-features img.img-cover {
  position: absolute;
  top: 0;
  left: 0;
}

.preview-car .preview-features .card-features img.img-cover::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 43, 62, 0.81);
}

.preview-car .preview-features .card-features .flex-3-column {
  margin-top: 2.5rem;
}

.preview-car .preview-features .card-features .card-body {
  position: relative;
  background: transparent;
  padding: 2.5rem;
}

.preview-car .preview-features .card-features .card-body .items {
  text-align: center;
}

.preview-car .preview-features .card-features .card-body .items .icon {
  object-fit: contain;
  height: 2.188rem;
  margin-bottom: 0.625rem;
}

.preview-car .preview-features .card-features .card-body .items p {
  margin-bottom: 0;
}

.preview-car .preview-features .card-features .card-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5E5E5E;
  padding: 1.25rem 2.5rem;
}

.preview-car .preview-features .card-features .card-footer img.icon-360 {
  max-height: 2.813rem;
}


.compare-car.light {
  background: #F7F7F7;
}

.compare-car .head-compare-car {
  background: var(--dark);
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.compare-car .box-compare {
  position: relative;
  border: 1px solid var(--light);
}

.compare-car .box-compare .box-compare-dismiss {
  position: absolute;
  top: -2.5rem;
  right: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
}

.compare-car .box-compare .flex-col {
  align-self: stretch;
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 1.25rem;
}

.compare-car .box-compare .flex-col:last-child {
  border-right: none;
}

.compare-car .box-compare .flex-col .box-container .form-group .label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 0.313rem;
}

.compare-car .box-compare .flex-col .box-container .img-product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18.75rem;
  margin-bottom: 1.25rem;
}

.compare-car .box-compare .flex-col .box-container .img-product-container .img-product {
  object-fit: contain;
}

.compare-car .box-compare .img-product-container .default-image {
  text-align: center;
}

.compare-car .box-compare .img-product-container .default-image img {
  max-height: 5rem;
  margin-bottom: 0.313rem;
}

.compare-car .box-compare .img-product-container .default-image p {
  color: var(--light-dark);
}

.compare-car .box-compare .box-bottom {
  padding: 1.25rem 1.875rem;
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .compare-car .box-compare .flex-col .box-container .select-custome {
    width: 60%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .compare-car .box-compare .flex-col .box-container .select-custome {
    width: 60%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a img {
    max-width: 2.5rem;
  }

  .preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a .color-product {
    width: 2.5rem;
    height: 2.5rem;
  }

  .preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a p {
    display: none;
  }

  .preview-car .preview-color-car .nav-tabs-custome .tab-content {
    min-height: 18.75rem;
  }

  .preview-car .preview-color-car .nav-tabs-custome .tab-content .tab-pane img {
    max-width: 100%;
  }

  .preview-car .preview-features .card-features {
    margin-bottom: 2.5rem;
  }

  .preview-car .preview-features .card-features .flex-3-column {
    align-items: flex-start;
  }

  .preview-car .preview-features .card-features .flex-3-column .items {
    align-self: stretch;
    flex-basis: 33.33%;
  }

  .preview-car .preview-features .card-features .card-body {
    padding: 1.5rem;
  }

  .preview-car .preview-features .card-features .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 1.25rem 1.25rem;
  }

  .preview-car .preview-features .card-features .card-footer .btn {
    width: auto;
    margin-bottom: 0rem;
  }

  .preview-car .preview-features .card-features .card-footer img.icon-360 {
    max-height: 1.563rem;
  }

  .compare-car .box-compare {
    border: none;
  }

  .compare-car .box-compare .flex-col {
    flex-basis: 50%;
    padding: 0 0.625rem;
  }

  .compare-car .box-compare .flex-col .box-container .img-product-container {
    width: 100%;
    height: 150px;
  }

  .compare-car .box-compare .flex-col .box-container .select-custome {
    width: 100%;
  }

  .compare-car .box-compare .flex-col .box-container .section-description-lg {
    font-size: 1rem;
  }

  .compare-car .box-compare .img-product-container .default-image img {
    max-height: 2.5rem;
  }
}

@media (max-width: 767px) {
  .preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a img {
    max-width: 2.5rem;
  }

  .preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a .color-product {
    width: 2.5rem;
    height: 2.5rem;
  }

  .preview-car .preview-color-car .nav-tabs-custome ul.nav-tabs li a p {
    display: none;
  }

  .preview-car .preview-color-car .nav-tabs-custome .tab-content {
    min-height: 18.75rem;
  }

  .preview-car .preview-color-car .nav-tabs-custome .tab-content .tab-pane img {
    max-width: 100%;
  }

  .preview-car .preview-features .card-features {
    margin-bottom: 2.5rem;
  }

  .preview-car .preview-features .card-features .flex-3-column {
    align-items: flex-start;
  }

  .preview-car .preview-features .card-features .flex-3-column .items {
    align-self: stretch;
    flex-basis: 33.33%;
  }

  .preview-car .preview-features .card-features .card-body {
    padding: 1.5rem;
  }

  .preview-car .preview-features .card-features .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 1.25rem 1.25rem;
  }

  .preview-car .preview-features .card-features .card-footer .btn {
    width: auto;
    margin-bottom: 0rem;
  }

  .preview-car .preview-features .card-features .card-footer img.icon-360 {
    max-height: 1.563rem;
  }

  .compare-car .box-compare {
    border: none;
  }

  .compare-car .box-compare .flex-col {
    flex-basis: 50%;
    padding: 0 0.625rem;
  }

  .compare-car .box-compare .flex-col .box-container .img-product-container {
    width: 100%;
    height: 150px;
    margin-top: 0.625rem;
  }

  .compare-car .box-compare .flex-col .box-container .img-product-container .img-product {
    width: 100%;
    height: auto;
  }

  .compare-car .box-compare .flex-col .box-container .select-custome {
    width: 100%;
  }

  .compare-car .box-compare .flex-col .box-container .section-description-lg {
    font-size: 16px;
  }

  .compare-car .box-compare .img-product-container .default-image img {
    max-height: 2.5rem;
  }
}


/*.compare-car.compare-lg {  }
    .compare-car.compare-lg .box-compare .flex-col .box-container .img-product-container { display: flex; justify-content: center; align-items: center; height: 300px; margin: 0 1.25rem; }*/





.preview-car-popup {}

.preview-car-popup .popup-modal-dismiss {
  position: absolute;
  top: 80px;
  right: 25px;
  color: var(--white);
  z-index: 5;
  font-size: 30px;
}

.preview-car-popup .preview-car-slider-container {}

.preview-car-popup .preview-car-slider-container .preview-car-slider {}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items img.img-cover {
  position: absolute;
  top: 0;
  left: 0;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .container {
  display: flex;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .container.content-left {
  justify-content: flex-start;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .container.content-right {
  justify-content: flex-end;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .container.content-center {
  justify-content: center;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .block-text {
  position: relative;
  width: 32%;
  margin-top: 10%;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .block-text h2 {
  font-weight: 700;
  color: var(--white);
}

.preview-car-popup .preview-car-slider-container .preview-car-slider .items .block-text p {
  font-weight: 400;
  color: var(--white);
}

.preview-car-popup .preview-car-slider-container .nav-slider {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 28px;
  line-height: 38px;
  color: var(--dark);
  opacity: 0.4;
  z-index: 5;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.preview-car-popup .preview-car-slider-container .nav-slider:hover {
  opacity: 0.8;
  background: var(--yellow);
  color: var(--white);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider-prev {
  left: 1.875em;
}

.preview-car-popup .preview-car-slider-container .preview-car-slider-next {
  right: 1.875em;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .preview-car-popup .preview-car-slider-container .preview-car-slider-prev {
    left: 0rem;
  }

  .preview-car-popup .preview-car-slider-container .preview-car-slider-next {
    right: 0rem;
  }
}

@media (max-width: 767px) {
  .preview-car-popup .preview-car-slider-container .preview-car-slider .items .block-text {
    width: 50%;
  }

  .preview-car-popup .preview-car-slider-container .preview-car-slider-prev {
    left: 0rem;
  }

  .preview-car-popup .preview-car-slider-container .preview-car-slider-next {
    right: 0rem;
  }
}

/* ------------------------------------ details product ------------------------------------ */



/*.wr360_player {
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -ms-touch-action: none;
    touch-action: pan-y
}

.wr360_player .container {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: inherit !important;
    max-width: none !important;
    font-family: Tahoma, sans-serif
}

.wr360_player .container::before {
    display: none !important
}

.wr360_player img {
    max-width: none !important;
    max-height: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    image-rendering: -webkit-optimize-contrast
}

.wr360_player .container .panning2,.wr360_player .container .panning {
    position: absolute;
    left: 0;
    top: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1
}

.wr360_player .container .theme_panel_back {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 34px;
    z-index: 2
}

.wr360_player .container .theme_panel {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 34px;
    z-index: 3
}

.wr360_player .container .theme_header {
    height: 20px;
    z-index: 2;
    font-family: Tahoma,Helvetica,Sans-Serif
}

.wr360_player .container .theme_header .progress_wrap {
    float: left;
    cursor: pointer
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs {
    margin: 10px 0 0 15px;
    line-height: 28px;
    height: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim {
    margin: 1px 0 0 6px;
    line-height: 16px;
    height: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs div,.wr360_player .container .theme_header .progress_wrap .progress_bar_anim div {
    height: 100%;
    width: 5px;
    opacity: 0;
    margin: 0 2px 0 0;
    background-color: #bbb;
    float: left;
    overflow: hidden;
    -webkit-animation: wr360_progress_delay 1.2s infinite ease-in-out;
    animation: wr360_progress_delay 1.2s infinite ease-in-out
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs div {
    width: 6px;
    margin: 0 3px 0 0;
    background-color: #aaa
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim .animbar1,.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs .animbar1 {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim .animbar2,.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs .animbar2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim .animbar3,.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs .animbar3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim .animbar4,.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs .animbar4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim .animbar5,.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs .animbar5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim span.percentnums {
    font-size: 8px;
    width: 25px;
    float: left;
    color: #999;
    margin: 0 0 0 4px;
    display: none
}

.wr360_player .container .theme_header .progress_wrap .progress_bar_anim_fs span.percentnums {
    font-size: 11px;
    width: 25px;
    float: left;
    color: #999;
    margin: 0 0 0 6px;
    display: none
}

@-webkit-keyframes wr360_progress_delay {
    0%,40%,100% {
        -webkit-transform: scaleY(0.5)
    }

    20% {
        -webkit-transform: scaleY(1);
        opacity: 1
    }
}

@keyframes wr360_progress_delay {
    0%,40%,100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5)
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        opacity: 1
    }
}

.wr360_player .container .theme_header a.watermark {
    margin: 5px 0 0 5px;
    float: left;
    width: 1px;
    height: 1px;
    cursor: pointer;
    display: none
}

.wr360_player .container .theme_panel .toolbar {
    position: relative;
    height: 34px;
    padding: 0 10px 0 10px;
    margin: 0 auto 0 auto;
    box-sizing: content-box !important;
    border: none !important;
    background: inherit !important
}

.wr360_player .container .theme_panel .toolbar>a {
    transition: none !important;
    display: block;
    float: left;
    width: 22px;
    height: 24px;
    margin: 5px 0 0 11px;
    opacity: 0.7
}

.wr360_player .container .theme_panel .toolbar>a:first-of-type {
    margin-left: 0
}

.wr360_player .container .theme_panel .toolbar>a:hover,.wr360_player a.fullscreenoff_button:hover {
    opacity: 1
}

.wr360_player .container .hotspot_indicator {
    z-index: 4
}

.wr360_player .container .hotspot_indicator_hidden {
    display: none !important
}

.wr360_player .container .position_rollover {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    z-index: 5
}

.wr360_player .container .position_rollover>div {
    box-sizing: border-box
}

.wr360_player .container .lightbox_rollover {
    z-index: 6;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    cursor: default
}

.wr360_player .container .lightbox_rollover * {
    box-sizing: border-box
}

.wr360_player .container .lightbox_rollover .closelbox {
    position: absolute;
    background: url(../img/thin/lightbox_close.svg) 7px 7px no-repeat;
    right: 15px;
    top: 15px;
    width: 28px;
    height: 28px;
    cursor: pointer
}

.wr360_player .container .lightbox_rollover .closelbox:hover {
    opacity: 0.8
}

.wr360_player .container .lightbox_rollover .img_wrap {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background-position: center center;
    background-repeat: no-repeat
}

.wr360_player .container .lightbox_rollover .img_title {
    position: absolute;
    padding: 0;
    max-width: 100%;
    width: 100%;
    text-align: left;
    bottom: 0;
    left: 0;
    background-color: rgba(65,65,65,0.9)
}

.wr360_player .container .lightbox_rollover .img_title a {
    color: #ff0000
}

.wr360_player .container .lightbox_rollover .img_title .usr_text {
    display: inline-block;
    color: #fff;
    width: 50%;
    text-align: left;
    padding: 15px 20px 19px 20px;
    line-height: 19px;
    font-size: 16px
}*/



/* ------------------------------------ dashboard member ------------------------------------ */
.dashboard-member {
  min-height: 96vh;
}

.dashboard-member .dash-sidebar {}

.dashboard-member .tab-content {}

.dashboard-member .dash-sidebar .dash-menu {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-heading {
  padding: 0.938rem 0 0.938rem 1.25rem;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-heading h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #6A7187;
  margin-bottom: 0;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-item {
  width: 100%;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-item a {
  vertical-align: middle;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.938rem 0.938rem 0.938rem 1.25rem;
  font-weight: normal;
  font-size: 0.938rem;
  line-height: 1.2;
  color: #9B9B9B;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-item a:hover {
  border-color: transparent;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-item a svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-item a.active {
  background: var(--light);
  font-weight: bold;
  color: var(--dark);
}

.dashboard-member .dash-sidebar .dash-menu .dash-menu-item a.active svg path {
  fill: var(--dark);
}

@media (max-width: 767px) {
  .dashboard-member .dash-sidebar .dash-menu {
    display: inline-flex;
    flex-wrap: inherit;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .dashboard-member .dash-sidebar .dash-menu .dash-menu-heading {
    display: none;
  }

  .dashboard-member .dash-sidebar .dash-menu .dash-menu-item {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
  }

  .dashboard-member .dash-sidebar .dash-menu .dash-menu-item a {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
  }
}

.dashboard-member .wrap-content {
  padding: 1.875rem;
  border-bottom: 1px solid #DEE2E6;
}

.dashboard-member .dash-promotional-slider-container {}

.dashboard-member .dash-promotional-slider-container .dash-promotional-slider {}

.dashboard-member .dash-promotional-slider-container .dash-promotional-slider .owl-stage-outer {
  margin: 0 0 1.875rem 0rem;
}

.dashboard-member .dash-promotional-slider-container .dash-promotional-slider-dots {
  bottom: -10%;
}

.dashboard-member .block-user {
  display: flex;
  align-items: flex-start;
}

.dashboard-member .img-user {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  object-fit: cover;
  position: 50% 50%;
  margin-right: 2.5rem;
}

.dashboard-member .list-info {
  list-style: none;
  padding-left: 0;
}

.dashboard-member .list-info li {
  margin-bottom: 0.313rem;
}

.dashboard-member .list-info li:last-child {
  margin-bottom: 0;
}

.dashboard-member .list-info li label {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.4;
}

.dashboard-member .list-info li span {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.4;
}

.dashboard-member .list-info.flex li {
  display: flex;
  align-items: flex-start;
}

.dashboard-member .list-info.flex li label {
  width: 40%;
}

.dashboard-member .list-info.flex li span {
  width: 60%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashboard-member .block-user {
    display: block;
  }

  .dashboard-member .block-user .img-user {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .dashboard-member .list-info li {
    margin-bottom: 0.625rem;
  }

  .dashboard-member .list-info li label {
    width: 100%;
    margin-bottom: 0.313rem;
  }

  .dashboard-member .list-info li span {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dashboard-member .block-user {
    display: block;
  }

  .dashboard-member .block-user .img-user {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .dashboard-member .list-info li {
    margin-bottom: 0.625rem;
  }

  .dashboard-member .list-info li label {
    width: 100%;
    margin-bottom: 0.313rem;
  }

  .dashboard-member .list-info li span {
    width: 100%;
  }
}

/* ------------------------------------ end dashboard member ------------------------------------ */


.list-info-style {
  list-style: none;
  padding-left: 0;
}

.list-info-style li {
  margin-bottom: 0.313rem;
}

.list-info-style li:last-child {
  margin-bottom: 0;
}

.list-info-style li label {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.4;
}

.list-info-style li span {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.4;
}

.list-info-style.flex li {
  display: flex;
  align-items: flex-start;
}

.list-info-style.flex li label {
  width: 40%;
}

.list-info-style.flex li span {
  width: 60%;
}

.list-info-style.flex-2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}

.list-info-style.flex-2 li {
  flex-basis: 50%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.list-info-style.flex-2 li label {
  width: 25%;
}

.list-info-style.flex-2 li span {
  width: 75%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .list-info-style.flex-2 {
    display: block;
  }
}

@media (max-width: 767px) {
  .list-info-style.flex-2 {
    display: block;
  }
}

/* ------------------------------------ dashboard step ------------------------------------ */
.dashboard-step {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #E5E5E5;
}

.dashboard-step .welcome-step {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  padding: 1.25rem 1.875rem;
}

.dashboard-step .welcome-step img {
  position: absolute;
  bottom: 0;
  right: 0.938rem;
  max-width: 8.75rem;
  object-fit: cover;
}

.dashboard-step .welcome-step-sm {
  position: relative;
  background: #E0E0E0;
  padding: 0.625rem 1.875rem;
}

.dashboard-step .welcome-step-sm h4 {
  font-weight: 700;
  margin-bottom: 0;
}

.dashboard-step .wrap-content {
  padding: 1.25rem 1.875rem;
}

.dashboard-step .wrap-content .text-2 {
  font-weight: 600;
  color: #6E7684;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.dashboard-step .wrap-content .text-3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

.dashboard-step .wrap-content .badge-tipe-pembayaran {
  background: #34C38F;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 0.5rem;
  border-radius: 1.25rem;
}

.dashboard-step .wrap-content .card.h-dark .card-header {
  background: var(--dark);
  padding: 0.625rem 1.25rem;
}

.dashboard-step .wrap-content .card.h-dark .card-header p {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.dashboard-step .wrap-content .card.h-dark .card-body {
  padding: 0.813rem 1.25rem;
}

.dashboard-step .wrap-content .card.h-dark .card-body h4 {
  font-weight: 800;
  margin-bottom: 0;
}

.dashboard-step .wrap-konf-booking-fee {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-step .wrap-konf-booking-fee .card-booking-fee {
  background: rgba(255, 214, 0, 0.17);
  border-radius: 0.313rem;
  padding: 1.25rem;
}

.dashboard-step .box-actions {
  padding: 1.25rem 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-step .img-car-preview {
  max-height: 21.875rem;
  object-fit: contain;
}

.dashboard-step .btn-voucher {
  color: var(--border-light);
  border-color: var(--border-light);
}

.dashboard-step .btn-voucher:hover {
  color: var(--dark);
  border-color: transparent;
}

.dashboard-step .price-display-2 .box-price {
  background: #F7F7F7;
}

.dashboard-step .price-display-2 .box-price:first-child {
  border-left: none;
}

.dashboard-step .price-display-2 .box-price:last-child {
  border-right: none;
  box-shadow: none;
}

.dashboard-step .radio-tile-group {
  position: relative;
}

.dashboard-step .radio-tile-group .input-container .radio-button {
  z-index: 5;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.dashboard-step .radio-tile-group .input-container .radio-button:checked+.radio-tile {
  box-shadow: 0rem 0rem 1.25rem rgba(0, 0, 0, 0.1);
  /*transform: scale(1.1, 1.1);*/
}

.dashboard-step .radio-tile-group .input-container .radio-button:checked+.radio-tile::after {
  font-family: "Ionicons";
  content: "\f122";
  position: absolute;
  top: 14px;
  right: 16px;
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--dark);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 5;
}

.dashboard-step .radio-tile-group.hv-yellow .input-container .radio-button:checked+.radio-tile .card-product-2 {
  background: var(--yellow);
}

.dashboard-step .radio-tile-group.radio-color-product .input-container {
  position: relative;
  padding: 0.625rem;
}

.dashboard-step .radio-tile-group.radio-color-product .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent);
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  padding: 0.75rem;
  transition: transform 300ms ease;
}

.dashboard-step .radio-tile-group.radio-color-product .input-container .radio-tile .color-product {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 0.313rem;
  border: 1px solid var(--light);
}

.dashboard-step .radio-tile-group.radio-color-product .input-container .radio-tile .img-color {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  margin-bottom: 0.313rem;
}


.dashboard-step .img-car-booking {
  object-fit: contain;
  max-height: 6.875rem;
  margin-bottom: 5px;
}

.order-success {}

.order-success .no-rekening {
  font-weight: 600;
  clear: both;
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1;
  border-radius: 0.313rem;
  border: 1px solid var(--dark);
  margin-bottom: 1.875rem;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashboard-step .wrap-content {
    padding: 0.938rem 0.938rem;
  }
}

@media (max-width: 767px) {
  .dashboard-step .wrap-content {
    padding: 0.938rem 0.938rem;
  }

  .flex-radio {
    justify-content: flex-start;
  }

  .flex-radio .flex-col {
    flex-basis: 50%;
  }
}

/* ------------------------------------ dashboard step ------------------------------------ */



/* ------------------------------------ slider carousel ------------------------------------ */
.slider-container {
  position: relative;
  height: 100%;
}

.slider-container .slider-dots-style {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.slider-container .slider-dots-style .owl-dot {
  display: inline-block;
  width: 0.938rem;
  height: 0.5rem;
  background: var(--light);
  border-radius: 2.5rem;
  margin-right: 0.313rem;
  opacity: 0.6;
  box-shadow: 0rem 0.063rem 0.25rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.slider-container .slider-dots-style .owl-dot:last-child {
  margin-right: 0rem;
}

.slider-container .slider-dots-style .owl-dot.active {
  opacity: 1;
  width: 1.563rem;
  background: var(--accent);
  box-shadow: none;
}

/*.slider-dots { position: absolute; left: 0; bottom: 0; width: 100%; display: flex; justify-content: center; z-index: 5; }
    .slider-dots .owl-dot {
        display: inline-block;
        width: 1.25rem;
        height: 0.563rem;
        background: #C4C4C4;
        border-radius: 1.25rem;
        margin-right: 0.313rem;
        box-shadow: 0rem 0.063rem 0.25rem rgba(0, 0, 0, 0.1);
        cursor: pointer;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }
    .slider-dots .owl-dot:last-child { margin-right: 0rem; }
    .slider-dots .owl-dot.active { 
        width: 2.5rem;
        background: var(--accent); 
        box-shadow: none; 
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }*/
/* ------------------------------------ carousel ------------------------------------ */



/* ------------------------------------ sticky ------------------------------------ */
.sticky-container {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 10;
}

.sticky-container ul li {
  list-style-type: none;
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 100%;
  padding: 0.813rem 0.625rem;
  text-align: center;
  margin: 0;
  border-bottom: 1px solid #B00010;
  background: var(--accent);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.sticky-container ul li:first-child {
  border-top-left-radius: 0.75rem;
}

.sticky-container ul li:last-child {
  border-bottom: none;
  border-bottom-left-radius: 0.75rem;
}

.sticky-container ul li:hover {
  background: var(--yellow);
}

.sticky-container ul li a {
  font-weight: normal;
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--white);
}

.sticky-container ul li:hover a {
  color: var(--dark);
}

.sticky-container ul li:hover .icon {
  fill: var(--dark);
}

.sticky-container ul li .icon {
  margin-bottom: 0.313rem;
  max-height: 2.063rem;
  fill: var(--white);
}

.sticky-container ul li p {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sticky-container {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    z-index: 10;
  }

  .sticky-container ul {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .sticky-container ul li {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 4.688rem;
    padding: 0.625rem 0.5rem;
    border-bottom: none;
    border-right: 1px solid #B00010;
  }

  .sticky-container ul li:first-child {
    border-top-left-radius: 0;
  }

  .sticky-container ul li:last-child {
    border-bottom-left-radius: 0;
    border-right: none;
  }

  .sticky-container ul li a {
    font-size: 0.625rem;
  }

  .sticky-container ul li .icon {
    max-height: 1.563rem;
  }
}

@media (max-width: 767px) {
  .sticky-container {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    z-index: 10;
  }

  .sticky-container ul {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .sticky-container ul li {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 4.688rem;
    padding: 0.625rem 0.5rem;
    border-bottom: none;
    border-right: 1px solid #B00010;
  }

  .sticky-container ul li:first-child {
    border-top-left-radius: 0;
  }

  .sticky-container ul li:last-child {
    border-bottom-left-radius: 0;
    border-right: none;
  }

  .sticky-container ul li a {
    font-size: 0.625rem;
  }

  .sticky-container ul li .icon {
    max-height: 1.563rem;
  }
}

/* ------------------------------------ end sticky ------------------------------------ */



/* ------------------------------------ contact us ------------------------------------ */
.contact-us {}

.contact-us .keep-touch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us .keep-touch img {
  max-width: 6.875rem;
}

@media only screen and (max-width: 767px) {
  .contact-us .keep-touch {}

  .contact-us .keep-touch img {
    max-width: 5.625rem;
  }
}

/* ------------------------------------ end contact us ------------------------------------ */



/* ------------------------------------ nice select ------------------------------------ */
.nice-select.select-trans {
  border: none;
  background: transparent;
  font-weight: bold;
  font-size: 0.875rem;
}

.nice-select.select-trans:focus {
  outline: none;
  box-shadow: none;
  color: var(--dark);
}

.nice-select.select-trans .option {
  font-size: 0.875rem;
  color: var(--dark);
}

.nice-select.select-trans .option:hover,
.nice-select.select-trans .option.focus,
.nice-select.select-trans .option.selected.focus {
  background-color: var(--yellow);
}

.nice-select.select-trans:after {
  margin-top: -0.5rem;
  border-bottom: 1px solid var(--yellow);
  border-right: 1px solid var(--yellow);
}

.nice-select:focus {
  outline: none;
  box-shadow: none;
  color: var(--dark);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  color: var(--dark);
  background-color: var(--yellow);
}

.nice-select .option.selected {
  font-weight: 700;
}

.select-custome,
.select-custome-search {
  width: 100%;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(155, 155, 155, 0.75);
  margin-bottom: 0.938rem;
}

.select-custome .list,
.select-custome-search .list {
  left: 0 !important;
  right: 0 !important;
  -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
}

.select-custome.scroll .list,
.select-custome-search.scroll .list {
  max-height: 350px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.select-custome .option,
.select-custome-search .option {
  font-size: 0.875rem;
  color: var(--dark);
}

/* find dealer  */
.intro-profile-dealer { overflow: hidden; }
    .intro-profile-dealer .profile-dealer-slider-container .owl-item img { object-fit: cover; object-position: 50% 50%; width: 100%; height: 100%; margin: auto; }
    .intro-profile-dealer .profile-dealer-slider-container .nav-slider {
        position: absolute;
        cursor: pointer;
        top: 50%;
        opacity: 0.09;
        z-index: 15;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }
    .intro-profile-dealer .profile-dealer-slider-container .nav-slider i { font-size: 2.5rem; color: var(--dark); }
    .intro-profile-dealer .profile-dealer-slider-container .nav-slider:hover {
        opacity: 0.7;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }
    .intro-profile-dealer .profile-dealer-slider-container .profile-dealer-slider-prev { left: 1.25em; }
    .intro-profile-dealer .profile-dealer-slider-container .profile-dealer-slider-next { right: 1.25em; }
    .intro-profile-dealer .profile-dealer-slider-container .profile-dealer-slider-dots { position: absolute; bottom: 1.875rem; left: 0; right: 0; margin-left: 0; margin-right: 0; display: flex; justify-content: center; z-index: 10; }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
        .intro-profile-dealer { padding-top: 3.875rem; }
    }
    @media (max-width: 767px) {
        .intro-profile-dealer { padding-top: 3.875rem; }
    }
    .profile-dealer .maps-iframe-style { width: 100%; height: 23.75rem; border: none; margin-bottom: 1.25rem; }
    .profile-dealer .list-info li { margin-bottom: 10px; display: flex; align-items: center; justify-content: flex-start; }
    .profile-dealer .list-info li i { width: 14px; margin-right: 5px; }
    .profile-dealer .list-info li span {  }


/* ------------------------------------ end nice select ------------------------------------ */



/* ------------------------------------ form style ------------------------------------ */
.form-style .form-group {
  position: relative;
  margin-bottom: 0.938rem;
  width: 100%;
}

.form-style .form-group .control-label {
  font-weight: 600;
  font-size: 0.813rem;
  line-height: 1.125rem;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.form-style .form-group .control-label.text-2 {
  font-weight: 500;
  color: #6E7684;
}

.form-style .form-group .control-label.text-3 {
  font-weight: normal;
  font-size: 0.813rem;
  line-height: 1.125rem;
  margin-bottom: 0px;
  color: var(--black);
}

.form-style .form-control {
  position: relative;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid #CED2D1;
  border-radius: 5px;
  width: 100%;
  box-shadow: none;
}

.form-style .form-control::placeholder {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--dark);
  opacity: 0.55;
}

.form-style .form-control::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--dark);
  opacity: 0.55;
}

.form-style .form-control::-moz-placeholder {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--dark);
  opacity: 0.55;
}

.form-style .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--dark);
  opacity: 0.55;
}

.form-style .form-control:-moz-placeholder {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--dark);
  opacity: 0.55;
}

.form-style select.form-control option {
  font-size: 0.875rem;
  color: var(--black);
  padding: 10px 0;
}

.form-style textarea.form-control {
  height: inherit !important;
}

.form-style input[type=checkbox] {
  appearance: checkbox;
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
  -o-appearance: checkbox;
  -ms-appearance: checkbox;
}

.form-style input[type=radio] {
  appearance: radio;
  -moz-appearance: radio;
  -webkit-appearance: radio;
  -o-appearance: radio;
  -ms-appearance: radio;
}

.form-style input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-group .custom-checkbox {
  padding-left: 0.5rem;
}

.form-group .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

.form-group .custom-checkbox .custom-control-input:focus~.custom-control-label::before {
  box-shadow: none;
}

.form-style .form-group .custom-radio .custom-control-label {
  font-weight: 500;
  font-size: 0.813rem;
  line-height: 1.5rem;
  color: var(--dark);
}

.form-style .form-group .custom-radio .custom-control-label::before {
  border-radius: 50%;
  box-shadow: none;
}

.form-style .form-group .custom-radio .custom-control-input:checked~.custom-control-label::after {
  box-shadow: none;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50%;
  background: var(--accent);
  border-color: var(--accent) !important;
}

.custome-input-file {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.custome-input-file .wrap-input {
  width: 100%;
}

.custome-input-file input.btn {
  width: 100%;
  font-size: 13px;
  line-height: 1.1;
  color: #4F4F4F;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid #CED2D1;
  padding: 5px;
  cursor: pointer;
}

.custome-input-file input.btn::-webkit-file-upload-button {
  padding: 7px 12px;
  background: var(--accent);
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.1;
  color: var(--white);
}

.form-style .g-recaptcha {
  width: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form-style .form-group .control-label {
    font-size: 0.875rem;
    line-height: 1rem;
  }

  .form-style .select-custome {
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .form-style .select-custome .list {
    width: 100%;
    overflow: hidden;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .form-style .form-group .control-label {
    font-size: 0.875rem;
    line-height: 1rem;
  }

  .form-style .select-custome {
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .form-style .select-custome .list {
    width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .form-style .form-group .control-label {
    font-size: 0.875rem;
    line-height: 1rem;
  }

  .form-style .select-custome {
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .form-style .select-custome .list {
    width: 100%;
    overflow: hidden;
  }
}


.custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.custom-checkbox input[type="checkbox"] {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 0.188rem;
  color: black;
  border: 1px solid var(--dark) !important;
  appearance: none;
  outline: 0;
  cursor: pointer;
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  -webkit-transition: all;
  -moz-transition: all;
  -ms-transition: all;
  -o-transition: all;
  transition: all;
  transition-duration: 0s;
  -webkit-transition-duration: 250ms;
  transition-duration: 250ms;
}

.custom-checkbox input[type="checkbox"]:before {
  position: absolute;
  content: '';
  display: block;
  top: 0px;
  left: 4.5px;
  width: 7px;
  height: 12px;
  border-style: solid;
  border-color: white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: all;
  -moz-transition: all;
  -ms-transition: all;
  -o-transition: all;
  transition: all;
  transition-duration: 0s;
  -webkit-transition-duration: 250ms;
  transition-duration: 250ms;
}

.custom-checkbox input[type="checkbox"]:checked {
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}

.custom-checkbox input[type="checkbox"]:checked::before {
  opacity: 1;
}


.dropdown .icon-vertical {
  font-size: 1.25rem;
  color: var(--dark);
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

/* ------------------------------------ end form style ------------------------------------ */



/* ------------------------------------ footer ------------------------------------ */
.footer {
  position: relative;
  padding-top: 4.5em;
  padding-bottom: 4em;
  background: #F7F7F7;
}

.footer .logo-container {
  margin-bottom: 2.5rem;
}

.footer .logo-container .logo {
  max-width: 18.75rem;
  margin-bottom: 1.25rem;
}

.footer .logo-container p {
  margin-bottom: 0.313rem;
}

.footer .footer-column {
  margin-bottom: 2.5rem;
}

.footer .footer-column .title {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.938rem;
}

.footer .footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer .footer-column ul li {
  color: rgba(31, 43, 62, 0.5);
  letter-spacing: -0.02em;
  margin-bottom: 0.313rem;
}

.footer .footer-column ul.sosial-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer .footer-column ul.sosial-media .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.688rem;
  height: 2.688rem;
  cursor: pointer;
  margin-right: 0.938rem;
  text-align: center;
  color: var(--dark);
  border: 1px solid var(--dark);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.footer .footer-column ul.sosial-media li:last-child .icon {
  margin-right: 0;
}

.footer .footer-column ul.sosial-media .icon:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.footer .footer-column ul.sosial-media .icon i {
  font-size: 1.375rem;
  line-height: 2.188rem;
  -webkit-transition: all 80ms ease;
  -moz-transition: all 80ms ease;
  -ms-transition: all 80ms ease;
  -o-transition: all 80ms ease;
  transition: all 80ms ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media (max-width: 767px) {
  .footer .footer-column .title {
    font-size: 0.875rem;
    line-height: 1.1;
  }

  .footer .footer-column ul li {
    font-size: 0.75rem;
  }

  .footer .footer-column ul.sosial-media .icon {
    width: 2.188rem;
    height: 2.188rem;
  }

  .footer .footer-column ul.sosial-media .icon i {
    font-size: 1.25rem;
    line-height: 2.063rem;
  }
}



.copyright {
  width: 100%;
  padding: 0.938em;
  background: #1F2B3E;
}

.copyright span {
  color: var(--white);
  font-weight: bold;
  font-size: 0.875em;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.copyright span a {
  color: var(--white);
}

.copyright span a:hover {
  color: var(--yellow);
}

@media only screen and (max-width: 767px) {
  .copyright span {
    font-size: 0.8em;
    line-height: 120%;
  }
}

/* ------------------------------------ end footer ------------------------------------ */



/* ------------------------------------ button ------------------------------------ */
.btn {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.btn::hover .btn::focus,
.btn.focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.btn.btn-padd {
  font-weight: 600;
  padding: 0.75rem 1.875rem;
  border-radius: 0.438rem;
}

.btn.btn-padd i {
  font-size: 1.188rem;
  line-height: 16px;
  vertical-align: middle;
}

.btn-width {
  width: 9.375rem;
}

.btn-accent {
  color: var(--white);
  background: var(--accent);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-accent:hover,
.btn-accent:focus {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
}

.btn-outline-accent {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-outline-accent:hover {
  color: var(--white);
  background-color: var(--accent);
}

.btn-white {
  color: var(--dark);
  background: var(--white);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-white:hover,
.btn-white:focus {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.btn-outline-white {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  color: var(--white);
  background-color: var(--white);
}

.btn-dark {
  color: var(--white);
  background: var(--dark);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-dark:hover,
.btn-dark:focus {
  color: var(--dark);
  background: transparent;
  border-color: var(--dark);
}

.btn-outline-dark {
  color: var(--dark);
  background: transparent;
  border-color: var(--dark);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: var(--white);
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-green {
  color: var(--white);
  background: #30BC55;
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-green:hover,
.btn-green:focus {
  color: #30BC55;
  background: transparent;
  border-color: #30BC55;
}

.btn-outline-green {
  color: #30BC55;
  background: transparent;
  border-color: #30BC55;
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-outline-green:hover,
.btn-outline-green:focus {
  color: var(--white);
  background-color: #30BC55;
}

.btn-yellow {
  color: var(--dark);
  background: var(--yellow);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-yellow:hover,
.btn-yellow:focus {
  color: var(--yellow);
  background: transparent;
  border-color: var(--yellow);
}

.btn-black-style {
  color: var(--white);
  background: var(--black);
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-black-style:hover,
.btn-black-style:focus {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.btn-whatsapp {
  color: var(--white);
  background: #30BC55;
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  color: #30BC55;
  background: transparent;
  border-color: #30BC55;
}

.btn-outline-whatsapp {
  color: #00E676;
  background: transparent;
  border-color: #00E676;
  font-size: 0.875rem;
  line-height: 1.2;
}

.btn-outline-whatsapp:hover,
.btn-outline-whatsapp:focus {
  color: var(--white);
  background-color: #00E676;
}

/* ------------------------------------ end button ------------------------------------ */


.sparepart {}

.sparepart .flex-3-column {
  justify-content: flex-start;
  align-items: stretch;
}

.sparepart .flex-3-column .flex-col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  align-self: stretch;
  margin-bottom: 20px;
}

.card-product.card-sparepart {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.card-product.card-sparepart:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  box-shadow: 0 0.125rem 0.938rem rgba(0, 0, 0, 0.1);
}

.card-product.card-sparepart .card-header {
  padding: 0;
}

.card-product.card-sparepart .card-header img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

.card-product.card-sparepart .card-body {
  position: relative;
  padding: 25px 15px 10px 15px;
}

.card-product.card-sparepart .card-body .price {
  position: absolute;
  top: -20px;
  right: 15px;
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  background: var(--accent);
  padding: 7px 18px;
  border-radius: 30px;
}

.card-product.card-sparepart .card-body h2 {
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  height: 37px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media (max-width: 767px) {
  .sparepart .top-heading {
    text-align: center;
  }

  .sparepart .top-heading .filter-product {
    margin-top: 5px;
  }

  .sparepart .top-heading .filter-product .single-filter-product {
    justify-content: center;
  }
}



/* ------------------------------------ card style ------------------------------------ */
.card-style {
  background: var(--white);
  border: none;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.card-style .card-header {
  background: transparent;
  padding: 1.25rem 0.938rem;
}

.card-style .card-header .title {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}


/*card product*/
.card-product {
  background: var(--white);
  border: none;
  box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
}

.card-product .card-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: none;
  background: none;
  padding-top: 1.563rem;
  height: 11.25rem;
}

.card-product .card-header .ribbon-category {
  position: absolute;
  top: 0.938rem;
  left: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.255em;
}

.card-product .card-header img {
  object-fit: contain;
  height: 100%;
}

.card-product .card-body {
  padding: 0;
}

.card-product .card-body h2.heading {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3;
  height: 1.375rem;
  overflow: hidden;
  margin-bottom: 0.938rem;
}

.card-product .card-body .wrap-padd {
  padding: 0.938rem;
  padding-top: 0.313rem;
  padding-bottom: 0rem;
}

.card-product .card-body .excellence {
  display: -ms-flexbox;
  display: flex;
  margin: 0.938rem 0;
}

.card-product .card-body .excellence .box-excellence {
  width: 100%;
}

.card-product .card-body .excellence .box-excellence .label {
  font-weight: normal;
  font-size: 0.75rem;
  margin-bottom: 0.188rem;
}

.card-product .card-body .excellence .box-excellence .value {
  font-weight: 600;
  font-size: 0.688rem;
  margin-bottom: 0rem;
}

@media (max-width: 767px) {
  .card-product .card-body .excellence .box-excellence .label {
    font-weight: 500;
    font-size: 0.563rem;
  }

  .card-product .card-body .excellence .box-excellence .value {
    font-size: 0.563rem;
  }
}

.card-product .card-body .price-display-2 {
  background: #F7F7F7;
}

.card-product .card-body .price-display-2 .box-price {
  padding: 0.625rem 0.938rem;
}

.card-product .card-body .price-display-2 .box-price:first-child {
  border-left: none;
}

.card-product .card-body .price-display-2 .box-price:last-child {
  border-right: none;
  box-shadow: none;
}

.card-product .card-body .price-display-2 .box-price p.price {
  font-weight: bold;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.188rem;
}

.card-product .card-body .price-display-2 .box-price p {
  font-size: 0.625rem;
  color: #9B9B9B;
  letter-spacing: -0.05em;
}

.card-product .card-footer {
  background: var(--white);
  border: none;
  padding: 0.625rem 0.938rem;
  box-shadow: 0rem -0.25rem 1.25rem rgba(0, 0, 0, 0.1);
}


.card-product-2 {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: none;
  box-shadow: 0px 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
}

.card-product-2 .card-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  height: 7.5rem;
}

.card-product-2 .card-header img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.card-product-2 .card-body {
  padding: 0;
}

.card-product-2 .card-body h2.heading {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
  height: 1.375rem;
  overflow: hidden;
  margin-bottom: 0.938rem;
}

.card-product-2 .card-body .wrap-padd {
  padding: 0.625rem 0.625rem 0rem 0.625rem;
}




.card-product-3 {
  position: relative;
  overflow: hidden;
  background: #F7F7F7;
  height: 100%;
  border: none;
  box-shadow: none;
  border-radius: 1.25rem;
}

.card-product-3 .card-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  height: 10.625rem;
}

.card-product-3 .card-header img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.card-product-3 .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-product-3 .card-body h2.heading {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.938rem;
}

.card-product-3 .card-body .wrap-padd {
  padding: 0.625rem 0.625rem 0rem 0.625rem;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-product-3 .card-header {
    height: 12.5rem;
  }
}

@media (max-width: 767px) {
  .card-product-3 .card-header {
    height: 12.5rem;
  }
}


.card-product-3.club { 
  border-top-left-radius: 0; 
  border-top-right-radius: 0; 
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }
.card-product-3.club:hover, .card-product-3.club:focus {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15); 
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.card-product-3.club .card-header { align-items: center; }
.card-product-3.club .card-header img { object-fit: contain; width: auto; height: auto; max-height: 6.25rem; }
.card-product-3.club .card-body { background: #1F2B3E; text-align: center; }
.card-product-3.club .card-body h2 { color: var(--white); margin-bottom: 0; }

.intro-nasmoco-club { position: relative; height: 100vh; }
.intro-nasmoco-club img.img-cover { object-fit: cover; object-position: 50% 50%; }


.card.card-call {
  position: relative;
  background: #FFE3E6;
  padding: 0.938rem;
  padding-left: 2.188rem;
}

.card.card-call i {
  color: var(--white);
}

.card.card-call i::before {
  position: absolute;
  top: 0.625rem;
  left: -1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



/*card video*/
.card-video {
  position: relative;
  overflow: hidden;
  width: 30rem;
  height: 18.75rem;
  border-radius: 0.313rem;
}

.card-video:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.39) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-video .play-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0.25rem;
  background: var(--yellow);
  border: 2px solid var(--white);
  background-clip: content-box;
}

.card-video .play-button i {
  font-size: 1.125rem;
  margin-left: 0.125rem;
  color: var(--white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-video {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-video {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-video {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .card-video {
    width: 100%;
  }
}

/* ------------------------------------ end card style ------------------------------------ */



/* ------------------------------------ modal ------------------------------------ */
.modal {
  z-index: 99991;
}

.modal-style .modal-content {
  border: none;
}

.modal-style .modal-title span {
  color: var(--accent);
}

.modal-style .close {
  position: absolute;
  top: 0.625rem;
  right: 0.938rem;
  color: var(--dark);
}

.modal-style .body-modal-style {
  padding: 1.875rem;
  background: #F2F2F2;
  box-shadow: 0 0.313rem 0.313rem rgba(0, 0, 0, 0.2385);
  border-radius: 0.625rem;
}

.modal-style .body-modal-style h2 {
  font-size: 1.875rem 2.5rem;
  line-height: 2.188rem;
}


.modal-style.style-2 {}

.modal-style.style-2 .modal-header {
  background: #C4C4C4;
  border-bottom: none;
  padding: 0.625rem 1.875rem;
}


.modal-style.style-3 {}

.modal-style.style-3 .modal-header {
  background: var(--dark);
}

.modal-style.style-3 .close {
  position: absolute;
  top: 0.625rem;
  right: 0.938rem;
  color: var(--white);
  z-index: 5;
}

.modal-style.style-3 .body-modal-style {
  padding: 0.313rem;
  background: var(--white);
}


.promo-modal {}

.promo-modal .close {
  position: absolute;
  top: 0.625rem;
  right: 0.938rem;
  color: var(--white);
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.promo-modal .modal-content {
  background: none;
  border: none;
}

/* ------------------------------------ end modal ------------------------------------ */



/* ------------------------------------ background ------------------------------------ */
.bg-accent {
  background: var(--accent) !important;
}

.bg-yellow {
  background: var(--yellow) !important;
}

.bg-light {
  background: var(--light) !important;
}

.bg-light-dark {
  background: var(--light-dark) !important;
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-white {
  background: var(--white) !important;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bg-image.center {
  background-position: top center;
}

.bg-image.fixed {
  background-position: fixed !important;
}

.bg-image.overlay:before,
.bg-image.overlay-primary:before,
.bg-image.overlay-info:before,
.bg-image.overlay-success:before,
.bg-image.overlay-warning:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.bg-image.overlay:before {
  background: rgba(0, 0, 0, 0.4);
}

.bg-orange-gradient {
  background: linear-gradient(90.68deg, #FFCE4C 2.32%, #FF9239 45.32%, #FF3330 99.45%);
}

/* ------------------------------------ end background ------------------------------------ */



/* ------------------------------------ rounded ------------------------------------ */
.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-5 {
  border-radius: 0.313rem !important;
}

.rounded-8 {
  border-radius: 0.5rem !important;
}

.rounded-10 {
  border-radius: 0.625rem !important;
}

.rounded-15 {
  border-radius: 0.938rem !important;
}

.rounded-20 {
  border-radius: 1.25rem !important;
}

.rounded-30 {
  border-radius: 1.875rem !important;
}

.rounded-40 {
  border-radius: 2.5rem !important;
}

.rounded-50 {
  border-radius: 50% !important;
}

/* ------------------------------------ end rounded ------------------------------------ */



/* ------------------------------------ nav tabs style ------------------------------------ */
.nav-tabs-style {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.nav-tabs-style .nav-tabs {
  display: inline-flex;
  flex-wrap: inherit;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid var(--border-light);
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-tabs-style .nav-tabs::-webkit-scrollbar {
  display: none;
}

.nav-tabs-style .nav-tabs li {
  display: inline-block;
}

.nav-tabs-style .nav-tabs li a {
  position: relative;
  background: transparent;
  border: none;
  padding: 0 1.25rem;
  text-align: center;
}

.nav-tabs-style .nav-tabs li a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.168rem;
  border-top-left-radius: 0.313rem;
  border-top-right-radius: 0.313rem;
  background-color: var(--accent);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.nav-tabs-style .nav-tabs li a:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nav-tabs-style .nav-tabs li a.active {
  background: transparent;
}

.nav-tabs-style .nav-tabs li a.active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nav-tabs-style .nav-tabs li a.activeheader {
  background: transparent;
}

.nav-tabs-style .nav-tabs li a.activeheader::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nav-tabs-style .nav-tabs.nav-tabs-md a {
  width: 9.375rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.5rem;
  color: var(--dark);
}

.nav-tabs-style .nav-tabs.nav-tabs-sm a {
  width: 7.813rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.5rem;
  color: var(--dark);
}

.nav-tabs-style .tab-content {
  padding-top: 1.25rem;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nav-tabs-style .nav-tabs.nav-tabs-md a {
    width: 8.125rem;
  }
}

@media (max-width: 767px) {
  .nav-tabs-style .nav-tabs.nav-tabs-md a {
    width: 8.125rem;
    font-size: 0.813rem;
    color: red;
  }
}



.nav-tabs-step {
  position: relative;
  width: 100%;
  border-radius: 0;
  background: var(--white);
  border: 1px solid #EBEBEB;
}

.nav-tabs-step .nav-tabs {
  display: flex;
  width: 100%;
  padding: 0;
}

.nav-tabs-step .nav-tabs li {
  flex-basis: 20%;
  border-right: 1px solid #EBEBEB;
}

.nav-tabs-step .nav-tabs li a {
  opacity: 0.3;
  position: relative;
  background: #EBEBEB;
  height: 100%;
  padding: 0.625rem 0.625rem;
  font-weight: 600;
  text-align: center;
}

.nav-tabs-step .nav-tabs li a.active {
  opacity: 1;
  border-radius: 0;
  border-color: transparent;
  background: var(--white);
}

.nav-tabs-step .nav-tabs li a img {
  margin-right: 0.938rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-tabs-step .nav-tabs {
    display: flex;
  }

  .nav-tabs-step .nav-tabs li {
    flex-basis: 20%;
  }

  .nav-tabs-step .nav-tabs li a img {
    margin-right: 0;
  }

  .nav-tabs-step .nav-tabs li a span {}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nav-tabs-step .nav-tabs {
    display: flex;
  }

  .nav-tabs-step .nav-tabs li {
    flex-basis: 20%;
  }

  .nav-tabs-step .nav-tabs li a {
    padding: 0.625rem 1.25rem;
  }

  .nav-tabs-step .nav-tabs li a img {
    margin-right: 0;
  }

  .nav-tabs-step .nav-tabs li a span {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-tabs-step .nav-tabs {
    display: flex;
  }

  .nav-tabs-step .nav-tabs li {
    flex-basis: 20%;
  }

  .nav-tabs-step .nav-tabs li a {
    padding: 0.625rem 1.25rem;
  }

  .nav-tabs-step .nav-tabs li a img {
    margin-right: 0;
  }

  .nav-tabs-step .nav-tabs li a span {
    display: none;
  }
}



.nav-tabs-step .nav-step li a {
  cursor: not-allowed;
}

.nav-tabs-step .nav-step li a.step-active {
  opacity: 1;
  border-radius: 0;
  border-color: transparent;
  background: var(--white);
}

.nav-tabs-step fieldset {
  display: none;
}

/* ------------------------------------ end nav tabs style ------------------------------------ */



/* ------------------------------------ breadcrumb ------------------------------------ */
.breadcrumb-style {
  position: relative;
  padding: 1.25rem 0;
  background: var(--white);
}

.breadcrumb-style ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;

}

.breadcrumb-style ul li {
  font-weight: 400;
  font-size: 0.813rem;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.breadcrumb-style ul li::after {
  content: "/";
  display: inline-block;
  color: var(--dark);
  margin: 0 0.313rem;
}

.breadcrumb-style ul li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb-style ul li.active {
  font-weight: bold;
}

@media (max-width: 767px) {
  .breadcrumb-style ul li {
    font-size: 0.75rem;
  }
}

/* ------------------------------------ end breadcrumb ------------------------------------ */



/* ------------------------------------ pagination style ------------------------------------ */
.pagination-style {
  padding: 0;
  margin: 0;
}

.pagination-style li {
  display: inline-block;
  margin: 0.25rem;
}

.pagination-style li a {
  display: inline-block;
  color: var(--dark);
  background: var(--light);
  width: 2.75rem;
  height: 2.063rem;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.125rem;
  border-radius: 0.188rem;
  border: 0;
  box-shadow: none;
}

.pagination-style li a:hover,
.pagination-style li a:focus,
.pagination-style li.active a,
.pagination-style li.active {
  background: var(--dark) !important;
  border-radius: 0.188rem;
  color: var(--white);
  border: 0;
  box-shadow: none;
}

/* ------------------------------------ end pagination style ------------------------------------ */



/* ------------------------------------ not found items ------------------------------------ */
.not-found-items {
  width: 100%;
  min-height: 220px;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.not-found-items svg {
  width: 115px;
  margin-bottom: 0.625rem;
}

.not-found-items svg path {
  fill: #6E7684;
}

.not-found-items img {
  max-height: 220px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.not-found-items h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: #6E7684;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .not-found-items {
    min-height: 200px;
  }

  .not-found-items img {
    max-height: 150px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .not-found-items h3 {
    font-size: 20px;
  }

  .not-found-items p {
    font-size: 18px;
  }
}

/* ------------------------------------ end not found items ------------------------------------ */



/* ------------------------------------ animate css ------------------------------------ */
/*!
    * animate.css -http://daneden.me/animate
    * Version - 3.7.0
    * Licensed under the MIT license - http://opensource.org/licenses/MIT
    * Copyright (c) 2018 Daniel Eden
    */

@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print),
(prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

/* ------------------------------------ end animate css ------------------------------------ */



/* ------------------------------------ badge style ------------------------------------ */
.badge {
  position: relative;
}

.badge-dot {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  padding-left: 12px;
  padding-right: 0;
  font-size: 12px;
}

.badge-dot:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  height: 6px;
  width: 6px;
  margin-top: -1px;
  border-radius: 50%;
  background: currentColor;
}

.badge-dot.badge-sm,
.badge-dot.badge-md {
  padding-left: 16px;
}

.badge-dot.badge-sm:before,
.badge-dot.badge-md:before {
  height: 8px;
  width: 8px;
  margin-top: 0;
}

.badge-dot.badge-lg,
.badge-dot.badge-xl {
  padding-left: 24px;
}

.badge-dot.badge-lg:before,
.badge-dot.badge-xl:before {
  height: 12px;
  width: 12px;
  margin-top: 0;
}

.badge-dot.badge-primary {
  color: #6576ff;
}

.badge-dot.badge-secondary {
  color: #364a63;
}

.badge-dot.badge-success {
  color: #34C38F;
}

.badge-dot.badge-info {
  color: #09c2de;
}

.badge-dot.badge-warning {
  color: #F1B44C;
}

.badge-dot.badge-danger {
  color: #e85347;
}

.badge-dot.badge-dark {
  color: #1c2b46;
}

.badge-dot.badge-gray {
  color: #8091a7;
}

.badge-dot.badge-light {
  color: #b7c2d0;
}

.badge-dot.badge-lighter {
  color: #e5e9f2;
}

@media (max-width: 767.98px) {
  .badge-dot-sm {
    width: 0;
    overflow: hidden;
  }
}

@media (max-width: 413px) {
  .badge-dot-mb {
    width: 0;
    overflow: hidden;
  }
}

@media (max-width: 369px) {
  .badge-dot-xs {
    width: 0;
    overflow: hidden;
  }
}

/* ------------------------------------ end badge style ------------------------------------ */



/* ------------------------------------ tempus dominus ------------------------------------ */
/*@preserve
    * Tempus Dominus Bootstrap4 v5.1.2 (https://tempusdominus.github.io/bootstrap-4/)
    * Copyright 2016-2018 Jonathan Peterson
    * Licensed under MIT (https://github.com/tempusdominus/bootstrap-3/blob/master/LICENSE)
    */

.sr-only,
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after,
.bootstrap-datetimepicker-widget .picker-switch::after,
.bootstrap-datetimepicker-widget table th.prev::after,
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bootstrap-datetimepicker-widget {
  list-style: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 14rem;
}

@media (min-width: 576px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
  left: auto;
  right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
  left: auto;
  right: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.wider {
  width: 16rem;
}

.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}

.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
}

.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}

.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #e9ecef;
}

.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #6c757d;
}

.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #e9ecef;
  cursor: pointer;
}

.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #6c757d;
}

.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #007bff;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}

.bootstrap-datetimepicker-widget table td span:hover {
  background: #e9ecef;
}

.bootstrap-datetimepicker-widget table td span.active {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td span.old {
  color: #6c757d;
}

.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

.input-group [data-toggle="datetimepicker"] {
  cursor: pointer;
}

/* ------------------------------------ end tempus dominus ------------------------------------ */



/* ------------------------------------ date picker ------------------------------------ */
.datepicker.datepicker-dropdown {
  padding: 15px;
  width: 25%;
  max-width: 280px;
  min-width: 200px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.datepicker.datepicker-dropdown .datepicker-days {
  padding: 0;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed {
  width: 100%;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th {
  text-align: center;
  padding: 0.5rem 0;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.prev {
  color: var(--dark);
  padding-bottom: 1rem;
  padding-top: 1rem;
  background: #ffffff;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.datepicker-switch {
  color: var(--dark);
  background: #ffffff;
  padding-bottom: 0.875rem;
  padding-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.next {
  color: var(--dark);
  padding-bottom: 1rem;
  padding-top: 1rem;
  background: #ffffff;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow {
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: initial;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody {
  position: relative;
  top: 13px;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td {
  text-align: center;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day {
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  color: var(--dark);
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:hover {
  background: var(--yellow);
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.active {
  font-weight: 700;
  color: var(--dark);
  background: var(--yellow);
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.active:before {
  content: "";
  width: 28px;
  height: 25px;
  text-shadow: none;
  border-radius: 2px;
  display: block;
  margin: auto;
  vertical-align: middle;
  position: absolute;
  top: 6px;
  z-index: -1;
  left: 0;
  right: 0;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.today {
  color: #fff;
  background: transparent;
  position: relative;
  z-index: 1;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.today:before {
  content: "";
  width: 28px;
  height: 25px;
  background: #727cf5;
  color: #fff;
  border-radius: 2px;
  box-shadow: 3px 3px 6px 0 rgba(147, 127, 201, 0.2);
  -webkit-box-shadow: 3px 3px 6px 0 rgba(147, 127, 201, 0.2);
  -moz-box-shadow: 3px 3px 6px 0 rgba(147, 127, 201, 0.2);
  display: block;
  margin: auto;
  vertical-align: middle;
  position: absolute;
  top: 6px;
  z-index: -1;
  left: 0;
  right: 0;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.old.day {
  color: #d9dde3;
}

.datepicker>div {
  display: initial;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  border-radius: 2px;
}

.datepicker.input-group {
  padding: 0;
  border: 1px solid #e8ebf1;
}

.datepicker.input-group .form-control,
.datepicker.input-group select,
.datepicker.input-group .email-compose-fields .select2-container--default .select2-selection--multiple,
.email-compose-fields .select2-container--default .datepicker.input-group .select2-selection--multiple,
.datepicker.input-group .select2-container--default .select2-selection--single,
.select2-container--default .datepicker.input-group .select2-selection--single,
.datepicker.input-group .select2-container--default .select2-selection--single .select2-search__field,
.select2-container--default .select2-selection--single .datepicker.input-group .select2-search__field,
.datepicker.input-group .typeahead,
.datepicker.input-group .tt-query,
.datepicker.input-group .tt-hint {
  border: 0;
}

.datepicker.input-group .input-group-addon {
  padding: 0 10px;
  border-left: 1px solid #e8ebf1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.datepicker.input-group .input-group-addon svg {
  width: 18px;
  color: #686868;
}

.datepicker-dropdown:after {
  border-bottom-color: #fff;
}

.datepicker-dropdown:before {
  border-bottom-color: #e8ebf1;
}

.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
  top: auto;
}

.datepicker-dropdown.datepicker-orient-top:after {
  border-top-color: #fff;
}

.datepicker-dropdown.datepicker-orient-top:before {
  border-top-color: #e8ebf1;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media (max-width: 767px) {
  .datepicker.datepicker-dropdown {
    width: 25%;
    max-width: 320px;
    min-width: 280px;
  }
}

/* ------------------------------------ end date picker ------------------------------------ */