@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,600;1,400&display=swap');

:root {
  --system-font: 'Jost', sans-serif;
  --primary: #FFB82B;
  --accent: #0373BB;
  --shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
  --silver: #FAFAFA;
  --black: #000;
  --white: #fff;
  --big-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
}

@keyframes modal {
  from {
    opacity: 0;
    transform: translateY(-20%)translateX(-50%)
  }

  to {
    opacity: 1;
    transform: translateY(-50%)translateX(-50%)
  }
}

.shadow {
  box-shadow: var(--shadow);
}

strong,
b {
  font-weight: 600;
}

body {
  font-weight: 400;
  font-family: var(--system-font);
}

.flex-col {
  float: none !important;
  flex-direction: row;
}

.flex-row {
  display: flex;
}

.flex-center {
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-right {
  flex-flow: row-reverse;
}

.bar {
  position: absolute;
  top: 25px;
  left: -15px;
  list-style: none;
  display: none;
  z-index: 10;
  padding: 10px;
  background-color: var(--silver);
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.bar.open {
  z-index: 1000;
  display: block;
}

.bar li {
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 25px;
}

.bar li:hover {
  background-color: var(--accent);
  color: var(--white);
}

.bar li a {
  text-decoration: none;
}

hr {
  height: 1px;
  background-color: var(--accent);
  margin-top: 10px;
}

.gradient {
  background: rgb(3, 115, 187);
  background: -moz-linear-gradient(left, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  background: linear-gradient(to right, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0373bb', endColorstr='#afd24d', GradientType=1);
}

.primary-text {
  color: var(--primary)
}

.accent-text {
  color: var(--accent)
}

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

.black-text {
  color: var(--black);
}

.gradient-text {
  color: rgb(3, 115, 187);
  color: -moz-linear-gradient(left, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  color: -webkit-linear-gradient(left, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  color: linear-gradient(to right, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0373bb', endColorstr='#afd24d', GradientType=1);
}

.black {
  background-color: var(--black);
}

.white {
  background-color: var(--white);
}

.accent {
  background-color: var(--accent);
}

.primary {
  background-color: var(--primary);
}

.silver {
  background-color: var(--silver) !important;
}

.br-20 {
  border-radius: 20px;
}

header nav {
  position: absolute;
  right: 0;
  top: 85px;
  z-index: 40;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: inline-block;
}

header nav ul li a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2em;
  line-height: 2;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

header nav ul li a.active {
  color: var(--accent);
}

header nav ul li a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 5px;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

#usermenu {
  position: absolute;
  display: none;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 25px;
  display: none;
  top: 70px;
  right: 156px;
  z-index: 50;
  background: var(--white);
}

#usermenu ul {
  list-style: none;
}

#usermenu ul li {
  display: block;
}

#usermenu ul li a {
  text-decoration: none;
  line-height: 25px;
  display: block;
  font-weight: 600;
}

#usermenu.open {
  display: block;
}

.aside {
  min-width: 350px;
  max-width: 400px;
}

.eff.gradient {
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  bottom: 0;
  border-radius: 20px;
}

.silver.eff {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 80px
}

.options {
  padding-top: 10px;
}

.options span {
  background-color: var(--primary);
  border-radius: 20px;
  line-height: 25px;
  padding-left: 8px;
  padding-right: 8px;
  color: var(--white);
}

.slick-dots {
  margin-top: 30px;
  list-style: none;
  text-align: center;
}

body>section.pad-top-50.pad-bottom-50.gradient.relative>div.wraper.mrg-auto>div>div.col-40.flex-col.relativepc-only>div>ul>li {

  background-color: var(--white);
}

body>section.pad-top-50.pad-bottom-50.gradient.relative>div.wraper.mrg-auto>div>div.col-40.flex-col.relativepc-only>div>ul>li.slick-active {
  background-color: var(--primary);
  width: 13px;
  height: 13px;
}

#details-gallery>ul>li {
  background-color: rgba(3, 115, 187, 1);
}

#details-gallery>ul>li.slick-active {
  background-color: var(--primary);
  width: 13px;
  height: 13px;
}

body>section:nth-child(9)>div>div>ul>li {
  background-color: rgba(3, 115, 187, 1);

}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 10px;
  background-color: var(--white);
  overflow: hidden;
  line-height: inherit;
  border-radius: 10px;
  margin-left: 2px;
  margin-right: 2px;
}

.slick-dots li button {
  opacity: 0;
}

.slick-dots li.slick-active {
  background-color: var(--primary);
  width: 13px;
  height: 13px;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

footer ul {
  list-style: none;
  line-height: 1.5;
}

footer ul li a {
  text-decoration: none;
}

.category-card {
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.category-card:hover {
  box-shadow: var(--big-shadow);
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.category {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--silver);
  padding-bottom: 50px;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.category img {
  position: absolute;
  bottom: -70px;
  right: 20px;
  width: 80%;
  box-shadow: 0 0 0;
  max-width: 270px;
}

.category:hover {
  box-shadow: var(--big-shadow);
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.cars .flex-row {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0px;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  margin-bottom: 20px !important;
}

.cars .flex-row:hover {
  box-shadow: var(--big-shadow);
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.cmspage p,
.cmspage ul,
.cmspage table {
  margin-bottom: 10px;
  line-height: 1.5;
}

.copyright:before {
  content: '';
  width: 100%;
  height: 1px;
  margin: auto;
  display: block;
  background-color: var(--white);
  margin-bottom: 20px;
}

[humge-type="checkbox"],
[humge-type="radio"] {
  display: flex;
  align-items: center;
}

[humge-type="checkbox"]::before,
[humge-type="radio"]::before {
  min-width: 25px;
}

.cmspage ul,
.cmspage ol {
  padding-left: 25px;
}

dl[humge-type="accordion"] dt {
  display: block;
  background-color: var(--silver);
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
  color: var(--black);
  font-weight: 600;
}

dl[humge-type="accordion"] dd .accordText {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

dl[humge-type="accordion"] dt.active {
  background-color: var(--accent);
  color: var(--white);
}

table {
  background-color: var(--white);
  border: solid 1px var(--silver)
}

.table-container table thead {
  background: rgb(3, 115, 187);
  background: -moz-linear-gradient(left, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  background: linear-gradient(to right, rgba(3, 115, 187, 1) 0%, rgba(175, 210, 77, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0373bb', endColorstr='#afd24d', GradientType=1);
  color: var(--white);
}

table thead td {
  background-color: transparent;
}

table tr {
  border-bottom: solid 1px var(--silver)
}

.error-message {
  color: red;
  text-align: center;
  margin-top: 10px
}

.mask {
  content: '';
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  z-index: 80;
}

.modal {
  z-index: 20000;
  position: fixed;
  overflow: hidden;
  max-width: 800px;
  min-width: 300px;
  margin: auto;
  max-height: 85%;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--big-shadow);
  background-color: var(--white);
  height: auto;
  width: auto;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 90;
  animation-name: modal;
  animation-duration: 0.5s;
}

.mask.shown {
  display: block;
}

.close-modal {
  cursor: pointer;
  margin: 0 0 1rem 0;
  text-align: right;
  text-decoration: none;
  line-height: 25px;
  display: block;
}

.mobile-only {
  display: none;
}

/* #video {
  margin: 5rem;
}

#video p{

}

#video p iframe {
} */

@media (max-width:900px) {

  .pc-only {
    display: none;
  }

  html {
    overflow-x: hidden;
  }

  html,
  body {
    min-width: inherit !important;
  }

  .wraper {
    max-width: inherit;
    min-width: inherit;
    width: 100%;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .flex-row {
    display: block;
  }

  .row [class*=col-] {
    float: none !important;
    width: 100% !important;
    margin: 0;
    clear: left !important;
    margin-bottom: 20px
  }

  .logo img {
    max-width: 50%;
  }

  .mobile-aside {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    padding: 20px;
    background-color: var(--white);
    z-index: 40;
    box-shadow: var(--big-shadow);
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  }

  .mobile-aside.open {
    left: 0;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  }

  .mobile-aside .flex-row {
    display: flex !important;
  }

  .curancy-bar {
    position: absolute;
    top: 20px;
    left: 20px
  }

  .lang-bar {
    position: absolute;
    top: 20px;
    right: 20px
  }

  .user-profile {
    margin-top: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    left: 15px;
    position: relative;

    .user-profile span {
      display: none;
    }

    header nav {
      left: 0px;
      right: 0px;
      position: relative;
      top: 30px;
    }

    header nav ul li {
      display: block !important;
    }

    #usermenu {
      display: block;
      position: relative;
      top: inherit;
      right: inherit;
      box-shadow: none;
      padding: 0;
      background-color: var(--silver);
      padding: 20px;
      border-radius: 20px;
    }

    .menu-call {
      width: 30px;
      position: absolute;
      z-index: 101;
      cursor: pointer;
      padding-top: 8px;
      padding-bottom: 8px;
      display: block;
      right: 20px;
      top: 40px
    }

    .menu-call span {
      width: 100%;
      height: 2px;
      background-color: var(--accent);
      display: block;
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear
    }

    .menu-call span:before {
      content: '';
      height: 2px;
      width: 100%;
      margin-bottom: 5px;
      display: block;
      background-color: var(--accent);
      position: absolute;
      top: 0;
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear
    }

    .menu-call span:after {
      content: '';
      height: 2px;
      width: 100%;
      margin-top: 5px;
      display: block;
      background-color: var(--accent);
      position: absolute;
      bottom: 0;
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear
    }

    .menu-call.open span {
      -o-transition: all .2s linear;
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear;
      width: 0
    }

    .menu-call.open span:before {
      content: '';
      height: 2px;
      width: 100%;
      margin-bottom: 5px;
      display: block;
      background-color: var(--accent);
      position: absolute;
      top: 8px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear
    }

    .menu-call.open span:after {
      content: '';
      height: 2px;
      width: 100%;
      margin-top: 5px;
      display: block;
      background-color: var(--accent);
      position: absolute;
      bottom: 8px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear
    }

    .mobile-only {
      display: block;
    }

    #filterForm .col-50 {
      margin-bottom: 0;
    }

    *[class*=w400],
    *[class*=w500],
    *[class*=w80p] {
      width: inherit;
    }

    h1 {
      text-align: center;
    }

    .category {
      margin-bottom: 70px !important;
    }

    .results {
      display: flex !important;
      flex-wrap: wrap;
    }

    .results-data {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
    }

    .aside {
      width: 100%;
      min-width: 100%;
      max-width: 100%;
    }

    [humge-type="checkbox"]::before,
    [humge-type="radio"]::before {
      vertical-align: middle;
      width: 25px;
      height: 25px;
      border: solid 1px #acacac;
      display: inline-block;
      margin-right: 5px;
      position: relative;
      background-color: #fff;
      z-index: -2;
      content: "";
      position: absolute;
      top: 0
    }

    [humge-type="checkbox"] label,
    [humge-type="radio"] label {
      padding-left: 40px;
    }

    [humge-type="checkbox"],
    [humge-type="radio"] {
      min-height: 27px;
    }
  }
}