@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  border: unset;
  box-sizing: border-box;
}

:root {
  --primary-color: #c1262c;
  --secondary-color: #871b21;
  --white-color: #ffffff;
  --background-gray: #e6e6e6;
  --background-lite-gray: #f8f8fa;
  --background-black: #1b1b1b;
  --section-background-color: #f5f5f5;
  --black-color: #020b14;
  --black-75: #4a4a4b;
  --black-50: #878787;
  --black-25: #c2c2c3;
  --black-10: #e7e7e7;
  --black-5: #f3f3f3;
  --link-color-gray: #acacac;
  --danger-color: #d22e19;
  --success-color: #34ba2b;
  --nav-height: 100px;
  --page-horizontal-padding: 50px;
  --main-font: "Roboto", sans-serif;
}

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

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

.color-gray {
  color: var(--gray-color);
}

html {
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  color: var(--black-color);
  overflow-x: hidden;
  background-color: white;
  height: 100%;
  font-size: 16px;
  /*   font-family: "Source Sans Pro", sans-serif; */
  font-family: var(--main-font);
}

button {
  outline: none;
  background-color: transparent;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

.primary-btn {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background-color 0.6s, color 0.6s;
}
.primary-btn span {
  position: relative;
  z-index: 2;
}
.primary-btn.disabled, .primary-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.primary-btn .loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
}
.primary-btn .loader:after {
  border-color: transparent var(--black-color) var(--black-color);
}
.primary-btn.primary-btn--loading .loader {
  display: block;
}
.primary-btn.primary-btn--loading span {
  opacity: 0;
}
.primary-btn.primary-btn--black {
  background-color: var(--black-color);
  color: white;
}
.primary-btn.primary-btn--border {
  border: 3px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  padding: 13px 29px;
}
.primary-btn.primary-btn--border:hover {
  background-color: var(--secondary-color);
  color: white;
}
.primary-btn.primary-btn--border.primary-btn--white {
  color: white;
  border: 3px solid white;
}
.primary-btn.primary-btn--border.primary-btn--white:hover {
  background-color: white;
  color: var(--primary-color);
}
.primary-btn.primary-btn--small {
  padding: 8px 24px;
  font-size: 16px;
}
.primary-btn:hover {
  background-color: var(--secondary-color);
}

h1,
.h1 {
  font-size: 92px;
  font-weight: 700;
}

h2 {
  font-size: 70px;
  font-weight: 700;
}

h3 {
  font-size: 52px;
  font-weight: 700;
}

h4 {
  font-size: 40px;
  font-weight: 700;
}

h5 {
  font-size: 30px;
  font-weight: 700;
}

h6 {
  font-size: 22px;
  font-weight: 600;
}

p {
  font-size: 22px;
}

.text-align-center {
  text-align: center;
}

.aspect-ratio-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: contain;
  object-position: center;
}

.max-width-content-1650 {
  width: 100%;
  max-width: calc(1650px + var(--page-horizontal-padding) + var(--page-horizontal-padding));
  margin: 0px auto;
  padding: 0px var(--page-horizontal-padding);
}

.max-width-content-1380 {
  width: 100%;
  max-width: calc(1380px + var(--page-horizontal-padding) + var(--page-horizontal-padding));
  margin: 0px auto;
  padding: 0px var(--page-horizontal-padding);
}

.max-width-content-1080 {
  width: 100%;
  max-width: 1120px;
  margin: 0px auto;
  padding: 0px 20px;
}

.in-clip-path {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.animated-element {
  visibility: hidden;
}

@media only screen and (max-width: 1600px) {
  h1,
  .h1 {
    font-size: 76px;
  }
  h2 {
    font-size: 56px;
  }
  h3 {
    font-size: 42px;
  }
  h4 {
    font-size: 32px;
  }
  h5 {
    font-size: 24px;
  }
  p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1300px) {
  h1,
  .h1 {
    font-size: 67px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 38px;
  }
  h4 {
    font-size: 28px;
  }
  h5 {
    font-size: 22px;
  }
  p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  :root {
    --page-horizontal-padding: 25px;
  }
  h1,
  .h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 38px;
  }
  h4 {
    font-size: 28px;
  }
  h5 {
    font-size: 22px;
  }
  p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: 42px;
  }
  p {
    font-size: 16px;
  }
}
/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */
header {
  min-height: var(--nav-height);
  position: fixed;
  top: 0px;
  left: 0%;
  width: 100%;
  z-index: 22;
  transition: background-color 0.6s;
}
header:not(.scrolled):not(.menu-open) {
  transition: background-color 0.6s 1.5s;
}
header.scrolled, header.menu-open {
  background-color: rgb(255, 255, 255);
}

.header-content-wrapper {
  display: grid;
  align-items: center;
  min-height: var(--nav-height);
  grid-template-columns: 180px 1fr auto;
  column-gap: 24px;
}

.logo-link {
  color: var(--black-color);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 180px;
}
.logo-link img {
  width: 100%;
}

nav {
  justify-self: center;
  display: flex;
}
nav a + a {
  margin-left: 60px;
}
nav .primary-btn {
  display: none;
}
nav a {
  font-size: 22px;
  color: var(--black-color);
  font-weight: 500;
}
nav a span {
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--black-color) 0%, var(--black-color) 100%, var(--black-color) 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 1.1em, 0 1.1em;
  background-repeat: no-repeat;
  transition: background-size 600ms;
}
nav a:hover span {
  background-size: 0 0.1em, 100% 0.1em;
}
nav a:last-child {
  display: none;
  margin-bottom: 20px;
}

.menu-btn {
  display: none;
  height: 26px;
  width: 32px;
  cursor: pointer;
  top: 17px;
  left: 20px;
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
}
.menu-btn div {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}
.menu-btn div:nth-child(1) {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out, width 0.4s ease-in-out;
}
.menu-btn div:nth-child(2) {
  transition: transform 0.2s ease-in-out;
}
.menu-btn div:nth-child(3) {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out, width 0.4s ease-in-out;
}

.menu-open .menu-btn div:nth-child(1) {
  transform: rotate(35deg);
  width: 122%;
}
.menu-open .menu-btn div:nth-child(2) {
  transform: scaleY(0);
}
.menu-open .menu-btn div:nth-child(3) {
  transform: rotate(-35deg);
  width: 122%;
}

.offers-modal {
  position: fixed;
  display: flex;
  z-index: 100;
  bottom: 26px;
  left: -240px;
  align-items: flex-start;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
  transition: left 0.6s;
}
.offers-modal.open {
  left: 0px;
}
.offers-modal.open .offers-modal-btn {
  background-color: var(--primary-color);
  color: white;
}
.offers-modal.open .offers-modal-btn svg path {
  fill: white;
}
.offers-modal.open .offers-modal-btn .offers-icon {
  animation-iteration-count: 0;
}

.offers-modal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 8px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: color 0.6s, background-color 0.6s;
  cursor: pointer;
}
.offers-modal-btn svg path {
  transition: fill 0.6s;
}
.offers-modal-btn h6 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.offers-modal-btn .offers-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  animation: offer-icon-shake 3s;
  animation-iteration-count: infinite;
}
.offers-modal-btn:hover {
  background-color: var(--primary-color);
  color: white;
}
.offers-modal-btn:hover svg path {
  fill: white;
}

.offer-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-slide h6 {
  text-align: center;
}
.offer-slide p {
  font-size: 18px;
  margin-top: 16px;
  text-align: center;
}

.offers-content {
  background-color: white;
  padding: 16px;
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  border-bottom-right-radius: 15px;
}
.offers-content .offers-swiper-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
}
.offers-content .offers-pagination {
  margin-bottom: 16px;
}
.offers-content .swiper-pagination-lock {
  display: none;
}
.offers-content .primary-btn {
  margin-top: auto;
}

@keyframes offer-icon-shake {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  2.5% {
    transform: rotate(8deg);
  }
  5%, 10%, 15% {
    transform: rotate(-10deg);
  }
  7.5%, 12.5%, 17.5% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  22.5% {
    transform: rotate(8deg);
  }
  25% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
}
@media only screen and (max-width: 1500px) {
  nav a + a {
    margin-left: 32px;
  }
  .header-content-wrapper {
    grid-template-columns: 120px 1fr auto;
  }
}
@media only screen and (max-width: 1240px) {
  nav {
    position: absolute;
    flex-direction: column;
    width: 100%;
    top: 100%;
    padding: 0px;
    overflow-y: hidden;
    max-height: 0;
    background-color: transparent;
    align-items: center;
    transition: border 0.6s, max-height 0.1s 1.6s;
  }
  nav:after {
    position: absolute;
    width: 100%;
    height: 0%;
    content: "";
    background-color: white;
    transition: height 0.6s 1s;
    border-bottom: 2px solid var(--primary-color);
    box-sizing: border-box;
  }
  nav:before {
    position: absolute;
    width: 0%;
    height: 3px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background-color: var(--primary-color);
    transition: width 0s 2s, opacity 0.6s 1s;
    z-index: 3;
    opacity: 0;
  }
  nav a + a {
    margin-top: 8px;
    margin-left: 0px;
  }
  nav a:first-child {
    margin-top: 20px;
  }
  nav a:nth-child(6) {
    margin-bottom: 20px;
  }
  nav a:last-child {
    display: none;
    margin-bottom: 20px;
  }
  nav a {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s calc(0.2s + (var(--total) - var(--index)) * 0.1s);
  }
  nav a span {
    display: block;
    transform: translateY(100%);
    transition: background-size 600ms, transform 0.6s calc(0.2s + (var(--total) - var(--index)) * 0.1s);
  }
  .menu-btn {
    display: flex;
  }
  .header-content-wrapper {
    grid-template-columns: 32px 1fr auto;
  }
  .header-content-wrapper .primary-btn {
    margin-left: auto;
  }
  .menu-open nav {
    /* display: flex; */
    max-height: calc(100vh - var(--nav-height));
    transition: border 0.6s;
  }
  .menu-open nav:after {
    height: 100%;
    transition: height 0.6s;
  }
  .menu-open nav:before {
    width: 100%;
    opacity: 1;
    transition: width 0.6s;
  }
  .menu-open nav a {
    opacity: 1;
    transition: opacity 0.6s calc(0.2s + var(--index) * 0.1s);
  }
  .menu-open nav a span {
    transform: translateY(0px);
    transition: background-size 600ms, transform 0.6s calc(0.2s + var(--index) * 0.1s);
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --nav-height: 68px;
  }
  .reserve-btn {
    padding: 8px 16px;
  }
}
@media only screen and (max-width: 500px) {
  .reserve-btn {
    display: none;
  }
  nav a:nth-child(6) {
    margin-bottom: 0px;
  }
  nav a:last-child {
    display: block;
    margin-top: 16px;
    color: var(--primary-color);
  }
  .header-content-wrapper {
    grid-template-columns: auto 32px;
  }
  .header-content-wrapper .menu-btn {
    grid-column: 2;
  }
  .header-content-wrapper .logo-link {
    grid-column: 1;
    grid-row: 1;
  }
  .offers-modal-btn h6 {
    font-size: 16px;
  }
  .offers-modal-btn .offers-icon {
    width: 20px;
    height: 20px;
  }
}
/* -------------------------------------------------------------------------- */
/*                                   INDEX                                    */
/* -------------------------------------------------------------------------- */
.head-section {
  /* height: 100vh; */
  padding-top: 200px;
  padding-bottom: 200px;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  background: #e6e6e6;
  position: relative;
}

.head-section-text {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: center;
  padding-bottom: 120px;
  position: relative;
  z-index: 3;
}
.head-section-text h1 {
  width: 60%;
  max-width: 860px;
  line-height: 1.06em;
}
.head-section-text p {
  width: 50%;
  margin-top: 32px;
  max-width: 480px;
  color: var(--black-75);
}

.head-car {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}
.head-car svg {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 57%;
  height: 100%;
  max-width: 1070px;
}
.head-car img {
  position: absolute;
  top: 55%;
  transform: translate(0%, -50%);
  right: 0px;
  z-index: 2;
  max-width: 920px;
  width: 55%;
  object-fit: contain;
  object-position: center;
}

/* -------------------------------------------------------------------------- */
/*                                   WHY US                                   */
/* -------------------------------------------------------------------------- */
.why-us-section {
  background-color: var(--white-color);
  padding-top: 170px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.why-us-section-content {
  position: relative;
  z-index: 2;
}

.title-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-subtitle h3,
.title-subtitle p {
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  width: 100%;
  padding-top: 32px;
}

.why-us-item {
  display: flex;
  flex-direction: column;
  max-width: 380px;
  align-items: center;
}
.why-us-item:nth-child(2) {
  margin-top: 80px;
}
.why-us-item h5,
.why-us-item p {
  margin-top: 16px;
  text-align: center;
}
.why-us-item .why-icon {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 80px;
  height: 80px;
  /*   background: #ffffff;
  box-shadow: 1px 1px 19px rgba(0, 0, 0, 0.15); */
  border-radius: 65px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.why-circles {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-circles div {
  border-radius: 50%;
}
.why-circles div:nth-child(1) {
  width: 604px;
  height: 604px;
  border: 3px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.015;
}
.why-circles div:nth-child(2) {
  width: 888px;
  height: 888px;
  border: 3px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.01;
}
.why-circles div:nth-child(3) {
  width: 1187px;
  height: 1187px;
  border: 3px solid var(--black-color);
  opacity: 0.005;
}

/* -------------------------------------------------------------------------- */
/*                                OUR FLEET                                   */
/* -------------------------------------------------------------------------- */
.our-fleet-section {
  background-color: var(--background-lite-gray);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.our-fleet-section .section-divider-top {
  background-color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
}
.our-fleet-section .section-divider-top:after {
  display: block;
  content: "";
  background-color: #f8f8fa;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
}
.our-fleet-section .section-divider-top svg {
  width: 100%;
  height: 100%;
}
.our-fleet-section .section-divider-bottom {
  background-color: white;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
}
.our-fleet-section .section-divider-bottom:after {
  display: block;
  content: "";
  background-color: #f8f8fa;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0px;
}
.our-fleet-section .section-divider-bottom svg {
  width: 100%;
  height: 100%;
}

.our-fleet-section-content {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.car-item {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  position: relative;
  margin: 0px auto;
}
.car-item .primary-btn {
  margin-top: 26px;
}
.car-item .car-item-top {
  background-color: var(--white-color);
  padding: 24px;
  border-radius: 26px;
  z-index: 2;
}
.car-item .car-image {
  width: 100%;
}
.car-item .car-image img {
  width: 100%;
  object-fit: contain;
}

.car-name {
  color: black;
  font-size: 22px;
  font-weight: 600;
}
.car-name + span {
  color: var(--black-75);
  font-size: 16px;
}

.car-price-wrapper {
  display: flex;
}
.car-price-wrapper span {
  font-weight: 600;
  font-size: 22px;
}
.car-price-wrapper .price {
  font-weight: 700;
  font-size: 40px;
  margin-left: 4px;
}
.car-price-wrapper .days {
  font-weight: 600;
  font-size: 22px;
  align-self: flex-end;
  margin-bottom: 10px;
  margin-left: 4px;
}

.car-info {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.car-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
}
.car-info-item span {
  margin-top: 8px;
}

.cars-swiper {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 164px 1fr 164px;
  width: 100%;
}
.cars-swiper .swiper-arrow {
  align-self: center;
  justify-self: center;
}
.cars-swiper .swiper-arrow.swiper-button-lock {
  visibility: hidden;
}

.cars-pagination {
  display: none !important;
  margin-top: 40px;
}

.cars-swiper-wrapper {
  overflow: hidden;
}

.swiper-arrow {
  flex-shrink: 0;
  cursor: pointer;
  width: 52px;
  height: 52px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
}
.swiper-arrow.swiper-button-disabled {
  opacity: 0.6;
  cursor: unset;
}

.swiper-arrow-right {
  padding-right: 0px;
  padding-left: 4px;
}
.swiper-arrow-right svg {
  transform: scale(-1);
}

/* -------------------------------------------------------------------------- */
/*                            ABOUT SECTION                                   */
/* -------------------------------------------------------------------------- */
.about-section {
  /*  background-color: var(--section-background-color); */
  position: relative;
  overflow: hidden;
  padding: 120px 0px;
}
.about-section .about-section-background {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.about-section .about-section-background svg {
  width: 100%;
  height: 100%;
}

.about-section-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.about-image-wrapper {
  width: 100%;
  max-width: 512px;
  position: relative;
}
.about-image-wrapper:before {
  content: "";
  display: block;
  padding-top: 26%;
  width: 100%;
}
.about-image-wrapper img {
  width: 100%;
  /*  height: 100%; */
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 2;
  color: var(--black-color);
  margin-left: 80px;
}
.about-text-wrapper p {
  margin-top: 24px;
}

/* -------------------------------------------------------------------------- */
/*                            LOCATIONS SECTION                               */
/* -------------------------------------------------------------------------- */
.locations-section {
  padding: 120px 0px;
  position: relative;
  overflow: hidden;
  background-color: var(--background-lite-gray);
}
.locations-section .section-divider-top {
  background-color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
}
.locations-section .section-divider-top:after {
  display: block;
  content: "";
  background-color: #f8f8fa;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
}
.locations-section .section-divider-top svg {
  width: 100%;
  height: 100%;
}

.locations-section-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.05;
}
.locations-section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.locations-section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  padding: 0px var(--page-horizontal-padding);
  margin: 0px auto;
  padding-top: 80px;
}

.locations-section-slider-container {
  width: 100%;
}

.locations-slider-wrapper {
  padding: 20px 0px;
  width: 100%;
  max-width: 1350px;
  margin: 0px auto;
  margin-top: 120px;
}

.location-slide {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  width: 320px;
  transition: transform 0.6s, opacity 0.6s;
  will-change: transform;
}
.location-slide:before {
  width: 100%;
  content: "";
  display: block;
  padding-top: 132%;
}
.location-slide:hover .location-info {
  transform: translateY(0px);
}
.location-slide:hover .location-info p,
.location-slide:hover .location-info a {
  transform: translateY(0px);
}
.location-slide:hover:after {
  opacity: 0.4;
}
.location-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.15;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: opacity 0.6s;
}
.location-slide > img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.location-slide:not(.swiper-slide-visible) {
  opacity: 0.6;
}

.location-info-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
  justify-content: flex-end;
  position: absolute;
  top: 0px;
  left: 0px;
  color: white;
  z-index: 2;
}

.location-info {
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.6s;
  will-change: transform;
}
.location-info p {
  transform: translateY(40px);
  transition: transform 0.6s;
  will-change: margin-top;
}
.location-info h5 {
  transform: translateY(-100%);
}
.location-info a {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-size: 18px;
  transform: translateY(40px);
  transition: transform 0.6s;
}
.location-info a:hover img {
  margin-left: 16px;
}
.location-info a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: center;
  margin-left: 8px;
  transition: margin-left 0.6s;
}

.swiper-general-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.swiper-general-pagination.swiper-general-pagination--small-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: transparent;
  position: relative;
  margin: 5px !important;
  opacity: 1 !important;
  flex-shrink: 0;
}
.swiper-general-pagination.swiper-general-pagination--small-bullets .swiper-pagination-bullet:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-general-pagination.swiper-general-pagination--small-bullets .swiper-pagination-bullet:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.swiper-general-pagination.swiper-general-pagination--small-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
}
.swiper-general-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  background-color: transparent;
  position: relative;
  margin: 5px !important;
  opacity: 1 !important;
  flex-shrink: 0;
}
.swiper-general-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-general-pagination .swiper-pagination-bullet:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.swiper-general-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
}

.locations-pagination {
  width: unset !important;
  margin-top: 48px;
}

/* -------------------------------------------------------------------------- */
/*                            CONTACT US SECTIO                               */
/* -------------------------------------------------------------------------- */
.contact-us-section {
  background-color: var(--primary-color);
  padding: 32px 0px;
}

.contact-us-section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
}
.contact-us-section-content .primary-btn {
  margin-top: 26px;
}

/* -------------------------------------------------------------------------- */
/*                            RESERVATION BAR                                 */
/* -------------------------------------------------------------------------- */
.reservation-bar {
  width: 95%;
  max-width: 1650px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%);
  background: #fefefe;
  box-shadow: 0px 4px 15px -2px rgba(0, 0, 0, 0.05);
  height: 144px;
  border-radius: 87px;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 20px;
}

.search-btn {
  width: 93px;
  height: 93px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.6s;
}
.search-btn:hover {
  background-color: var(--secondary-color);
}
.search-btn svg {
  transition: opacity 0.2s;
}
.search-btn.loading {
  pointer-events: none;
}
.search-btn.loading .loader {
  opacity: 1;
  transition: opacity 0.6s 0.2s;
}
.search-btn.loading svg {
  transition: opacity 0.2s 0.2s;
}
.search-btn .loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search-btn .loader:after {
  border-color: transparent white white;
}

.reservation-location-wrapper,
.reservation-date-wrapper {
  display: flex;
  align-items: center;
  width: 50%;
}
.reservation-location-wrapper .icon,
.reservation-date-wrapper .icon {
  margin-right: 48px;
  width: 36px;
  height: 39px;
  flex-shrink: 0;
}
.reservation-location-wrapper .icon svg,
.reservation-date-wrapper .icon svg {
  width: 100%;
  height: 100%;
}

.reservation-location-wrapper {
  padding-left: 44px;
  padding-right: 22px;
}

.reservation-date-wrapper {
  margin-left: auto;
  padding-left: 22px;
  padding-right: 93px;
  justify-content: center;
}
.reservation-date-wrapper .reservation-input-wrapper {
  max-width: 195px;
}

.reservation-input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 256px;
}
.reservation-input-wrapper + .reservation-input-wrapper {
  margin-left: 64px;
}
.second-icon + .reservation-input-wrapper {
  margin-left: 64px;
}
.reservation-input-wrapper label {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.reservation-input-wrapper .selected-date,
.reservation-input-wrapper .selected-time {
  outline: none;
  cursor: pointer;
  font-family: var(--main-font);
  font-size: 22px;
  color: var(--black-color);
  font-weight: 600;
  position: relative;
  display: flex;
  min-width: 0px;
  padding: 0px;
}
.reservation-input-wrapper .selected-time {
  width: 100%;
  max-width: 60px;
  caret-color: transparent;
}
.reservation-input-wrapper .selected-date {
  max-width: 124px;
}
.reservation-input-wrapper .input-row {
  display: flex;
  align-items: center;
}
.reservation-input-wrapper .input-row-divider {
  background-color: var(--black-color);
  width: 1px;
  height: 26px;
  flex-shrink: 0;
  margin: 0px 6px;
}
.reservation-input-wrapper + .icon {
  display: none;
}

.inputs-divider {
  width: 12px;
  height: 3px;
  margin: 0px 16px;
  margin-top: 36px;
  background: var(--black-color);
  position: relative;
}

.reservation-wrappers-divider {
  width: 3px;
  height: 80%;
  background-color: var(--black-5);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.daterangepicker .drp-buttons .btn.applyBtn {
  background-color: var(--primary-color);
  color: white;
}

/* -------------------------------------------------------------------------- */
/*                                CUSTOM SELECT                               */
/* -------------------------------------------------------------------------- */
/* The container must be positioned relative: */
.custom-select {
  position: relative;
  user-select: none;
  transition: height 0.6s;
}

.custom-select.disabled {
  pointer-events: none;
}
.custom-select.disabled .select-selected {
  opacity: 0.6;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.custom-select--border-bottom .select-selected {
  padding: 18px 10px;
  min-height: 65px;
  background-color: white;
  font-size: 22px;
  border-bottom: 2px solid var(--primary-color);
}

.custom-select--icon .icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 8px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.custom-select--icon .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.custom-select--icon .select-selected {
  padding: 18px 10px;
  min-height: 65px;
  background-color: white;
  font-weight: 500;
}
.custom-select--icon .select-selected:after {
  display: none;
}

/* Style the arrow inside the select element: */
.select-selected {
  position: relative;
  min-height: 35px;
}
.select-selected span {
  position: relative;
  z-index: 2;
}
.select-selected:hover:before {
  right: unset;
  left: 0px;
  width: 100%;
}
.select-selected:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 18px;
  background-image: url("../img/svg/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform: translateY(-50%) rotate(180deg);
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: var(--black-color);
  /*     background-color: white; */
  cursor: pointer;
  font-weight: 600;
  font-size: 22px;
  line-height: 1em;
}

.select-items div.disabled {
  display: none;
}

.select-items div {
  padding: 18px 10px;
  font-size: 16px;
}

.select-items-white .select-items div {
  background-color: #ffffff;
}

.select-items {
  /*   transition: max-height 0.6s; */
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 3px 9px -3px hsla(0, 0%, 0%, 0.3);
}
.select-items div + div {
  border-top: 1px solid transparent;
  border-color: var(--black-color) transparent transparent transparent;
}

.select-selected {
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 30px;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.select-items ::-webkit-scrollbar {
  width: 10px;
}
.select-items ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.select-items ::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
.select-items ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Hide the items when the select box is closed: */
.select-hide {
  max-height: 0;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--secondary-color) !important;
  color: white !important;
}

@media only screen and (max-width: 1600px) {
  .cars-swiper {
    grid-template-columns: 110px 1fr 110px;
  }
}
@media only screen and (max-width: 1400px) {
  .head-section {
    padding-top: 150px;
    padding-bottom: 90px;
  }
  .reservation-bar {
    flex-direction: column;
    height: unset;
    width: calc(100% - var(--page-horizontal-padding) - var(--page-horizontal-padding));
    max-width: 720px;
    padding: 30px;
    padding-bottom: 70px;
    border-radius: 36px;
  }
  .reservation-input-wrapper + .icon {
    display: flex;
    margin-left: 32px;
  }
  .second-icon + .reservation-input-wrapper {
    margin-left: unset;
  }
  .reservation-location-wrapper .icon,
  .reservation-date-wrapper .icon {
    width: 26px;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-btn {
    top: 100%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .reservation-location-wrapper {
    width: 100%;
    padding: unset;
  }
  .reservation-wrappers-divider {
    width: 100%;
    height: 3px;
    margin: 12px auto;
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
  }
  .reservation-date-wrapper {
    margin-left: unset;
    width: 100%;
    padding: unset;
  }
  .reservation-date-wrapper .inputs-divider {
    display: none;
  }
  .reservation-date-wrapper,
  .reservation-location-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
  }
  .why-us-section {
    padding-top: 220px;
  }
  .cars-swiper {
    grid-template-columns: 76px 1fr 76px;
  }
}
@media only screen and (max-width: 1100px) {
  .about-section .about-section-background {
    width: 150%;
  }
}
@media only screen and (max-width: 1024px) {
  .about-text-wrapper {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .cars-swiper {
    grid-template-columns: 62px 1fr 62px;
  }
  .cars-swiper-wrapper {
    width: 100%;
    max-width: 600px;
    justify-self: center;
  }
  .swiper-arrow {
    width: 42px;
    height: 42px;
  }
  .swiper-general-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
  }
  .swiper-general-pagination .swiper-pagination-bullet:before {
    width: 15px;
    height: 15px;
  }
  .about-section {
    padding: var(--nav-height) 0px;
  }
  .our-fleet-section {
    padding: var(--nav-height) 0px;
  }
  .our-fleet-section .section-divider-top,
  .our-fleet-section .section-divider-bottom {
    height: var(--nav-height);
  }
  .locations-section {
    padding: var(--nav-height) 0px;
  }
  .locations-section .section-divider-top {
    height: var(--nav-height);
  }
}
@media only screen and (max-width: 800px) {
  .head-section {
    padding-bottom: 220px;
  }
  .head-section-text {
    padding-bottom: 0px;
  }
  .head-section-text h1 {
    width: 60%;
  }
  .head-section-text p {
    display: none;
  }
  .reservation-input-wrapper {
    max-width: 100%;
  }
  .reservation-input-wrapper label {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .reservation-input-wrapper .select-selected {
    font-size: 18px;
  }
  .reservation-input-wrapper .selected-date,
  .reservation-input-wrapper .selected-time {
    font-size: 18px;
  }
  .reservation-input-wrapper .selected-date {
    max-width: 100px;
  }
  .reservation-location-wrapper .icon,
  .reservation-date-wrapper .icon {
    width: 20px;
  }
  .search-btn {
    width: 78px;
    height: 78px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
    padding-top: 64px;
  }
  .why-us-item:nth-child(2) {
    grid-row: 1;
    grid-column: 1/span 2;
    margin-top: unset;
    width: 50%;
    justify-self: center;
  }
  .about-section .about-section-background {
    width: 200%;
  }
  .about-section-content {
    flex-direction: column;
  }
  .about-text-wrapper {
    margin-left: 0px;
    margin-top: 48px;
  }
}
@media only screen and (max-width: 700px) {
  .cars-swiper {
    grid-template-columns: 62px 1fr 62px;
  }
  .cars-swiper-wrapper {
    max-width: 300px;
  }
  .locations-slider-wrapper {
    max-width: 400px;
  }
}
@media only screen and (max-width: 660px) {
  .head-car img {
    width: 100%;
    top: 50%;
  }
  .head-car svg {
    width: 100%;
    bottom: 0px;
  }
  .head-section {
    height: unset;
  }
  .head-section-text h1 {
    width: 100%;
    text-align: center;
    display: inline;
    color: white;
    text-shadow: 0 2px 5px black;
  }
  .reservation-bar {
    max-width: 365px;
  }
  .reservation-date-wrapper,
  .reservation-location-wrapper {
    grid-template-columns: auto 1fr;
    row-gap: 24px;
  }
  .reservation-input-wrapper + .icon {
    margin-left: 0px;
  }
  .why-us-section {
    padding-top: 320px;
  }
  .why-us-grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 64px;
    justify-items: center;
  }
  .why-us-item:nth-child(2) {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .head-section {
    padding-bottom: 280px;
  }
  .about-section {
    /* padding: 300px 0px; */
  }
  .about-section .about-section-background {
    width: 300%;
  }
  .reservation-date-wrapper .reservation-input-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .cars-swiper {
    grid-template-columns: 1fr;
  }
  .cars-swiper .swiper-arrow {
    display: none !important;
  }
  .cars-pagination {
    display: flex !important;
  }
}
@media only screen and (max-width: 400px) {
  .reservation-bar {
    width: calc(100% - 20px);
    padding: 20px;
    padding-bottom: 70px;
  }
  .reservation-location-wrapper .icon,
  .reservation-date-wrapper .icon {
    width: 20px;
  }
}
@media (hover: none) {
  .location-slide .location-info {
    transform: translateY(0px);
  }
  .location-slide .location-info p,
  .location-slide .location-info a {
    transform: translateY(0px);
  }
  .location-slide:after {
    opacity: 0.4;
  }
}
/* -------------------------------------------------------------------------- */
/*                                  FOOTER                                    */
/* -------------------------------------------------------------------------- */
footer {
  background: var(--background-black);
  padding-top: 100px;
  font-size: 22px;
}
footer a {
  color: var(--secondary-color);
}
footer a:hover {
  text-decoration: underline;
}

.footer-social {
  padding-top: 36px;
  display: flex;
  margin-top: auto;
  align-items: center;
}
.footer-social a {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background-color 0.6s;
}
.footer-social a:hover {
  background-color: var(--primary-color);
}
.footer-social svg {
  width: 100%;
  height: 100%;
}
.footer-social a + a {
  margin-left: 16px;
}

.footer-top {
  display: flex;
}

.footer-logo-link {
  width: 260px;
}
.footer-logo-link img {
  width: 100%;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-right {
  display: grid;
  padding-left: 64px;
  margin-left: auto;
  width: 100%;
  max-width: 1100px;
  column-gap: 64px;
  grid-template-columns: repeat(3, auto);
}

.footer-links-column {
  display: flex;
  flex-direction: column;
}
.footer-links-column h6 {
  color: white;
  padding-bottom: 32px;
}
.footer-links-column a {
  font-size: 18px;
  color: var(--link-color-gray);
}
.footer-links-column a:hover {
  text-decoration: underline;
}
.footer-links-column a + a {
  margin-top: 16px;
}
.footer-links-column .contact-info-item {
  display: flex;
}
.footer-links-column .contact-info-item .icon {
  width: 20px;
  height: 20px;
  margin-right: 24px;
}
.footer-links-column .contact-info-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer-links-column .contact-info-item + .contact-info-item {
  margin-top: 16px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--link-color-gray);
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid #393939;
  margin-top: 48px;
}

@media only screen and (max-width: 1024px) {
  .footer-left {
    align-items: center;
    padding-bottom: 80px;
  }
  .footer-right {
    padding-left: 0px;
    justify-content: space-between;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 800px) {
  .footer-right {
    grid-template-columns: 1fr;
    row-gap: 64px;
    justify-items: center;
  }
  .footer-right .footer-links-column:first-child {
    display: none;
  }
  .footer-links-column {
    align-items: center;
  }
  .footer-links-column .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links-column .contact-info-item .icon {
    margin-right: 0px;
    margin-bottom: 16px;
  }
}
/* -------------------------------------------------------------------------- */
/*                              CONTACT US                                    */
/* -------------------------------------------------------------------------- */
.header-padding {
  padding-top: calc(var(--nav-height) + 32px);
}

.page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-message {
  color: var(--black-25);
}

.custom-checkbox {
  display: flex;
  align-items: center;
  position: relative;
}
.custom-checkbox span,
.custom-checkbox a {
  color: var(--black-color);
  font-weight: normal;
  padding-left: 15px;
  font-size: 16px;
  font-family: var(--font-manrope);
}
.custom-checkbox a {
  padding-left: 0px;
  text-decoration: underline;
}
.custom-checkbox .checkbox-wrapper {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
}
.custom-checkbox .checkbox-wrapper input {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  left: 0px;
  top: 0px;
  opacity: 0;
}
.custom-checkbox .checkbox-wrapper.link-checkbox input {
  display: none;
}
.custom-checkbox .checkbox-wrapper .toggle {
  width: 100%;
  height: 100%;
  border: 2px solid var(--black-75);
  border-radius: 50%;
  background-color: white;
  position: relative;
  transition: background 0.6s;
}
.custom-checkbox .checkbox-wrapper .toggle:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 4px;
  height: 11px;
  background-color: unset;
  border: solid var(--black-75);
  border-radius: 0;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s;
}
.custom-checkbox .checkbox-wrapper input:checked + .toggle:after {
  opacity: 1;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 810px;
  padding: 0px 20px;
  margin: 0px auto;
}

#contact-form {
  padding-top: 88px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 16px;
  position: relative;
}

.two-columns {
  grid-column: 1/span 2;
}

.contact-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-bottom .primary-btn {
  margin-top: 32px;
  min-width: 320px;
}

.input-column {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.input-column label {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-75);
  margin-bottom: 8px;
}
.input-column.input-column--white > * {
  color: white;
}
.input-column input,
.input-column textarea {
  outline: none;
  padding: 10px;
  background-color: var(--white-color);
  width: 100%;
  font-size: 18px;
  min-height: 60px;
  color: var(--black-color);
  min-width: unset;
  font-family: var(--main-font);
  font-weight: normal;
  border-bottom: 2px solid var(--primary-color);
}
.input-column input::-webkit-input-placeholder,
.input-column textarea::-webkit-input-placeholder {
  /* Edge */
  color: var(--black-50);
  font-family: var(--main-font);
  font-weight: normal;
  font-size: 18px;
}
.input-column input:-ms-input-placeholder,
.input-column textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--black-50);
  font-family: var(--main-font);
  font-weight: normal;
  font-size: 18px;
}
.input-column input::-ms-input-placeholder,
.input-column textarea::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--black-50);
  font-family: var(--main-font);
  font-weight: normal;
  font-size: 18px;
}
.input-column input::placeholder,
.input-column textarea::placeholder {
  color: var(--black-50);
  font-family: var(--main-font);
  font-weight: normal;
  font-size: 18px;
}
.input-column textarea {
  resize: none;
  height: 170px;
}

.contact-map-section {
  margin-top: 80px;
  height: 520px;
  border-radius: 38px;
  overflow: hidden;
}
.contact-map-section #map {
  border-radius: 38px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  width: 100%;
  height: 100%;
}

.success-message-container {
  font-size: 22px;
  text-align: center;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
}

@media only screen and (max-width: 500px) {
  #contact-form {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact-form .two-columns {
    grid-column: 1/span 1;
  }
  .contact-bottom {
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
  }
  .contact-bottom .primary-btn {
    margin-top: 24px;
    min-width: unset;
    width: 100%;
  }
}
/* -------------------------------------------------------------------------- */
/*                              RESERVATION                                   */
/* -------------------------------------------------------------------------- */
.reservation-steps-wrapper {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  justify-content: center;
  padding-top: 64px;
}

.reservation-step-divider {
  width: 120px;
  height: 2px;
  position: relative;
  background-color: var(--primary-color);
}

.reservation-step {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  justify-content: center;
  text-align: center;
  width: 65px;
  height: 65px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}
.reservation-step span {
  font-size: 32px;
  font-weight: bold;
}
.reservation-step.reservation-step--active, .reservation-step.reservation-step--completed {
  background-color: var(--primary-color);
  color: white;
}

.reservation-section-content {
  padding-top: 120px;
  display: grid;
  grid-template-columns: calc(60% - 32px) calc(40% - 32px);
  column-gap: 64px;
  min-height: 800px;
  padding-bottom: 240px;
}

.grid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 135px;
  row-gap: 32px;
  padding: 32px 0px;
}

.icon-input-wrapper {
  position: relative;
  flex: 1;
}
.icon-input-wrapper .icon {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.icon-input-wrapper .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.icon-input-wrapper input {
  padding-right: 32px;
  border-bottom: unset;
  font-weight: 600;
  font-size: 22px;
}

.time-input-wrapper {
  max-width: 120px;
}
.time-input-wrapper input {
  caret-color: transparent;
}

.inputs-row {
  display: flex;
}
.inputs-row div + div {
  margin-left: 80px;
}

.grid-form-divider h6 {
  padding: 8px 0px;
}
.grid-form-divider:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black-25);
}

.toggle-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 0px;
  border-top: 1px solid white;
  color: white;
}
.toggle-item .extra-name {
  font-weight: 600;
  padding-right: 24px;
  font-size: 22px;
}
.toggle-item .price {
  margin-left: auto;
  font-size: 22px;
}
.toggle-item .price span:first-child {
  display: none;
}
.toggle-item .price span:last-child {
  display: flex;
}
.toggle-item .price span:last-child .amount {
  margin-right: 8px;
}
.toggle-item .price.free span:first-child {
  display: flex;
}
.toggle-item .price.free span:last-child {
  display: none;
}
.toggle-item a {
  padding-left: 0px;
  text-decoration: underline;
}
.toggle-item .quantity-wrapper {
  flex-shrink: 0;
  background-color: white;
  border-radius: 15px;
  height: 26px;
  padding-left: 8px;
  padding-right: 4px;
  position: relative;
  margin-left: 16px;
  display: flex;
  align-items: center;
}
.toggle-item .quantity-wrapper input {
  background-color: transparent;
  font-size: 22px;
  color: var(--primary-color);
  border: none;
  outline: none;
  width: 32px;
  text-align: center;
  font-weight: 700;
}
.toggle-item .quantity-wrapper .quantity-decrease {
  width: 26px;
  height: 26px;
  position: relative;
  cursor: pointer;
}
.toggle-item .quantity-wrapper .quantity-decrease.disabled {
  opacity: 0.3;
  cursor: unset;
}
.toggle-item .quantity-wrapper .quantity-decrease:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 3px;
  background-color: var(--primary-color);
  content: "";
  display: block;
}
.toggle-item .quantity-wrapper .quantity-increase {
  width: 26px;
  height: 26px;
  position: relative;
  cursor: pointer;
}
.toggle-item .quantity-wrapper .quantity-increase.disabled {
  opacity: 0.3;
  cursor: unset;
}
.toggle-item .quantity-wrapper .quantity-increase:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 3px;
  background-color: var(--primary-color);
  content: "";
  display: block;
}
.toggle-item .quantity-wrapper .quantity-increase:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 18px;
  background-color: var(--primary-color);
  content: "";
  display: block;
}
.toggle-item .toggle-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 26px;
  position: relative;
  margin-left: 16px;
}
.toggle-item .toggle-wrapper input {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  left: 0px;
  top: 0px;
  opacity: 0;
}
.toggle-item .toggle-wrapper .toggle {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  background-color: white;
  position: relative;
  transition: left 0.6s, background-color 0.6s;
}
.toggle-item .toggle-wrapper .toggle:after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(-100%, -50%);
  z-index: 1;
  transition: opacity 0.6s;
  transition: left 0.6s, background-color 0.6s;
}
.toggle-item .toggle-wrapper input:checked + .toggle {
  background-color: var(--background-black);
}
.toggle-item .toggle-wrapper input:checked + .toggle:after {
  left: 40px;
  background-color: white;
}

.car-selection {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.car-selection .car-item {
  max-width: 320px;
}

.cars-list {
  display: flex;
  flex-direction: column;
}

.reservation-car-selection {
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 1fr;
  padding-bottom: 80px;
  padding-top: 80px;
}

.inactive-card {
  position: relative;
}
.inactive-card:not(.inactive-card--with-message) {
  opacity: 0.1;
}
.inactive-card .inactive-content-wrapper {
  display: flex;
}
.inactive-card.inactive-card--with-message > *:not(.inactive-content-wrapper) {
  opacity: 0.1;
  pointer-events: none;
}

.inactive-message {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
}

.inactive-content-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  display: none;
}

.car-selection-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.car-selection-right {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.car-selection-right .custom-select {
  display: none;
}

.car-image {
  width: 100%;
  max-width: 520px;
  position: relative;
}
.car-image:before {
  width: 100%;
  padding-top: 69%;
  content: "";
  display: block;
}
.car-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: contain;
  object-position: center;
}

.car-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 540px;
  margin-top: 16px;
  /*   max-width: 620px; */
}

.car-detail-item {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 6px;
  padding: 8px 16px;
  margin: 8px;
}
.car-detail-item .icon {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.car-detail-item .icon img {
  width: 100%;
  height: 100%;
}
.car-detail-item span {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-left: 16px;
}

.car-selection-item {
  padding: 8px 16px;
  position: relative;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
  border: 2px solid var(--primary-color);
  overflow: hidden;
  transition: color 0.6s, background-color 0.6s;
  cursor: pointer;
}
.car-selection-item .car-name {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1em;
  transition: color 0.6s;
  margin-bottom: 4px;
}
.car-selection-item .car-notice {
  font-size: 16px;
  line-height: 1em;
}
.car-selection-item:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.6s;
}
.car-selection-item > * {
  position: relative;
  z-index: 2;
}
.car-selection-item.car-section-item--selected {
  background-color: var(--primary-color);
  cursor: unset;
  color: white;
}
.car-selection-item.car-section-item--selected .car-name {
  color: white;
}
.car-selection-item + .car-selection-item {
  margin-top: -2px;
}
.car-selection-item:hover {
  color: white;
}
.car-selection-item:hover:after {
  width: 100%;
}
.car-selection-item:hover .car-name {
  color: white;
}

.car-selection-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.car-selection-name .car-price-wrapper {
  margin-top: 16px;
}
.car-selection-name span {
  max-width: 540px;
}

.reservation-date-time-card-wrapper {
  margin-top: 120px;
}

.reservation-submission-error {
  max-width: 520px;
  text-align: center;
  color: var(--danger-color);
  margin-top: 32px;
}

.reservation-card {
  padding: 32px 48px;
  border-radius: 32px;
}
.reservation-card.reservation-card--bottom-radius-0 {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.reservation-card.reservation-card--top-radius-0 {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.reservation-card.background-dark {
  background-color: var(--background-black);
  /*     border-top-left-radius: 32px;
  border-top-right-radius: 32px; */
}
.reservation-card.background-dark h3 {
  color: white;
}
.reservation-card.background-primary {
  background-color: var(--primary-color);
  /* s */
}
.reservation-card.background-primary h3 {
  color: white;
}

.total-price-wrapper {
  display: flex;
  font-size: 42px;
  color: white;
  line-height: 1em;
  align-items: flex-end;
}
.total-price-wrapper .line {
  border-bottom: 1px solid white;
  flex: 1;
  margin-bottom: 0.15em;
  margin-left: 16px;
  margin-right: 16px;
}
.total-price-wrapper span {
  display: none;
}

#discount-wrapper .price {
  margin-left: auto;
}

.pricing-notice {
  text-align: right;
  color: white;
  font-weight: 600;
}
.pricing-notice p {
  font-size: 16px;
  margin-left: auto;
  max-width: 540px;
}

.edit-btn {
  display: flex;
  align-items: center;
  padding: 10px 26px;
  margin-left: auto;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 3px solid white;
  transition: color 0.6s, background-color 0.6s;
  min-width: 260px;
  cursor: pointer;
}
.edit-btn .icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.edit-btn .icon svg {
  width: 100%;
  height: 100%;
}
.edit-btn .icon path {
  stroke: white;
  transition: stroke 0.6s;
}
.edit-btn:hover {
  background-color: white;
  color: var(--black-color);
}
.edit-btn:hover .icon path {
  stroke: var(--black-color);
}
.edit-btn .loader {
  font-size: 32px;
  margin-right: 8px;
}
.edit-btn:not(.edit-btn--loading) .loader {
  display: none;
}
.edit-btn.edit-btn--loading {
  pointer-events: none;
  cursor: unset;
}
.edit-btn.edit-btn--loading .icon {
  display: none;
}
.edit-btn.edit-btn--loading .text-edit {
  display: none;
}
.edit-btn.edit-btn--loading .text-save {
  display: block;
}
.edit-btn.edit-btn--save .icon-edit {
  display: none;
}
.edit-btn.edit-btn--save .text-edit {
  display: none;
}
.edit-btn.edit-btn--edit .icon-save {
  display: none;
}
.edit-btn.edit-btn--edit .text-save {
  display: none;
}

.reservation-date-result {
  color: white;
  animation: flash 2s infinite alternate;
}

@keyframes flash {
  0% {
    color: white;
  }
  100% {
    color: var(--primary-color);
  }
}
.loader {
  font-size: 48px;
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
}
.loader:before {
  width: 100%;
  height: 100%;
  content: "";
  border: 3px solid;
  border-color: #fff #fff transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent var(--primary-color) var(--primary-color);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.reservation-date-location-form--disabled .custom-select--icon .select-selected {
  pointer-events: none;
  color: white;
  padding-left: 0px;
  background-color: var(--background-black);
}
.reservation-date-location-form--disabled .custom-select--icon .icon {
  filter: invert(1);
}
.reservation-date-location-form--disabled input {
  pointer-events: none;
}
.reservation-date-location-form--disabled .icon-input-wrapper input {
  color: white;
  background-color: var(--background-black);
  padding-left: 0px;
}
.reservation-date-location-form--disabled .icon-input-wrapper .icon {
  filter: invert(1);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
#reservation-settings {
  position: relative;
}
#reservation-settings.loading:after {
  width: 100%;
  height: 100%;
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: white;
  z-index: 3;
  opacity: 0.5;
}
#reservation-settings.loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

@media only screen and (max-width: 1180px) {
  .grid-form {
    column-gap: 48px;
  }
}
@media only screen and (max-width: 980px) {
  .reservation-car-selection {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .car-selection-right {
    align-items: center;
  }
  .car-selection-right .car-selection-list {
    /*    display: none; */
    width: 100%;
    max-width: 520px;
  }
  .car-selection-right .car-selection-list .car-selection-item {
    border-radius: 0px;
  }
  .car-selection-right .car-selection-list .car-selection-item:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .car-selection-right .car-selection-list .car-selection-item:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .car-selection-right .custom-select {
    /* display: flex; */
    display: none;
    max-width: 540px;
    width: 100%;
  }
  .inputs-row div + div {
    margin-left: 16px;
  }
  .time-input-wrapper {
    max-width: 110px;
  }
}
@media only screen and (max-width: 800px) {
  .grid-form {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-form .two-columns {
    grid-column: 1/span 1;
  }
  .inputs-row div + div {
    margin-left: 32px;
  }
  .time-input-wrapper {
    max-width: 120px;
  }
  .toggle-item {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 8px;
  }
  .toggle-item .price {
    margin-right: 0px;
    margin-left: 0px;
    grid-column: 1/span 2;
  }
  .toggle-item .toggle-wrapper {
    grid-row: 3;
    grid-column: 1/span 2;
    justify-self: flex-end;
  }
  .toggle-item .quantity-wrapper {
    grid-row: 3;
    grid-column: 1/span 2;
    justify-self: flex-end;
  }
}
@media only screen and (max-width: 600px) {
  .car-detail-item span {
    font-size: 16px;
  }
  .edit-btn {
    margin-left: unset;
    width: 100%;
    min-width: unset;
  }
  .total-price-wrapper {
    flex-direction: column-reverse;
    font-size: 42px;
    color: white;
    line-height: 1em;
    align-items: center;
  }
  .total-price-wrapper .line {
    display: none;
  }
  .total-price-wrapper .total-days {
    font-size: 32px;
    margin-top: 8px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 500px) {
  .reservation-card {
    padding: 24px 24px;
  }
  .inputs-row {
    flex-direction: column;
  }
  .inputs-row div + div {
    margin-left: 0px;
    margin-top: 16px;
  }
  .inputs-row .time-input-wrapper {
    max-width: 100%;
  }
}
/* RESERVATION CONFIRMATION */
.reservation-confirmation-top {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 120px;
  padding-bottom: 80px;
}

.confirmation-car-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.reservation-card--two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 135px;
}

.info-column {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 16px;
  padding: 32px 0px;
}

.input-column .input-info {
  min-height: 60px;
  padding: 10px 0px;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
}

.reservation-confirmation-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation-confirmation-bottom .primary-btn {
  margin-top: 32px;
  min-width: 320px;
}

@media only screen and (max-width: 900px) {
  .reservation-confirmation-bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media only screen and (max-width: 500px) {
  .reservation-confirmation-bottom .primary-btn {
    min-width: unset;
    width: 100%;
  }
}
/* -------------------------------------------------------------------------- */
/*                                   INVOICE                                  */
/* -------------------------------------------------------------------------- */
.reservation-invoice {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.reservation-invoice .company {
  margin-bottom: 60px;
}
.reservation-invoice .info-row {
  display: flex;
  flex-wrap: wrap;
}
.reservation-invoice .info-column {
  padding: 10px;
  width: 50%;
  display: flex;
  flex-direction: column;
}
.reservation-invoice .info-column .title {
  text-decoration: underline;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
.reservation-invoice .table-responsive {
  margin-left: auto;
  display: block;
  width: 100%;
  overflow-x: auto;
  padding: 10px;
}
.reservation-invoice .table-responsive .table {
  width: 100%;
  background-color: transparent;
}
.reservation-invoice .table-responsive .table td,
.reservation-invoice .table-responsive .table th {
  text-align: left;
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #dee2e6;
}

@media only screen and (max-width: 800px) {
  .reservation-invoice .info-row {
    flex-direction: column;
  }
  .reservation-invoice .table-responsive {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .reservation-card--two-columns {
    column-gap: 48px;
  }
}
@media only screen and (max-width: 800px) {
  .reservation-card--two-columns {
    grid-template-columns: repeat(1, 1fr);
  }
  .reservation-card--two-columns .toggle-item {
    display: flex;
    flex-wrap: wrap;
  }
  .reservation-card--two-columns .toggle-item .price {
    margin-left: auto;
  }
}
/* -------------------------------------------------------------------------- */
/*                               FORM VALIDATION                              */
/* -------------------------------------------------------------------------- */
.input-error {
  position: relative;
}

.error-message {
  position: absolute;
  top: calc(100% + 10px);
  left: 0px;
  width: 100%;
  min-width: 240px;
  max-width: 280px;
  padding: 20px;
  background-color: var(--primary-color);
  z-index: 20;
  color: white;
  text-align: left;
  font-size: 16px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.5);
}
.error-message span {
  font-size: 16px;
  text-align: left;
  font-weight: normal;
}
.error-message:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 10px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: var(--primary-color);
}

/* -------------------------------------------------------------------------- */
/*                                 TERMS PAGE                                 */
/* -------------------------------------------------------------------------- */
.terms-text-wrapper {
  margin-top: 45px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  color: black;
}

.text-editor p {
  color: black;
}
.text-editor a {
  color: var(--blue-color);
  text-decoration: underline;
}
.text-editor ul {
  font-size: 18px;
  margin-inline-start: 20px;
}

.ui-timepicker-wrapper {
  overflow-y: auto;
  max-height: 150px;
  width: auto;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  z-index: 10052;
  margin: 0;
  scrollbar-color: var(--primary-color) var(--black-10);
  scrollbar-width: thin;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.ui-timepicker-wrapper::-webkit-scrollbar {
  width: 8px;
}
.ui-timepicker-wrapper::-webkit-scrollbar-track {
  background: var(--black-10);
}
.ui-timepicker-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
.ui-timepicker-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.ui-timepicker-wrapper .ui-timepicker-list li {
  padding-right: 20px;
}

.ui-timepicker-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ui-timepicker-duration {
  margin-left: 5px;
  color: #888;
}

.ui-timepicker-list:hover .ui-timepicker-duration {
  color: #888;
}

.ui-timepicker-list li {
  padding: 3px 0 3px 5px;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  list-style: none;
  margin: 0;
}

.ui-timepicker-list:hover .ui-timepicker-selected {
  background: #fff;
  color: #000;
}

li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list .ui-timepicker-selected:hover {
  background: #1980ec;
  color: #fff;
}

li.ui-timepicker-selected .ui-timepicker-duration,
.ui-timepicker-list li:hover .ui-timepicker-duration {
  color: #ccc;
}

.ui-timepicker-list li.ui-timepicker-disabled,
.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  color: #888;
  cursor: default;
}

.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  background: #f2f2f2;
}
