@font-face {
  font-family: FontMedium;
  src: url("../../fonts/Inter-Medium.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url("../../fonts/Inter-Bold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBold;
  src: url("../../fonts/Inter-SemiBold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMediumAdditional;
  src: url("../../fonts/GeneralSans-Medium.otf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBoldAdditional;
  src: url("../../fonts/GeneralSans-Bold.otf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBoldAdditional;
  src: url("../../fonts/GeneralSans-Semibold.otf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontRegular;
  src: url("../../fonts/Inter-Regular.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMediumExtra;
  src: url("../../fonts/Archivo-Medium.ttf") format("truetype");
  font-display: block;
}
.font-regular {
  font-family: FontRegular;
}

.font-medium {
  font-family: FontMedium;
}

.font-bold {
  font-family: FontBold;
}

.font-medium-additional {
  font-family: FontMediumAdditional;
}

.font-bold-additional {
  font-family: FontBoldAdditional;
}

.font-semi-bold-additional {
  font-family: FontSemiBoldAdditional;
}

strong, b {
  font-family: FontBold;
}

i, em {
  font-style: italic;
}

strong i, strong em, b i, b em, i strong, i b, em strong, em b {
  font-family: FontBold;
  font-style: italic;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.default-text-color {
  color: #1D222B;
}

.secondary-text-color {
  color: #939CAB;
}

.default-color {
  color: #F96A24;
}

.background-white {
  background-color: #fff;
}

.background-black {
  background-color: #000;
}

.background-default {
  background-color: #F96A24;
}

.background-default-additional {
  background-color: #3845BB;
}

.default-hover {
  color: #1D222B;
}
.default-hover:hover {
  color: #F96A24;
}

.default-link {
  position: relative;
  color: #F96A24;
}
.default-link:hover:before, .default-link:hover:after {
  width: 100%;
  opacity: 1;
}
.default-link:after {
  left: 0;
  background-color: #F96A24;
}
.default-link:before, .default-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.default-link:hover {
  color: #F96A24;
}

a {
  text-decoration: none;
}
a:hover {
  transition: all 0.2s linear;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:before, a:after {
  transition: all 0.2s linear;
}
a {
  transition: all 0.2s linear;
}

input, textarea, button {
  -webkit-appearance: none;
  border-radius: 0;
  transition: all 0.2s linear;
}
input:hover, textarea:hover, button:hover {
  transition: all 0.2s linear;
}
input:focus, textarea:focus, button:focus {
  transition: all 0.2s linear;
  outline: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, button::-webkit-input-placeholder {
  transition: all 0.2s linear;
}
input::-moz-placeholder, textarea::-moz-placeholder, button::-moz-placeholder {
  transition: all 0.2s linear;
}
input:-moz-placeholder, textarea:-moz-placeholder, button:-moz-placeholder {
  transition: all 0.2s linear;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, button:-ms-input-placeholder {
  transition: all 0.2s linear;
}

input[type=submit], button {
  cursor: pointer;
}

.transition-default {
  transition: all 0.2s linear;
}
.transition-default:hover {
  transition: all 0.2s linear;
}

.transition-default-longer {
  transition: all 0.4s linear;
}
.transition-default-longer:hover {
  transition: all 0.4s linear;
}

.transition-default-long {
  transition: all 0.6s linear;
}
.transition-default-long:hover {
  transition: all 0.6s linear;
}

.absolute-cover-img, .darkness-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.darkness-effect {
  background-color: rgba(28, 31, 41, 0.5);
}

.radius-50-px {
  border-radius: 50px;
}

.radius-50-percents {
  border-radius: 50%;
}

.m-auto-horizontal {
  margin: 0 auto;
}

.m-auto-vertical {
  margin: auto 0;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.background-image-default {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.backface-hidden {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.non-default-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fz-0 {
  font-size: 0;
}

.last-child-without-margin > *:last-child {
  margin-bottom: 0 !important;
}

.default-menu-styles > ul > li:nth-last-of-type(1) {
  margin: 0 !important;
}

.white-color-wrapper * {
  color: #fff;
}

.white-color-wrapper.wysiwyg-styles .wp-caption-text {
  color: #fff;
}
.white-color-wrapper.wysiwyg-styles > h2 {
  color: #fff;
}

.thumb-placeholder {
  object-fit: contain;
  padding: 16px;
}

.mix-blend-mode {
  mix-blend-mode: multiply;
}

.no-select {
  user-select: none;
}

.default-border-radius-small {
  border-radius: 8px;
}

.default-border-radius-big {
  border-radius: 10px;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.clear-both {
  clear: both !important;
}

.body-with-admin-bar .navbar-header {
  top: 32px;
}

.body-with-admin-bar .mobile-menu {
  top: calc(88px + 32px);
}

.prevent-shaking-animation {
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.prevent-shaking-animation:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
}

.prevent-shaking-animation-small:hover {
  transform: translateY(-3px) perspective(1000px);
  -webkit-transform: translateY(-3px) perspective(1000px);
}

@media screen and (min-width: 1181px) {
  .modal-open body, .modal-open .navbar-header {
    padding-right: 8px !important;
  }
}
@media screen and (max-width: 782px) {
  .body-with-admin-bar .navbar-header {
    top: 46px;
  }
  .body-with-admin-bar .mobile-menu {
    top: calc(88px + 46px);
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
body {
  font-family: FontRegular;
  color: #1D222B;
  font-size: 16px;
  padding-top: 88px;
  background-color: #F6F8FA;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}
body {
  overflow-x: hidden;
}

.default-page-height {
  min-height: calc(100vh - 88px);
}

.default-text {
  font-size: 16px;
  line-height: 24px;
}

.default-text-small {
  font-size: 14px;
  line-height: 21px;
}

.main-container {
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1480px;
}

.main-title, .main-subtitle {
  margin: 0;
  font-family: FontSemiBold;
}

.main-title {
  font-size: 48px;
  line-height: 120%;
  font-family: FontSemiBoldAdditional;
}

.main-subtitle {
  font-size: 36px;
  line-height: 120%;
  font-family: FontSemiBoldAdditional;
}

.main-small-title {
  font-size: 28px;
  line-height: 120%;
  font-family: FontSemiBoldAdditional;
}

.main-smallest-title {
  font-size: 20px;
  line-height: 150%;
  font-family: FontSemiBoldAdditional;
}

.default-page-title-bigger {
  font-family: FontSemiBoldAdditional;
  font-size: 22px;
  line-height: 140%;
}

.default-page-title {
  font-family: FontSemiBoldAdditional;
  font-size: 16px;
  line-height: 150%;
}

.title-margin-big {
  margin-bottom: 64px;
}

.default-wrapper {
  padding: 100px 0;
}

.default-wrapper-margin {
  margin: 100px 0;
}

.default-wrapper-small-top {
  padding: 48px 0 100px;
}

.default-wrapper-small-top-margin {
  margin: 48px 0 100px;
}

.default-wrapper-smaller-margin {
  margin: 64px 0;
}

.default-wrapper-smaller {
  padding: 64px 0;
}

.default-button {
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  font-family: FontBold;
  white-space: nowrap;
  position: relative;
  border-radius: 10px;
}
.default-button svg path {
  transition: all 0.2s linear;
}

.default-button-mobile {
  width: unset !important;
}

.default-button-with-image {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  gap: 10px;
}

.default-button-with-side-arrow svg {
  width: 15px;
  height: 14px;
}

.default-button-simple {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
}
.default-button-simple svg path {
  fill: #fff;
}
.default-button-simple:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
.default-button-simple:hover svg path {
  fill: #fff;
}

.default-button-white {
  color: #1D222B !important;
  background-color: #fff !important;
  border: 2px solid #E7E6E6 !important;
}
.default-button-white svg path {
  fill: #1D222B;
}
.default-button-white:hover {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
}
.default-button-white:hover svg path {
  fill: #fff;
}

.default-button-dark {
  color: #fff !important;
  background-color: #0D0B2A !important;
  border: 2px solid #0D0B2A !important;
}
.default-button-dark svg path {
  fill: #fff;
}
.default-button-dark:hover {
  color: #fff !important;
  background-color: #182171 !important;
  border: 2px solid #182171 !important;
}
.default-button-dark:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 1680px) {
  .default-wrapper {
    padding: 64px 0;
  }
  .default-wrapper-margin {
    margin: 64px 0;
  }
  .default-wrapper-small-top {
    padding: 64px 0 48px;
  }
  .default-wrapper-small-top-margin {
    margin: 64px 0 48px;
  }
  .title-margin-big {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .default-wrapper, .default-wrapper-small-top, .default-wrapper-smaller {
    padding: 48px 0;
  }
  .default-wrapper-margin, .default-wrapper-smaller-margin, .default-wrapper-small-top-margin {
    margin: 48px 0;
  }
  .title-margin-big {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 40px;
  }
  .main-subtitle {
    font-size: 32px;
  }
  .main-small-title {
    font-size: 24px;
  }
  .title-margin-big {
    margin-bottom: 24px;
  }
  .default-button-mobile {
    width: 100% !important;
  }
}
@media screen and (max-width: 500px) {
  .main-container {
    padding: 0 16px;
  }
  .main-title {
    font-size: 32px;
  }
  .main-subtitle {
    font-size: 24px;
  }
}
@keyframes scaling {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scalingBigger {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}
@keyframes sideMovingAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes verticalSideMovingAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes verticalSideMovingAnimationSmall {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce-link-with-image-on-hover:hover img, .bounce-link-with-image-on-hover:hover svg {
  animation: bounce 0.5s linear infinite;
  -webkit-animation: bounce 0.5s linear infinite;
}

@keyframes movement-rotation-effect-first {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  17% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  34% {
    transform: translate(4px, 0);
    -webkit-transform: translate(4px, 0);
  }
  51% {
    transform: translate(0, 4px);
    -webkit-transform: translate(0, 4px);
  }
  68% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  85% {
    transform: translate(-4px, 0);
    -webkit-transform: translate(-4px, 0);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-second {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  20% {
    transform: translate(-4px, 4px);
    -webkit-transform: translate(-4px, 4px);
  }
  40% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  60% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  80% {
    transform: translate(0, 4px);
    -webkit-transform: translate(0, 4px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-third {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  17% {
    transform: translate(4px, 4px);
    -webkit-transform: translate(4px, 4px);
  }
  34% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  51% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  68% {
    transform: translate(-4px, 4px);
    -webkit-transform: translate(-4px, 4px);
  }
  85% {
    transform: translate(0, -4px);
    -webkit-transform: translate(0, -4px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-fourth {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  20% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  40% {
    transform: translate(0px, 4px);
    -webkit-transform: translate(0px, 4px);
  }
  60% {
    transform: translate(4px, 0);
    -webkit-transform: translate(4px, 0);
  }
  80% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
.first-animation-move {
  animation: movement-rotation-effect-first 10s linear infinite;
  -webkit-animation: movement-rotation-effect-first 10s linear infinite;
}

.second-animation-move {
  animation: movement-rotation-effect-second 10s linear infinite;
  -webkit-animation: movement-rotation-effect-second 10s linear infinite;
}

.third-animation-move {
  animation: movement-rotation-effect-third 10s linear infinite;
  -webkit-animation: movement-rotation-effect-third 10s linear infinite;
}

.fourth-animation-move {
  animation: movement-rotation-effect-fourth 10s linear infinite;
  -webkit-animation: movement-rotation-effect-fourth 10s linear infinite;
}

.before-animation-visibility-backface {
  opacity: 0;
  visibility: hidden;
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.before-animation-visibility-gallery {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.1) rotate(90deg);
  -webkit-transform: scale(0.1) rotate(90deg);
}

.before-animation-visibility {
  opacity: 0;
  visibility: hidden;
}

.before-animation-left {
  transform: translateX(-100vw);
  -webkit-transform: translateX(-100vw);
}

.before-animation-right {
  transform: translateX(100vw);
  -webkit-transform: translateX(100vw);
}

@keyframes leftSideAnimationSimple {
  0% {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes rightSideAnimationSimple {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.left-side-animation-simple {
  -webkit-animation: leftSideAnimationSimple 1s ease-out forwards;
  animation: leftSideAnimationSimple 1s ease-out forwards;
  opacity: 1 !important;
}

.right-side-animation-simple {
  -webkit-animation: rightSideAnimationSimple 1s ease-out forwards;
  animation: rightSideAnimationSimple 1s ease-out forwards;
  opacity: 1 !important;
}

.animation-fix {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  will-change: transform;
}

.before-fade-in {
  opacity: 0;
}

@keyframes bottomSideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(32px);
    -webkit-transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
  }
}
@keyframes leftSideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-32px);
    -webkit-transform: translateX(-32px);
  }
  100% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
  }
}
@keyframes simpleFadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.left-side-fade-in {
  -webkit-animation: leftSideFadeIn 1.25s ease forwards;
  animation: leftSideFadeIn 1.25s ease forwards;
}

.bottom-side-fade-in {
  -webkit-animation: bottomSideFadeIn 1.25s ease forwards;
  animation: bottomSideFadeIn 1.25s ease forwards;
}

.bottom-side-fade-in-small-delay {
  -webkit-animation: bottomSideFadeIn 1.25s ease 0.25s forwards;
  animation: bottomSideFadeIn 1.25s ease 0.25s forwards;
}

.simple-fade-in {
  -webkit-animation: simpleFadeIn 1.25s ease 0.25s forwards;
  animation: simpleFadeIn 1.25s ease 0.25s forwards;
}

.no-lazy-load {
  animation: none !important;
  -webkit-animation: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: transparent;
  transition: background-color 0.2s linear;
}

.navbar-scrolled, .navbar-header-opened {
  background-color: #fff;
}

.navbar-header-opened {
  background-color: #0D0B2A;
}
.navbar-header-opened .header-menu-desktop, .navbar-header-opened .header-additional-menu-desktop, .navbar-header-opened .header-languages-desktop, .navbar-header-opened .header-phone {
  display: none !important;
}
.navbar-header-opened .header-languages-mobile {
  color: #fff;
}
.navbar-header-opened .header-burger-icon {
  opacity: 0;
  visibility: hidden;
}
.navbar-header-opened .header-close-icon {
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.2s linear;
  border: 2px solid #fff;
}
.navbar-header-opened .header-close-icon svg path {
  fill: #1D222B;
}
.navbar-header-opened .header-close-icon:hover {
  background-color: #F96A24;
  border: 2px solid #F96A24;
}
.navbar-header-opened .header-close-icon:hover svg path {
  fill: #fff;
}

.header-content {
  min-height: 88px;
  gap: 40px;
}
.header-content > *:last-child {
  margin-right: 0 !important;
}

.header-main-divider {
  height: 1px;
  border-radius: 9999px;
  background-color: #656F7F;
  opacity: 0.4;
  width: 100%;
}

.header-main {
  gap: 64px;
}

.header-additional {
  gap: 24px;
}

.header-additional-left-side {
  gap: 20px;
}

.header-additional-right-side {
  gap: 24px;
}

.header-logo {
  width: 143px;
  height: 60px;
}
.header-logo img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.header-logo .header-logo-black {
  opacity: 1;
  visibility: visible;
}
.header-logo .header-logo-white {
  opacity: 0;
  visibility: hidden;
}

.header-menu > ul > li {
  font-size: 0;
}
.header-menu > ul > li > a {
  color: #1D222B;
}
.header-menu > ul > li > a:hover {
  color: #F96A24;
}
.header-menu > ul .current-menu-item > a, .header-menu > ul .current-page-ancestor > a, .header-menu > ul .current-menu-ancestor > a {
  color: #F96A24;
}

.header-menu-desktop > ul, .header-additional-menu-desktop > ul {
  display: flex;
  display: -webkit-flex;
}
.header-menu-desktop > ul > li, .header-additional-menu-desktop > ul > li {
  margin-right: 24px;
}
.header-menu-desktop > ul > li > a, .header-additional-menu-desktop > ul > li > a {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.14px;
  font-family: FontBold;
}

.header-phone-link {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.14px;
  gap: 10px;
  padding: 10px;
  white-space: nowrap;
  color: #1D222B;
  border: 2px solid #DEE4EB;
  background-color: #fff;
  border-radius: 10px;
  font-family: FontBold;
}
.header-phone-link svg {
  width: 14px;
  height: 14px;
}
.header-phone-link svg path {
  fill: #1D222B;
  transition: all 0.2s linear;
}
.header-phone-link:hover {
  background-color: #F96A24;
  border: 2px solid #F96A24;
  color: #fff;
}
.header-phone-link:hover svg path {
  fill: #fff;
}

.header-languages {
  width: 48px;
}
.header-languages .option {
  transition: all 0.2s linear;
}

.header-additional-middle {
  display: none;
}

.header-burger {
  background-color: #F96A24;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.header-burger svg path {
  fill: #fff;
  transition: all 0.2s linear;
}
.header-burger:hover {
  background-color: #E05F20;
}
.header-burger:hover svg path {
  fill: #fff;
}

.header-common-icon {
  top: 0;
  left: 0;
  transition: all 0.2s linear;
}

.header-burger-icon {
  opacity: 1;
  visibility: visible;
}
.header-burger-icon svg {
  width: 15px;
  height: 10px;
}

.header-close-icon {
  opacity: 0;
  visibility: hidden;
}
.header-close-icon svg {
  width: 12px;
  height: 12px;
}

.mobile-menu {
  z-index: 1019;
  background-color: #0D0B2A;
  width: 100%;
  height: calc(100vh - 88px);
  top: 88px;
  right: 0;
  overflow: auto;
}
.mobile-menu .burger-overlay {
  bottom: -30%;
  right: -15%;
  width: 960px;
  height: 939px;
  background-image: url("../../images/dots-overlay.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.3;
  pointer-events: none;
}
.mobile-menu::-webkit-scrollbar {
  width: 0;
}
.mobile-menu::-webkit-scrollbar-track, .mobile-menu::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.mobile-menu-hidden {
  transform: translateY(-100vh);
  -webkit-transform: translateY(-100vh);
}

.mobile-menu-container {
  padding: 80px 0 128px;
  min-height: 100%;
}

.mobile-menu-inner {
  margin-bottom: 80px;
  gap: 24px;
}

.single-mobile-menu-column {
  width: calc((100% - 72px) / 4.001);
}

.header-menu-mobile > ul > li, .header-additional-menu-mobile > ul > li {
  margin-bottom: 24px;
}
.header-menu-mobile > ul > li:nth-last-of-type(1), .header-additional-menu-mobile > ul > li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.header-menu-mobile > ul > li > a, .header-additional-menu-mobile > ul > li > a {
  font-family: FontSemiBold;
  font-size: 28px;
  line-height: 120%;
  color: #fff;
}
.header-menu-mobile > ul > li > a:hover, .header-additional-menu-mobile > ul > li > a:hover {
  color: #F96A24;
}
.header-menu-mobile > ul .current-menu-item > a, .header-menu-mobile > ul .current-page-ancestor > a, .header-menu-mobile > ul .current-menu-ancestor > a, .header-additional-menu-mobile > ul .current-menu-item > a, .header-additional-menu-mobile > ul .current-page-ancestor > a, .header-additional-menu-mobile > ul .current-menu-ancestor > a {
  color: #F96A24;
}

.mobile-menu-title {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 20px;
  color: #939CAB;
}

@media screen and (max-width: 1680px) {
  .mobile-menu-container {
    padding: 64px 0 96px;
  }
  .mobile-menu-inner {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1366px) {
  .header-menu-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .mobile-menu-container {
    padding: 48px 0 64px;
  }
  .mobile-menu-inner {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1271px) {
  .header-additional {
    gap: 16px;
  }
  .header-additional-menu-desktop {
    display: none !important;
  }
  .header-menu-mobile > ul > li, .header-additional-menu-mobile > ul > li {
    margin-bottom: 20px;
  }
  .header-menu-mobile > ul > li > a, .header-additional-menu-mobile > ul > li > a {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .header-main-divider-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mobile-menu-title {
    display: none;
  }
  .header-additional-right-side {
    gap: 0;
  }
  .header-additional-middle {
    display: block;
  }
  .modal-open .header-additional-middle {
    display: none !important;
  }
  .mobile-menu-container {
    padding: 32px 0 64px;
  }
  .header-phone {
    display: none !important;
  }
  .mobile-menu-inner {
    gap: 32px;
    margin-bottom: 24px;
  }
  .single-mobile-menu-column {
    width: 100%;
  }
  .header-menu-mobile > ul > li > a, .header-additional-menu-mobile > ul > li > a {
    font-size: 20px;
    line-height: 30px;
  }
  .header-additional-menu-mobile {
    margin-bottom: 56px;
  }
  .single-mobile-menu-column-contacts, .single-mobile-menu-column-socials {
    width: calc(50% - 16px);
  }
  .single-mobile-menu-column-socials {
    margin-top: auto;
  }
  .common-socials {
    justify-content: end;
  }
}
@media screen and (max-width: 380px) {
  .single-mobile-menu-column-contacts, .single-mobile-menu-column-socials {
    width: 100%;
  }
  .single-mobile-menu-column-socials {
    margin-top: 0;
  }
  .header-additional-menu-mobile {
    margin-bottom: 0;
  }
  .common-socials {
    justify-content: start;
  }
}
.footer .common-socials {
  justify-content: start;
}
.footer .footer-main {
  background-color: #0D0B2A;
  border-radius: 16px 16px 0 0;
}
.footer .footer-main-wrapper {
  gap: 56px;
}
.footer .footer-main-divider {
  height: 1px;
  border-radius: 9999px;
  background-color: #656F7F;
  opacity: 0.4;
}
.footer .footer-main-inner {
  gap: 32px 24px;
}
.footer .footer-main-data {
  width: 456px;
  gap: 40px;
}
.footer .footer-main-menus {
  width: calc(100% - 456px - 24px);
  gap: 24px;
}
.footer .footer-main-logo img {
  width: auto;
  height: auto;
  max-width: 163px;
  max-height: 69px;
}
.footer .footer-menu-wrapper {
  width: calc((100% - 72px) / 4.001);
}
.footer .footer-menu-title {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 150%;
  color: #939CAB;
}
.footer .footer-menu > ul {
  gap: 12px;
}
.footer .footer-menu > ul > li {
  font-size: 0;
}
.footer .footer-menu > ul > li > a {
  color: #fff;
  font-size: 16px;
  line-height: 150% px;
  letter-spacing: 0.16px;
  font-family: FontBold;
}
.footer .footer-menu > ul > li > a:hover {
  color: #F96A24;
}
.footer .footer-menu > ul .current-menu-item > a, .footer .footer-menu > ul .current-page-ancestor > a, .footer .footer-menu > ul .current-menu-ancestor > a {
  color: #F96A24;
}
.footer .footer-additional {
  background-color: #0D0B2A;
  opacity: 0.95;
}
.footer .footer-additional-inner {
  padding: 64px 0;
  gap: 32px;
}
.footer .footer-additional-copyright, .footer .footer-additional-subtext {
  color: #DEE4EB;
}
.footer .footer-additional-copyright a {
  color: #DEE4EB;
  position: relative;
}
.footer .footer-additional-copyright a:hover:before, .footer .footer-additional-copyright a:hover:after {
  width: 100%;
  opacity: 1;
}
.footer .footer-additional-copyright a:after {
  left: 0;
  background-color: #DEE4EB;
}
.footer .footer-additional-copyright a:before, .footer .footer-additional-copyright a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.footer .footer-additional-row {
  gap: 32px;
}
.footer .footer-additional-payment {
  gap: 16px;
}
.footer .single-payment img {
  width: 40px;
  height: 40px;
}
.footer .footer-additional-menu > ul {
  gap: 33px;
}
.footer .footer-additional-menu > ul > li {
  font-size: 0;
  position: relative;
}
.footer .footer-additional-menu > ul > li:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #858482;
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
}
.footer .footer-additional-menu > ul > li:nth-last-of-type(1):before {
  content: none;
}
.footer .footer-additional-menu > ul > li > a {
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  font-family: FontBold;
}
.footer .footer-additional-menu > ul > li > a:hover {
  color: #F96A24;
}
.footer .footer-additional-menu > ul .current-menu-item > a, .footer .footer-additional-menu > ul .current-page-ancestor > a, .footer .footer-additional-menu > ul .current-menu-ancestor > a {
  color: #F96A24;
}

@media screen and (max-width: 1680px) {
  .footer .footer-main-wrapper {
    gap: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .footer .footer-main-wrapper {
    gap: 32px;
  }
  .footer .footer-main-data {
    width: 250px;
    gap: 32px;
  }
  .footer .footer-main-menus {
    width: calc(100% - 250px - 24px);
  }
  .footer .footer-menu-title {
    margin-bottom: 16px;
  }
  .footer .footer-additional-inner {
    padding: 48px 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-main-data, .footer .footer-main-menus {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-main-divider-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-main-menus {
    gap: 32px;
  }
  .footer .footer-menu-wrapper {
    width: 100%;
  }
  .footer .footer-subscribe {
    order: 1;
  }
  .footer .footer-main-divider {
    order: 2;
  }
  .footer .footer-main-divider-mobile {
    order: 3;
  }
  .footer .footer-main-inner {
    order: 3;
    flex-direction: column;
  }
  .footer .footer-main-inner .footer-main-data {
    order: 1;
  }
  .footer .footer-main-inner .footer-main-divider-mobile {
    order: 2;
  }
  .footer .footer-main-inner .footer-main-menus {
    order: 2;
  }
  .footer .footer-additional-menu {
    display: none;
  }
}
.wysiwyg-styles .wp-caption {
  width: 100% !important;
  margin: 0 0 24px;
}
.wysiwyg-styles .wp-caption-text {
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0 0;
  color: #1D222B;
  font-family: FontBold;
}
.wysiwyg-styles > p > img, .wysiwyg-styles .wp-caption > img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 624px;
}
.wysiwyg-styles > p {
  margin-bottom: 24px;
}
.wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
  max-width: 50% !important;
  max-height: 500px !important;
  height: auto !important;
  object-fit: cover !important;
}
.wysiwyg-styles > p .alignleft {
  float: left;
  margin: 0 24px 24px 0;
}
.wysiwyg-styles > p .alignright {
  float: right;
  margin: 0 0 24px 24px;
}
.wysiwyg-styles > ul, .wysiwyg-styles > ol {
  margin-bottom: 24px;
}
.wysiwyg-styles > ul {
  padding: 0;
  list-style: none;
}
.wysiwyg-styles > ul li {
  display: table;
  background-repeat: no-repeat;
  background-image: url("../../images/dot.svg");
  background-size: 4px 4px;
  background-position: 10px 10px;
  padding: 0 0 0 24px;
}
.wysiwyg-styles > ol {
  padding: 0 0 0 24px;
}
.wysiwyg-styles > p > strong, .wysiwyg-styles > p > b {
  color: #1D222B;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul li, .wysiwyg-styles > p > strong, .wysiwyg-styles > p > b, .wysiwyg-styles > p > i, .wysiwyg-styles > p > em, .wysiwyg-styles > p > strong > i, .wysiwyg-styles > p > strong > em, .wysiwyg-styles > p > b > i, .wysiwyg-styles > p > b > em, .wysiwyg-styles > p > i > strong, .wysiwyg-styles > p > i > b, .wysiwyg-styles > p > em > strong, .wysiwyg-styles > p > em > b {
  font-size: 16px;
  line-height: 24px;
}
.wysiwyg-styles > p > a:not(.default-button), .wysiwyg-styles > ul li > a:not(.default-button), .wysiwyg-styles > p > strong > a:not(.default-button), .wysiwyg-styles > p > b > a:not(.default-button), .wysiwyg-styles > p > i > a:not(.default-button), .wysiwyg-styles > p > em > a:not(.default-button), .wysiwyg-styles > p > strong > i > a:not(.default-button), .wysiwyg-styles > p > strong > em > a:not(.default-button), .wysiwyg-styles > p > b > i > a:not(.default-button), .wysiwyg-styles > p > b > em > a:not(.default-button), .wysiwyg-styles > p > i > strong > a:not(.default-button), .wysiwyg-styles > p > i > b > a:not(.default-button), .wysiwyg-styles > p > em > strong > a:not(.default-button), .wysiwyg-styles > p > em > b > a:not(.default-button) {
  color: #F96A24;
  position: relative;
}
.wysiwyg-styles > p > a:not(.default-button):hover:before, .wysiwyg-styles > p > a:not(.default-button):hover:after, .wysiwyg-styles > ul li > a:not(.default-button):hover:before, .wysiwyg-styles > ul li > a:not(.default-button):hover:after, .wysiwyg-styles > p > strong > a:not(.default-button):hover:before, .wysiwyg-styles > p > strong > a:not(.default-button):hover:after, .wysiwyg-styles > p > b > a:not(.default-button):hover:before, .wysiwyg-styles > p > b > a:not(.default-button):hover:after, .wysiwyg-styles > p > i > a:not(.default-button):hover:before, .wysiwyg-styles > p > i > a:not(.default-button):hover:after, .wysiwyg-styles > p > em > a:not(.default-button):hover:before, .wysiwyg-styles > p > em > a:not(.default-button):hover:after, .wysiwyg-styles > p > strong > i > a:not(.default-button):hover:before, .wysiwyg-styles > p > strong > i > a:not(.default-button):hover:after, .wysiwyg-styles > p > strong > em > a:not(.default-button):hover:before, .wysiwyg-styles > p > strong > em > a:not(.default-button):hover:after, .wysiwyg-styles > p > b > i > a:not(.default-button):hover:before, .wysiwyg-styles > p > b > i > a:not(.default-button):hover:after, .wysiwyg-styles > p > b > em > a:not(.default-button):hover:before, .wysiwyg-styles > p > b > em > a:not(.default-button):hover:after, .wysiwyg-styles > p > i > strong > a:not(.default-button):hover:before, .wysiwyg-styles > p > i > strong > a:not(.default-button):hover:after, .wysiwyg-styles > p > i > b > a:not(.default-button):hover:before, .wysiwyg-styles > p > i > b > a:not(.default-button):hover:after, .wysiwyg-styles > p > em > strong > a:not(.default-button):hover:before, .wysiwyg-styles > p > em > strong > a:not(.default-button):hover:after, .wysiwyg-styles > p > em > b > a:not(.default-button):hover:before, .wysiwyg-styles > p > em > b > a:not(.default-button):hover:after {
  width: 100%;
  opacity: 1;
}
.wysiwyg-styles > p > a:not(.default-button):after, .wysiwyg-styles > ul li > a:not(.default-button):after, .wysiwyg-styles > p > strong > a:not(.default-button):after, .wysiwyg-styles > p > b > a:not(.default-button):after, .wysiwyg-styles > p > i > a:not(.default-button):after, .wysiwyg-styles > p > em > a:not(.default-button):after, .wysiwyg-styles > p > strong > i > a:not(.default-button):after, .wysiwyg-styles > p > strong > em > a:not(.default-button):after, .wysiwyg-styles > p > b > i > a:not(.default-button):after, .wysiwyg-styles > p > b > em > a:not(.default-button):after, .wysiwyg-styles > p > i > strong > a:not(.default-button):after, .wysiwyg-styles > p > i > b > a:not(.default-button):after, .wysiwyg-styles > p > em > strong > a:not(.default-button):after, .wysiwyg-styles > p > em > b > a:not(.default-button):after {
  left: 0;
  background-color: #F96A24;
}
.wysiwyg-styles > p > a:not(.default-button):before, .wysiwyg-styles > p > a:not(.default-button):after, .wysiwyg-styles > ul li > a:not(.default-button):before, .wysiwyg-styles > ul li > a:not(.default-button):after, .wysiwyg-styles > p > strong > a:not(.default-button):before, .wysiwyg-styles > p > strong > a:not(.default-button):after, .wysiwyg-styles > p > b > a:not(.default-button):before, .wysiwyg-styles > p > b > a:not(.default-button):after, .wysiwyg-styles > p > i > a:not(.default-button):before, .wysiwyg-styles > p > i > a:not(.default-button):after, .wysiwyg-styles > p > em > a:not(.default-button):before, .wysiwyg-styles > p > em > a:not(.default-button):after, .wysiwyg-styles > p > strong > i > a:not(.default-button):before, .wysiwyg-styles > p > strong > i > a:not(.default-button):after, .wysiwyg-styles > p > strong > em > a:not(.default-button):before, .wysiwyg-styles > p > strong > em > a:not(.default-button):after, .wysiwyg-styles > p > b > i > a:not(.default-button):before, .wysiwyg-styles > p > b > i > a:not(.default-button):after, .wysiwyg-styles > p > b > em > a:not(.default-button):before, .wysiwyg-styles > p > b > em > a:not(.default-button):after, .wysiwyg-styles > p > i > strong > a:not(.default-button):before, .wysiwyg-styles > p > i > strong > a:not(.default-button):after, .wysiwyg-styles > p > i > b > a:not(.default-button):before, .wysiwyg-styles > p > i > b > a:not(.default-button):after, .wysiwyg-styles > p > em > strong > a:not(.default-button):before, .wysiwyg-styles > p > em > strong > a:not(.default-button):after, .wysiwyg-styles > p > em > b > a:not(.default-button):before, .wysiwyg-styles > p > em > b > a:not(.default-button):after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.wysiwyg-styles > p > a:not(.default-button), .wysiwyg-styles > ul li > a:not(.default-button), .wysiwyg-styles > p > strong > a:not(.default-button), .wysiwyg-styles > p > b > a:not(.default-button), .wysiwyg-styles > p > i > a:not(.default-button), .wysiwyg-styles > p > em > a:not(.default-button), .wysiwyg-styles > p > strong > i > a:not(.default-button), .wysiwyg-styles > p > strong > em > a:not(.default-button), .wysiwyg-styles > p > b > i > a:not(.default-button), .wysiwyg-styles > p > b > em > a:not(.default-button), .wysiwyg-styles > p > i > strong > a:not(.default-button), .wysiwyg-styles > p > i > b > a:not(.default-button), .wysiwyg-styles > p > em > strong > a:not(.default-button), .wysiwyg-styles > p > em > b > a:not(.default-button) {
  cursor: pointer;
}
.wysiwyg-styles > p > a:not(.default-button):hover, .wysiwyg-styles > ul li > a:not(.default-button):hover, .wysiwyg-styles > p > strong > a:not(.default-button):hover, .wysiwyg-styles > p > b > a:not(.default-button):hover, .wysiwyg-styles > p > i > a:not(.default-button):hover, .wysiwyg-styles > p > em > a:not(.default-button):hover, .wysiwyg-styles > p > strong > i > a:not(.default-button):hover, .wysiwyg-styles > p > strong > em > a:not(.default-button):hover, .wysiwyg-styles > p > b > i > a:not(.default-button):hover, .wysiwyg-styles > p > b > em > a:not(.default-button):hover, .wysiwyg-styles > p > i > strong > a:not(.default-button):hover, .wysiwyg-styles > p > i > b > a:not(.default-button):hover, .wysiwyg-styles > p > em > strong > a:not(.default-button):hover, .wysiwyg-styles > p > em > b > a:not(.default-button):hover {
  color: #F96A24;
}
.wysiwyg-styles > h2 span, .wysiwyg-styles > h3 span {
  color: #F96A24;
}
.wysiwyg-styles > h2 {
  font-size: 24px;
  line-height: 140%;
  font-family: FontSemiBoldAdditional;
  color: #1D222B;
  margin: 32px 0 24px;
}
.wysiwyg-styles > h3 {
  font-size: 16px;
  line-height: 24px;
  font-family: FontSemiBoldAdditional;
  color: #1D222B;
  margin-bottom: 12px;
}
.wysiwyg-styles > h4 {
  font-family: FontSemiBoldAdditional;
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 140%;
  color: #1D222B;
}
.wysiwyg-styles > h5 {
  font-family: FontSemiBoldAdditional;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 150%;
  color: #1D222B;
}
.wysiwyg-styles > h6 {
  font-family: FontSemiBoldAdditional;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 150%;
  color: #1D222B;
}
.wysiwyg-styles blockquote {
  padding: 32px;
  margin: 32px 0;
  background-color: #ECF0F3;
  border-radius: 8px;
  color: #1D222B;
}
.wysiwyg-styles blockquote p {
  font-size: 20px;
  line-height: 150%;
  font-family: FontBold;
  margin-bottom: 32px;
}
.wysiwyg-styles blockquote > *:last-child {
  margin-bottom: 0 !important;
}
.wysiwyg-styles blockquote > *:last-child > img {
  margin-bottom: 0 !important;
}
.wysiwyg-styles .wysiwyg-table-wrapper {
  overflow-x: auto;
  margin: 48px auto;
  position: relative;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar {
  height: 4px;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar-track {
  background-color: #E7E6E6;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}
.wysiwyg-styles .wysiwyg-table-wrapper table {
  margin: 0 !important;
}
.wysiwyg-styles table {
  width: 100%;
  margin: 32px auto;
  color: #1D222B;
}
.wysiwyg-styles table thead {
  position: relative;
}
.wysiwyg-styles table thead:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DEE4EB;
}
.wysiwyg-styles table thead td {
  font-family: FontBoldAdditional;
  color: #1D222B;
  border-bottom: none;
  padding: 24px 12px;
}
.wysiwyg-styles table tbody tr:nth-last-of-type(1) td {
  border-bottom: none;
}
.wysiwyg-styles table td {
  border-bottom: 1px solid #DEE4EB;
  font-size: 14px;
  line-height: 150%;
  padding: 16px 12px;
}
.wysiwyg-styles table td a {
  color: #F96A24;
}
.wysiwyg-styles table td a:hover {
  color: #F96A24;
}
.wysiwyg-styles table td:nth-of-type(1) {
  border-left: none;
}
.wysiwyg-styles table td:nth-last-of-type(1) {
  border-right: none;
}
.wysiwyg-styles .wysiwyg-button {
  margin-bottom: 24px;
}
.wysiwyg-styles > *:last-child {
  margin-bottom: 0 !important;
}
.wysiwyg-styles > *:last-child > img {
  margin-bottom: 0 !important;
}
.wysiwyg-styles > *:first-child {
  margin-top: 0 !important;
}

.video-wysiwyg {
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  max-width: 936px;
  width: 100%;
  border-radius: 10px;
}
.video-wysiwyg:before {
  content: "";
  display: block;
  padding-top: 56.19%;
}
.video-wysiwyg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-wysiwyg .play-button {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #F96A24;
  border: 2px solid #F96A24;
  border-radius: 50%;
  top: calc(50% - 20.5px);
  left: calc(50% - 20.5px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  transition: all 0.2s linear;
}
.video-wysiwyg .play-button svg {
  width: 24px;
  height: 24px;
}
.video-wysiwyg .play-button svg path {
  transition: all 0.2s linear;
  fill: #fff;
}
.video-wysiwyg .play-button {
  animation: scaling 1.6s linear infinite;
}

.wysiwyg-gallery {
  margin: 0 0 24px;
  gap: 12px;
}
.wysiwyg-gallery .single-gallery-element {
  width: calc((100% - 36px) / 4.001);
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.wysiwyg-gallery .slider-image-link {
  overflow: hidden;
  border-radius: 8px;
}
.wysiwyg-gallery .additional-number {
  right: 16px;
  bottom: 16px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

.wysiwyg-gallery, .video-shortcode {
  margin: 32px 0;
}

.video-shortcode a:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
.video-shortcode .play-button {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 1;
  background-color: #F96A24;
  border: 2px solid #F96A24;
  border-radius: 50%;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  transition: all 0.2s linear;
  animation: scaling 1.6s linear infinite;
  -webkit-animation: scaling 1.6s linear infinite;
}
.video-shortcode .play-button svg {
  width: 20px;
  height: 20px;
}
.video-shortcode .play-button svg path {
  transition: all 0.2s linear;
  fill: #fff;
}

@media screen and (max-width: 1280px) {
  .wysiwyg-styles blockquote {
    padding: 24px;
  }
  .wysiwyg-styles blockquote p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
    float: none !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .wysiwyg-styles > h2 {
    margin: 24px 0 16px;
  }
  .wysiwyg-styles .wysiwyg-table-wrapper {
    margin: 24px auto;
  }
  .wysiwyg-styles table {
    margin: 24px auto;
  }
  .wysiwyg-styles table thead td {
    padding: 16px 12px;
  }
  .wysiwyg-styles table td {
    min-width: 200px;
    padding: 12px;
  }
  .wysiwyg-styles blockquote {
    margin: 24px 0;
    padding: 16px;
  }
  .wysiwyg-styles blockquote p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .wysiwyg-styles .wysiwyg-gallery .single-gallery-element {
    width: calc((100% - 12px) / 2.001);
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-styles .wysiwyg-gallery .single-gallery-element {
    width: 100%;
  }
}
.preloader {
  position: absolute;
  width: 80px;
  height: 15px;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
}
.preloader div {
  background-color: #F96A24;
  position: absolute;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.preloader div:nth-child(1) {
  left: 8px;
  animation: preloader-animation-1 0.6s infinite;
}
.preloader div:nth-child(2) {
  left: 8px;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(3) {
  left: 32px;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(4) {
  left: 56px;
  animation: preloader-animation-3 0.6s infinite;
}

.preloader-visible {
  visibility: visible;
  opacity: 1;
}

@keyframes preloader-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes preloader-animation-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes preloader-animation-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.common-form-preloader {
  top: calc(100% + 12px);
  left: calc(50% - 40px);
}

.left-side-preloader {
  right: calc(100% + 8px);
  top: calc(50% - 7.5px);
}

.right-side-preloader {
  left: calc(100% + 8px);
  top: calc(50% - 7.5px);
}

.preloader-circle {
  width: 32px;
  height: 32px;
  animation: rotating 5s linear infinite;
  -webkit-animation: rotating 5s linear infinite;
  display: none;
}

.left-side-preloader-circle {
  right: calc(100% + 8px);
  top: calc(50% - 16px);
}

.right-side-preloader-circle {
  left: calc(100% + 8px);
  top: calc(50% - 16px);
}

.common-input-title {
  font-size: 14px;
  line-height: 21px;
  font-family: FontBold;
  margin-bottom: 6px;
  color: #1D222B;
}

.common-input-styling {
  font-size: 0;
}
.common-input-styling > input, .common-input-styling > textarea {
  font-size: 16px;
  line-height: 24px;
  border: 2px solid #E7E6E6;
  color: #1D222B;
  background-color: #fff;
  -webkit-appearance: none;
  padding: 10px 16px;
  border-radius: 8px;
}
.common-input-styling > input::-webkit-input-placeholder, .common-input-styling > textarea::-webkit-input-placeholder {
  color: #939CAB;
  font-size: 16px;
}
.common-input-styling > input::-moz-placeholder, .common-input-styling > textarea::-moz-placeholder {
  color: #939CAB;
  font-size: 16px;
}
.common-input-styling > input:-moz-placeholder, .common-input-styling > textarea:-moz-placeholder {
  color: #939CAB;
  font-size: 16px;
}
.common-input-styling > input:-ms-input-placeholder, .common-input-styling > textarea:-ms-input-placeholder {
  color: #939CAB;
  font-size: 16px;
}
.common-input-styling > input:hover, .common-input-styling > textarea:hover {
  border: 2px solid #939CAB;
}
.common-input-styling > input:focus, .common-input-styling > textarea:focus {
  border: 2px solid #939CAB;
}
.common-input-styling > input:focus::-webkit-input-placeholder, .common-input-styling > textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.common-input-styling > input:focus::-moz-placeholder, .common-input-styling > textarea:focus::-moz-placeholder {
  opacity: 0;
}
.common-input-styling > input:focus:-moz-placeholder, .common-input-styling > textarea:focus:-moz-placeholder {
  opacity: 0;
}
.common-input-styling > input:focus:-ms-input-placeholder, .common-input-styling > textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.common-input-styling > textarea {
  min-height: 114px;
  resize: none;
}
.common-input-styling > textarea::-webkit-scrollbar {
  width: 4px;
}
.common-input-styling > textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.common-input-styling > textarea::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}

.checkbox-single {
  margin-bottom: 32px;
  font-size: 0;
}
.checkbox-single input {
  left: -9999px;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back {
  border: 2px solid #F96A24;
  background-color: #F96A24;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back .checkbox-mark {
  opacity: 1;
  transition: all 0.2s linear;
}
.checkbox-single .checkbox-label {
  margin: 0;
}
.checkbox-single .checkbox-title {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  color: #1D222B;
}
.checkbox-single .checkbox-title a {
  position: relative;
  color: #F96A24;
}
.checkbox-single .checkbox-title a:hover:before, .checkbox-single .checkbox-title a:hover:after {
  width: 100%;
  opacity: 1;
}
.checkbox-single .checkbox-title a:after {
  left: 0;
  background-color: #F96A24;
}
.checkbox-single .checkbox-title a:before, .checkbox-single .checkbox-title a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.checkbox-single .checkbox-title a:hover {
  color: #F96A24;
}
.checkbox-single .checkbox-title span {
  color: #F96A24;
}
.checkbox-single .checkbox-back {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.2s linear;
  border: 2px solid #E7E6E6;
  background-color: #fff;
  border-radius: 4px;
}
.checkbox-single .checkbox-back .checkbox-mark {
  transition: all 0.2s linear;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
}
.checkbox-single .checkbox-back .checkbox-mark img {
  width: 10px;
}
.checkbox-single:hover .checkbox-back {
  border: 2px solid #939CAB;
}

.common-input-styling > input.warning-validation, .common-input-styling > textarea.warning-validation {
  border: 2px solid #DC2626 !important;
}
.common-input-styling > input.warning-validation::-webkit-input-placeholder, .common-input-styling > textarea.warning-validation::-webkit-input-placeholder {
  color: #DC2626;
  font-size: 16px;
}
.common-input-styling > input.warning-validation::-moz-placeholder, .common-input-styling > textarea.warning-validation::-moz-placeholder {
  color: #DC2626;
  font-size: 16px;
}
.common-input-styling > input.warning-validation:-moz-placeholder, .common-input-styling > textarea.warning-validation:-moz-placeholder {
  color: #DC2626;
  font-size: 16px;
}
.common-input-styling > input.warning-validation:-ms-input-placeholder, .common-input-styling > textarea.warning-validation:-ms-input-placeholder {
  color: #DC2626;
  font-size: 16px;
}

.warning-validation .checkbox-back {
  border: 2px solid #DC2626 !important;
}

.success-message-wrapper {
  gap: 12px;
  background-color: #16A34A;
  border: 2px solid #16A34A;
  padding: 16px;
  max-width: 456px;
  display: flex;
  display: -webkit-flex;
}
.success-message-wrapper .success-inner {
  gap: 12px;
}
.success-message-wrapper .success-checkmark svg {
  width: 15px;
  height: 11px;
}
.success-message-wrapper .success-checkmark svg path {
  fill: #fff;
}
.success-message-wrapper .success-close svg {
  width: 12px;
  height: 12px;
}
.success-message-wrapper .success-close svg path {
  fill: #fff;
}
.success-message-wrapper .success-close:hover svg {
  animation: rotating 0.5s linear;
  -webkit-animation: rotating 0.5s linear;
}

.image-modal-window .modal {
  overflow-y: scroll;
}
.image-modal-window .modal::-webkit-scrollbar {
  width: 0;
}
.image-modal-window .modal::-webkit-scrollbar-track, .image-modal-window .modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.image-modal-window .modal.show {
  display: flex !important;
  display: -webkit-flex !important;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .modal-dialog {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}
.image-modal-window .modal-dialog .modal-content {
  background-color: transparent;
  border: none !important;
  border-radius: 0;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .align-modal-helper {
  padding: 16px !important;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .slide-image {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  width: 1420px;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  position: relative;
  margin: auto;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.image-modal-window .modal-dialog .modal-content .carousel, .image-modal-window .modal-dialog .modal-content .carousel-inner, .image-modal-window .modal-dialog .modal-content .carousel-item {
  height: 100% !important;
  background-color: transparent !important;
}
.image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: #F96A24;
  color: #fff;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  opacity: 0.75;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev img, .image-modal-window .carousel-control-next img {
  width: 22px !important;
  height: 15px !important;
}
.image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
  opacity: 1;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev {
  margin-left: 16px;
}
.image-modal-window .carousel-control-next {
  margin-right: 16px;
}
.image-modal-window .modal-cross {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: #F96A24;
  opacity: 0.75;
  padding: 0;
  border: none;
  cursor: pointer;
}
.image-modal-window .modal-cross img {
  width: 20px !important;
  height: 20px !important;
}
.image-modal-window .modal-cross:hover {
  opacity: 1;
}
.image-modal-window .modal-cross:focus {
  outline: none;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

@media screen and (max-width: 767px) {
  .image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover, .image-modal-window .modal-cross:hover {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:focus, .image-modal-window .carousel-control-next:focus, .image-modal-window .modal-cross:focus {
    opacity: 0.75;
  }
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.common-slick-carousel .slick-slide {
  padding: 0 12px;
}
.common-slick-carousel .slick-list {
  margin: 0 -12px;
}
.common-slick-carousel .slick-track {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
}
.common-slick-carousel .slick-slide {
  font-size: 0;
  height: inherit;
}
.common-slick-carousel .slick-slide > div {
  height: 100%;
}
.common-slick-carousel .slick-slide > div > div {
  height: 100%;
}
.common-slick-carousel .slick-slide {
  opacity: 1;
  transition: opacity 0.5s;
}
.common-slick-carousel .slick-current,
.common-slick-carousel .slick-current-clone-animate {
  opacity: 0.999;
}
.common-slick-carousel .slick-prev, .common-slick-carousel .slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 7px 13px;
  background-position: 50% 50%;
  background-color: #fff;
  border: 2px solid #C8CFDA;
  border-radius: 50%;
  top: 50%;
}
.common-slick-carousel .slick-prev svg, .common-slick-carousel .slick-next svg {
  width: 7px;
  height: 13px;
}
.common-slick-carousel .slick-prev svg path, .common-slick-carousel .slick-next svg path {
  transition: all 0.2s linear;
}
.common-slick-carousel .slick-prev:before, .common-slick-carousel .slick-next:before {
  content: none;
}
.common-slick-carousel .slick-prev:hover, .common-slick-carousel .slick-prev:focus, .common-slick-carousel .slick-next:hover, .common-slick-carousel .slick-next:focus {
  background-repeat: no-repeat;
  background-size: 7px 13px;
  background-position: 50% 50%;
}
.common-slick-carousel .slick-prev:focus, .common-slick-carousel .slick-next:focus {
  background-color: #fff;
  border: 2px solid #C8CFDA;
}
.common-slick-carousel .slick-prev:hover, .common-slick-carousel .slick-next:hover {
  background-color: #F96A24;
  border: 2px solid #F96A24;
}
.common-slick-carousel .slick-prev {
  background-image: url("../../images/slide-arrow-left-black.svg");
}
.common-slick-carousel .slick-prev:focus {
  background-image: url("../../images/slide-arrow-left-black.svg");
}
.common-slick-carousel .slick-prev:hover {
  background-image: url("../../images/slide-arrow-left-white.svg");
}
.common-slick-carousel .slick-next {
  background-image: url("../../images/slide-arrow-right-black.svg");
}
.common-slick-carousel .slick-next:focus {
  background-image: url("../../images/slide-arrow-right-black.svg");
}
.common-slick-carousel .slick-next:hover {
  background-image: url("../../images/slide-arrow-right-white.svg");
}

.common-slick-carousel.slick-slider {
  margin: 0;
}

.side-carousel-wrapper .slick-list {
  padding: 0 calc((100vw - 8px - 1480px) / 2 + 20px);
  margin: 0;
}
.side-carousel-wrapper .slick-slide {
  padding: 0 12px;
}
.side-carousel-wrapper .slick-prev {
  left: calc((100vw - 8px - 1480px) / 2 + 20px + 12px + 24px);
}
.side-carousel-wrapper .slick-next {
  right: calc((100vw - 8px - 1480px) / 2 + 20px + 12px + 24px);
}
.side-carousel-wrapper .slick-disabled {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1572px) {
  .side-carousel-wrapper .slick-prev {
    left: 48px;
  }
  .side-carousel-wrapper .slick-next {
    right: 48px;
  }
}
@media screen and (max-width: 1488px) {
  .side-carousel-wrapper .slick-list {
    padding: 0 32px;
    margin: 0 -8px;
  }
  .side-carousel-wrapper .slick-slide {
    padding: 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .common-slick-carousel {
    padding-right: 0 !important;
  }
  .common-slick-carousel .slick-dots {
    border-radius: 9999px;
    position: absolute;
    bottom: -32px;
    top: auto;
    width: calc(100% - 64px);
    margin: 0 32px;
    height: 2px;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #DEE4EB;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
  }
  .common-slick-carousel .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    flex-grow: 1;
    -webkit-flex-grow: 1;
  }
  .common-slick-carousel .slick-dots li button {
    width: 100%;
    height: 2px;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    position: relative;
  }
  .common-slick-carousel .slick-dots li button:before {
    content: none;
  }
  .common-slick-carousel .slick-dots li button:after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .common-slick-carousel .slick-dots .slick-active button {
    background-color: #0D0B2A;
    border-radius: 9999px;
  }
}
@media screen and (max-width: 500px) {
  .slick-prev, .slick-next {
    width: 32px;
    height: 32px;
  }
  .common-slick-carousel .slick-dots {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
  .side-carousel-wrapper .slick-list {
    padding: 0 16px;
    padding-right: 75px !important;
  }
  .side-carousel-wrapper .slick-prev {
    left: 32px;
  }
  .side-carousel-wrapper .slick-next {
    right: 32px;
  }
}
.common-socials {
  gap: 12px;
}
.common-socials .single-social-link {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
}
.common-socials .single-social-link svg {
  width: 17px;
  height: 17px;
}
.common-socials .single-social-link svg path {
  transition: all 0.2s linear;
}
.common-socials .single-social-link:hover {
  background-color: #C7551D;
}
.common-socials .single-social-link:hover svg path {
  fill: #fff;
}

.black-socials .single-social-link {
  border: 2px solid #C8CFDA;
  background-color: #fff;
}
.black-socials .single-social-link svg path {
  fill: #1D222B;
}
.black-socials .single-social-link:hover {
  background-color: #DEE4EB;
}
.black-socials .single-social-link:hover svg path {
  fill: #1D222B;
}

.white-socials .single-social-link {
  background-color: #F96A24;
}
.white-socials .single-social-link svg path {
  fill: #fff;
}

.footer-socials .single-social-link {
  border: 2px solid rgba(226, 228, 233, 0.5);
  font-family: FontBold;
}
.footer-socials .single-social-link svg path {
  fill: #fff;
}
.footer-socials .single-social-link:hover svg path {
  fill: #fff;
}

.subscribe-section-wrapper .dots-overlay {
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
  width: 960px;
  height: 939px;
}
.subscribe-section-wrapper .dots-overlay-left {
  left: -32%;
}
.subscribe-section-wrapper .dots-overlay-right {
  right: -32%;
}

.common-subscribe .subscribe-title {
  margin-bottom: 0;
}
.common-subscribe .common-form-preloader {
  top: calc(100% + 3px);
}
.common-subscribe .subscribe-form {
  gap: 16px;
}
.common-subscribe .subscribe-form-main {
  gap: 10px;
}
.common-subscribe .checkbox-single .checkbox-back {
  margin-right: 12px;
}
.common-subscribe .subscribe-input-wrapper {
  width: calc(100% - 48px - 10px);
}
.common-subscribe .subscribe-form-wrapper {
  max-width: 456px;
}
.common-subscribe .subscribe-submit {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 8px;
}
.common-subscribe .subscribe-submit svg {
  width: 15px;
  height: 15px;
}
.common-subscribe .subscribe-submit svg path {
  transition: all 0.2s linear;
}
.common-subscribe .subscribe-checkbox {
  margin-bottom: 0;
}

.subscribe-section-wrapper {
  margin: 24px 0 80px;
}
.subscribe-section-wrapper .subscribe-section-container-inner {
  padding: 64px 48px;
  background-color: #0D0B2A;
}

.subscribe-section .subscribe-main {
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.subscribe-section .subscribe-title {
  font-size: 36px;
  line-height: 120%;
  font-family: FontSemiBoldAdditional;
  color: #fff;
  margin: 0;
}
.subscribe-section .subscribe-title span {
  color: #F96A24;
}
.subscribe-section .subscribe-subtext {
  font-size: 16px;
  line-height: 24px;
  color: #E2E4E9;
}
.subscribe-section .checkbox-title {
  color: #fff;
}
.subscribe-section .subscribe-submit {
  background-color: #F96A24;
  border: 2px solid #F96A24;
  border-radius: 500%;
}
.subscribe-section .subscribe-submit svg path {
  fill: #fff;
}
.subscribe-section .subscribe-submit:hover {
  background-color: #C7551D;
  border: 2px solid #C7551D;
}
.subscribe-section .subscribe-form-wrapper {
  margin: 0 auto;
}

.footer-subscribe {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  gap: 20px;
}
.footer-subscribe .subscribe-main {
  gap: 12px;
  width: calc(100% - 456px - 20px);
}
.footer-subscribe .subscribe-title {
  font-size: 22px;
  line-height: 140%;
  color: #fff;
}
.footer-subscribe .subscribe-title span {
  color: #fff;
}
.footer-subscribe .subscribe-subtext {
  color: #DEE4EB;
  font-size: 14px;
  line-height: 150%;
}
.footer-subscribe .subscribe-submit {
  background-color: #F96A24;
  border: 2px solid #F96A24;
  border-radius: 500%;
}
.footer-subscribe .subscribe-submit svg path {
  fill: #fff;
}
.footer-subscribe .subscribe-submit:hover {
  background-color: #C7551D;
  border: 2px solid #C7551D;
}
.footer-subscribe .checkbox-title {
  color: #fff;
}

@media screen and (max-width: 1680px) {
  .subscribe-section-wrapper {
    margin: 24px 0 64px;
  }
  .subscribe-section-wrapper .subscribe-section-container-inner {
    padding: 48px;
  }
  .subscribe-section-wrapper .subscribe-section .subscribe-main {
    gap: 12px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1366px) {
  .subscribe-section-wrapper .dots-overlay-left {
    left: -40%;
  }
  .subscribe-section-wrapper .dots-overlay-right {
    right: -40%;
  }
}
@media screen and (max-width: 1280px) {
  .subscribe-section-wrapper {
    margin: 24px 0 48px;
  }
  .subscribe-section-wrapper .subscribe-section-container-inner {
    padding: 32px;
  }
  .subscribe-section-wrapper .dots-overlay-left {
    left: -55%;
  }
  .subscribe-section-wrapper .dots-overlay-right {
    right: -55%;
  }
  .subscribe-section-wrapper .subscribe-section .subscribe-main {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1080px) {
  .subscribe-section-wrapper .dots-overlay-left {
    left: -65%;
  }
  .subscribe-section-wrapper .dots-overlay-right {
    right: -65%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-subscribe .subscribe-main {
    width: 100%;
  }
  .dots-overlay-left {
    left: -50%;
  }
  .dots-overlay-right {
    right: -50%;
  }
}
@media screen and (max-width: 970px) {
  .subscribe-section-wrapper .dots-overlay {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .subscribe-section-wrapper .subscribe-section-container-inner {
    padding: 24px;
  }
  .subscribe-section-wrapper .subscribe-section .subscribe-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .subscribe-section-wrapper .subscribe-section-container-inner {
    padding: 24px 16px;
  }
}
.common-contacts {
  gap: 12px;
}
.common-contacts .single-contact-wrapper {
  gap: 6px;
}
.common-contacts .single-contact a {
  gap: 12px;
}
.common-contacts .single-contact a svg {
  width: 20px;
  height: 20px;
}
.common-contacts .single-contact a svg path {
  transition: all 0.2s linear;
}
.common-contacts .single-contact a span {
  letter-spacing: 0.16px;
}

.header-contacts .single-contact a {
  gap: 10px;
  font-family: FontBold;
}
.header-contacts .single-contact a svg path {
  fill: #fff;
}
.header-contacts .single-contact a span {
  color: #fff;
}
.header-contacts .single-contact a:hover svg path {
  fill: #F96A24;
}
.header-contacts .single-contact a:hover span {
  color: #F96A24;
}

.footer-contacts .single-contact a {
  gap: 10px;
}
.footer-contacts .single-contact a svg path {
  fill: #fff;
}
.footer-contacts .single-contact a span {
  color: #fff;
}
.footer-contacts .single-contact a:hover svg path {
  fill: #F96A24;
}
.footer-contacts .single-contact a:hover span {
  color: #F96A24;
}

.native-contacts .single-contact a svg path {
  fill: #1D222B;
}
.native-contacts .single-contact a span {
  color: #1D222B;
}
.native-contacts .single-contact a:hover svg path {
  fill: #F96A24;
}
.native-contacts .single-contact a:hover span {
  color: #F96A24;
}

.common-selectize-wrapper .selectize-control {
  font-size: 0;
}
.common-selectize-wrapper .selectize-input {
  font-size: 0 !important;
  line-height: normal !important;
  box-shadow: none !important;
  transition: all 0.2s linear !important;
  width: 100% !important;
}
.common-selectize-wrapper .selectize-input:focus {
  outline: none;
}
.common-selectize-wrapper .selectize-input:before, .common-selectize-wrapper .selectize-input:after {
  display: none !important;
}
.common-selectize-wrapper .selectize-input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100% !important;
  margin: 0 !important;
}
.common-selectize-wrapper .selectize-input .item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100% !important;
}
.common-selectize-wrapper .selectize-input .item ~ input {
  display: none !important;
}
.common-selectize-wrapper .selectize-dropdown {
  background-color: #fff !important;
  overflow: hidden !important;
  cursor: pointer;
  box-shadow: none;
  width: 100% !important;
  left: 0 !important;
  border: 2px solid #E7E6E6 !important;
  border-radius: 8px !important;
}
.common-selectize-wrapper .selectize-dropdown .active {
  background-color: #F96A24 !important;
  color: #fff !important;
}
.common-selectize-wrapper .selectize-dropdown .selected {
  background-color: #fff;
  color: #1D222B;
}

.header-languages-selectize {
  width: 48px;
}
.header-languages-selectize .selectize-input {
  padding: 8px 4px !important;
  border-radius: 0 !important;
  border: 2px solid transparent !important;
  background-color: transparent !important;
  background-image: url("../../images/dropdown-black.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 4px) 50% !important;
  background-size: 13px 7px !important;
}
.header-languages-selectize .selectize-input input, .header-languages-selectize .selectize-input .item {
  font-size: 14px !important;
  line-height: 21px !important;
  color: #1D222B;
  font-family: FontMediumAdditional;
  transition: all 0.2s linear;
}
.header-languages-selectize .selectize-dropdown {
  text-align: center;
  top: 40px !important;
}
.header-languages-selectize .selectize-dropdown .option {
  padding: 4px 0;
  font-size: 14px;
  line-height: 21px;
  color: #1D222B;
  font-family: FontMediumAdditional;
  letter-spacing: 0.14px;
}
.header-languages-selectize .selectize-dropdown-content::-webkit-scrollbar {
  width: 0;
}
.header-languages-selectize .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.header-languages-selectize .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.header-languages-mobile .header-languages-selectize {
  width: 40px;
}
.header-languages-mobile .header-languages-selectize .selectize-input {
  padding: 8px 0 !important;
  background-position: 100% 50% !important;
  background-image: url("../../images/dropdown-white.svg") !important;
}
.header-languages-mobile .header-languages-selectize .selectize-input input, .header-languages-mobile .header-languages-selectize .selectize-input .item {
  font-size: 16px !important;
  line-height: 150% !important;
  color: #fff;
  font-family: FontBold;
  transition: all 0.2s linear;
}

.default-selectize .selectize-input {
  padding: 10px 45px 10px 16px !important;
  border-radius: 8px !important;
  border: 2px solid #E7E6E6 !important;
  background-color: #fff !important;
  background-image: url("../../images/dropdown-grey.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 16px) 50% !important;
  background-size: 13px 7px !important;
  transition: all 0.2s linear;
}
.default-selectize .selectize-input:hover {
  border: 2px solid #939CAB !important;
}
.default-selectize .selectize-input input, .default-selectize .selectize-input .item {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #1D222B;
  transition: all 0.2s linear;
}
.default-selectize .selectize-input input::-webkit-input-placeholder {
  color: #1D222B;
}
.default-selectize .selectize-input input::-moz-placeholder {
  color: #1D222B;
}
.default-selectize .selectize-input input:-moz-placeholder {
  color: #1D222B;
}
.default-selectize .selectize-input input:-ms-input-placeholder {
  color: #1D222B;
}
.default-selectize .selectize-dropdown {
  top: 47px !important;
}
.default-selectize .selectize-dropdown .option {
  padding: 10px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #1D222B;
}
.default-selectize .selectize-dropdown-content::-webkit-scrollbar {
  width: 4px;
}
.default-selectize .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: #fff;
}
.default-selectize .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}
.default-selectize .input-active {
  background-color: #fff !important;
  border: 2px solid #939CAB !important;
  border-radius: 8px 8px 0 0 !important;
}
.default-selectize .input-active ~ .selectize-dropdown {
  border: 2px solid #939CAB !important;
  border-radius: 0 0 8px 8px !important;
}

.default-selectize.warning-validation .selectize-input {
  border: 2px solid #DC2626 !important;
  background-image: url("../../images/dropdown-warning.svg") !important;
}
.default-selectize.warning-validation .selectize-input input::-webkit-input-placeholder {
  color: #DC2626;
}
.default-selectize.warning-validation .selectize-input input::-moz-placeholder {
  color: #DC2626;
}
.default-selectize.warning-validation .selectize-input input:-moz-placeholder {
  color: #DC2626;
}
.default-selectize.warning-validation .selectize-input input:-ms-input-placeholder {
  color: #DC2626;
}
.default-selectize.warning-validation .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #DC2626;
}
.default-selectize.warning-validation .input-active {
  border: 2px solid #DC2626 !important;
}
.default-selectize.warning-validation .input-active ~ .selectize-dropdown {
  border: 2px solid #DC2626 !important;
}

.hero-wrapper .hero-main-inner, .hero-wrapper .wheelsbook-wrapper {
  padding: 24px 0;
}
.hero-wrapper .hero-title {
  color: #fff;
  margin-bottom: 12px;
}
.hero-wrapper .hero-text {
  width: 100%;
  margin: 0 auto;
}
.hero-wrapper .dots-overlay {
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
  width: 725px;
  height: 709px;
}
.hero-wrapper .dots-overlay-left {
  left: -32%;
}
.hero-wrapper .dots-overlay-right {
  right: -32%;
}

.hero-big .hero-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0.05%, rgba(0, 0, 0, 0.4) 26.66%, rgba(0, 0, 0, 0.08) 99.95%);
}
.hero-big .hero-container {
  min-height: 620px;
}

.hero-small .hero-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0.05%, rgba(0, 0, 0, 0.4) 26.66%, rgba(0, 0, 0, 0.08) 99.95%);
}
.hero-small .hero-container {
  min-height: 500px;
}
.hero-small .hero-text {
  color: #DEE4EB;
}
.hero-small .hero-block-image, .hero-small .hero-gradient {
  border-radius: 10px;
}

.hero-header {
  padding: 0;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-logo .header-logo-black {
  opacity: 0;
  visibility: hidden;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-logo .header-logo-white {
  opacity: 1;
  visibility: visible;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-menu-desktop > ul > li > a, .hero-header .navbar-header:not(.navbar-scrolled) .header-additional-menu-desktop > ul > li > a {
  color: #fff;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-menu-desktop > ul > li > a:hover, .hero-header .navbar-header:not(.navbar-scrolled) .header-additional-menu-desktop > ul > li > a:hover {
  color: #3845BB;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-menu-desktop > ul .current-menu-item > a, .hero-header .navbar-header:not(.navbar-scrolled) .header-menu-desktop > ul .current-page-ancestor > a, .hero-header .navbar-header:not(.navbar-scrolled) .header-menu-desktop > ul .current-menu-ancestor > a, .hero-header .navbar-header:not(.navbar-scrolled) .header-additional-menu-desktop > ul .current-menu-item > a, .hero-header .navbar-header:not(.navbar-scrolled) .header-additional-menu-desktop > ul .current-page-ancestor > a, .hero-header .navbar-header:not(.navbar-scrolled) .header-additional-menu-desktop > ul .current-menu-ancestor > a {
  color: #3845BB;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-phone-link {
  color: #fff;
  border: 2px solid rgba(226, 228, 233, 0.5);
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-phone-link svg path {
  fill: #fff;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-phone-link:hover {
  border: 2px solid #F96A24;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-languages-desktop .selectize-input {
  background-image: url("../../images/dropdown-white.svg") !important;
}
.hero-header .navbar-header:not(.navbar-scrolled) .header-languages-desktop .selectize-input input, .hero-header .navbar-header:not(.navbar-scrolled) .header-languages-desktop .selectize-input .item {
  color: #fff;
}

@media screen and (max-width: 1366px) {
  .hero-wrapper .dots-overlay-left {
    left: -40%;
  }
  .hero-wrapper .dots-overlay-right {
    right: -40%;
  }
}
@media screen and (max-width: 1280px) {
  .hero-big .hero-container {
    min-height: 457px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-wrapper .dots-overlay-left {
    left: -50%;
  }
  .hero-wrapper .dots-overlay-right {
    right: -50%;
  }
}
@media screen and (max-width: 767px) {
  .hero-wrapper .hero-title {
    margin-bottom: 24px;
  }
  .hero-wrapper .hero-text {
    max-width: none;
  }
  .hero-wrapper .dots-overlay {
    width: 602px;
    height: 589px;
  }
}
@media screen and (max-width: 615px) {
  .hero-wrapper .dots-overlay-left {
    left: -70%;
  }
  .hero-wrapper .dots-overlay-right {
    right: -70%;
  }
}
@media screen and (max-width: 500px) {
  .hero-wrapper .dots-overlay-left {
    left: -95%;
  }
  .hero-wrapper .dots-overlay-right {
    right: -95%;
  }
}
@media screen and (max-width: 420px) {
  .hero-wrapper .dots-overlay-left {
    left: -120%;
  }
  .hero-wrapper .dots-overlay-right {
    right: -120%;
  }
}
.info-block-wrapper {
  margin: 24px 0 80px;
}
.info-block-wrapper .dots-overlay {
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
}
.info-block-wrapper .dots-overlay-left {
  left: -25%;
}
.info-block-wrapper .dots-overlay-right {
  right: -25%;
}
.info-block-wrapper .info-block-container {
  background-color: #0D0B2A;
  padding: 64px 48px;
  border-radius: 10px;
}
.info-block-wrapper .info-block-title {
  margin-bottom: 20px;
}
.info-block-wrapper .info-block-content {
  margin-bottom: 20px;
  z-index: 2;
}
.info-block-wrapper .info-block-wysiwyg {
  max-width: 420px;
  margin: 0 auto;
  color: #E2E4E9;
}
.info-block-wrapper .info-block-buttons {
  gap: 16px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.info-block-wrapper .info-block-button {
  z-index: 2;
}

@media screen and (max-width: 1680px) {
  .info-block-wrapper {
    margin: 24px 0 64px;
  }
  .info-block-wrapper .info-block-container {
    padding: 48px 32px;
  }
}
@media screen and (max-width: 1280px) {
  .info-block-wrapper {
    margin: 24px 0 48px;
  }
  .info-block-wrapper .dots-overlay-left {
    left: -50%;
  }
  .info-block-wrapper .dots-overlay-right {
    right: -50%;
  }
  .info-block-wrapper .info-block-container {
    padding: 40px 16px;
  }
}
@media screen and (max-width: 920px) {
  .info-block-wrapper .dots-overlay-left {
    left: 50%;
    transform: translate(-50%, -50%);
    height: 620px;
  }
  .info-block-wrapper .dots-overlay-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .info-block-wrapper .info-block-content, .info-block-wrapper .info-block-buttons {
    width: 100%;
    position: relative;
  }
  .info-block-wrapper .info-block-wysiwyg {
    max-width: none;
  }
  .info-block-wrapper .info-block-buttons {
    display: block !important;
  }
  .info-block-wrapper .info-block-button {
    margin-bottom: 16px;
    position: relative;
  }
  .info-block-wrapper .info-block-button a {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .info-block-wrapper .info-block-title {
    font-size: 24px;
  }
}
.blog-list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 24px;
}

.blog-list {
  padding: 0 32px;
  max-width: 1480px;
  margin: 0 auto;
}

.single-blog-article {
  width: calc((100% - 48px) / 3.001);
  padding: 24px;
}
.single-blog-article:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.single-blog-article .single-blog-article-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 5.38%, rgba(0, 0, 0, 0) 100%);
}
.single-blog-article .single-blog-article-inner {
  top: 24px;
  left: 24px;
  height: calc(100% - 48px);
  width: calc(100% - 48px);
  gap: 24px;
}
.single-blog-article .single-blog-article-inner::-webkit-scrollbar {
  width: 0;
}
.single-blog-article .single-blog-article-inner::-webkit-scrollbar-track, .single-blog-article .single-blog-article-inner::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.single-blog-article .single-blog-article-categories {
  margin-bottom: 16px;
  gap: 12px;
}
.single-blog-article .single-blog-article-category-link {
  font-size: 12px;
  line-height: 18px;
  padding: 4px 10px;
  border: 2px solid #fff;
  color: #1D222B;
  background-color: #fff;
  white-space: nowrap;
}
.single-blog-article .single-blog-article-category-link:hover {
  background-color: #F96A24;
  color: #fff;
  border: 2px solid #F96A24;
}
.single-blog-article .single-blog-article-title {
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px), (max-width: 500px) {
  .blog-list {
    gap: 16px;
  }
  .single-blog-article {
    padding: 16px;
  }
  .single-blog-article .single-blog-article-inner {
    top: 16px;
    left: 16px;
    height: calc(100% - 32px);
    width: calc(100% - 32px);
    gap: 16px;
  }
  .single-blog-article .single-blog-article-categories {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .single-blog-article {
    width: calc((100% - 32px) / 3.001);
  }
}
@media screen and (min-width: 820px) and (max-width: 1024px) {
  .single-blog-article .single-blog-article-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 819px) {
  .single-blog-article .single-blog-article-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .single-blog-article {
    width: 100%;
  }
  .blog-list {
    margin: 0;
    padding: 0;
    max-width: none;
  }
  .blog-list .slick-list {
    margin-bottom: 64px;
  }
  .blog-section .common-slick-carousel .slick-dots {
    bottom: 32px;
  }
}
.stars-wrapper {
  gap: 8px;
}
.stars-wrapper .single-star svg {
  width: 15px;
  height: 15px;
}

.reviews-section .reviews-section-main-statistic-wrapper {
  margin-bottom: 24px;
}
.reviews-section .reviews-section-main-statistic-titles {
  margin-bottom: 4px;
  gap: 12px;
}
.reviews-section .reviews-section-main-statistic-titles .google-logo {
  height: 32px;
}
.reviews-section .reviews-section-main-statistic-titles .google-reviews-title {
  font-family: FontMediumExtra;
  font-size: 24px;
  line-height: 32px;
  color: #1D222B;
}
.reviews-section .reviews-section-main-statistic-titles {
  margin-bottom: 4px;
  gap: 12px;
}
.reviews-section .reviews-stars-wrapper {
  gap: 8px;
}
.reviews-section .reviews-section-main-rating-wrapper {
  gap: 24px;
}
.reviews-section .reviews-section-main-statistic, .reviews-section .reviews-section-main-rating {
  gap: 12px;
}
.reviews-section .reviews-section-main-rating-value {
  top: 0.5px;
}
.reviews-section .reviews-section-main-separator {
  width: 1px;
  height: 24px;
  background-color: #E7E6E6;
}
.reviews-section .reviews-section-main-stars {
  width: 120px;
  height: 24px;
}
.reviews-section .reviews-section-main-stars img, .reviews-section .reviews-section-main-stars svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 24px;
}

@media screen and (max-width: 1572px) {
  .reviews-section .slick-prev {
    left: 32px;
  }
  .reviews-section .slick-next {
    right: 32px;
  }
}
@media screen and (max-width: 767px) {
  .reviews-section .reviews-section-main-statistic-wrapper {
    margin-bottom: 16px;
  }
}
.single-review .single-review-top-part {
  margin-bottom: 20px;
}
.single-review .single-review-image {
  width: 56px;
  height: 56px;
}
.single-review .single-review-image .google-logo {
  width: 22px;
  height: 22px;
  bottom: 0;
  right: 0;
}
.single-review .single-review-bottom-part {
  gap: 8px;
}
.single-review .single-review-name {
  margin-bottom: 4px;
}
.single-review .single-review-name a {
  color: #F96A24;
  transition: all 0.2s linear;
}
.single-review .single-review-name a:hover {
  color: #AE4A19;
}
.single-review .single-review-image-placeholder {
  background-color: #EDECEA;
}
.single-review .single-review-text > p, .single-review .single-review-text > ul li {
  font-size: 16px;
  line-height: 24px;
  color: #1D222B;
}
.single-review .single-review-text > p > a:before, .single-review .single-review-text > p > a:after, .single-review .single-review-text > ul li > a:before, .single-review .single-review-text > ul li > a:after {
  bottom: 0;
}
.single-review .single-review-rating {
  margin-bottom: 20px;
  gap: 7px;
}
.single-review .single-review-rating .single-star svg {
  width: 13px;
  height: 12px;
}
.single-review .single-review-name {
  margin-bottom: 4px;
}

@media screen and (max-width: 500px) {
  .single-review .single-review-image {
    margin-bottom: 16px;
  }
  .single-review .single-review-rating {
    margin-bottom: 8px;
  }
}
.icons-content-section {
  margin: 100px 0;
}
.icons-content-section .icons-content-inner {
  border-radius: 10px;
  background-color: #0D0B2A;
  padding: 80px 48px;
}
.icons-content-section .dots-overlay {
  object-fit: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icons-content-section .icons-content-title, .icons-content-section .icons-content {
  margin-bottom: 20px;
}
.icons-content-section .icons-content {
  color: #DEE4EB;
}
.icons-content-section .icons-content-title {
  color: #fff;
}
.icons-content-section .icons-content {
  max-width: 464px;
}
.icons-content-section .single-cell-icon {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 50%;
}
.icons-content-section .single-cell-icon .icon-blur {
  top: 0;
  left: 0;
  background-color: #E4E3E1;
  filter: blur(93.5px);
}
.icons-content-section .single-cell-icon .icon-stroke {
  border: 3px solid #858482;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  left: -7px;
  top: -7px;
  border-radius: 50%;
}
.icons-content-section .single-cell-icon img {
  width: 20px;
  height: 20px;
}
.icons-content-section .single-cell-subtext {
  color: #E2E4E9;
}

.icons-content-default .icons-content-main {
  margin-bottom: 64px;
  text-align: center;
}
.icons-content-default .icons-container {
  gap: 40px 24px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
}
.icons-content-default .single-cell {
  width: calc((100% - 72px) / 4.001);
}
.icons-content-default .icons-content, .icons-content-default .single-cell-icon {
  margin-left: auto;
  margin-right: auto;
}
.icons-content-default .single-cell-icon {
  margin-bottom: 24px;
}
.icons-content-default .single-cell-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

.icons-content-columns-icons .icons-content-inner, .icons-content-columns-icons .single-cell, .icons-content-columns-numeric .icons-content-inner, .icons-content-columns-numeric .single-cell {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.icons-content-columns-icons .icons-content-inner, .icons-content-columns-numeric .icons-content-inner {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.icons-content-columns-icons .single-cell, .icons-content-columns-numeric .single-cell {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  gap: 24px 40px;
}
.icons-content-columns-icons .single-cell-title, .icons-content-columns-numeric .single-cell-title {
  font-size: 20px;
  line-height: 30px;
  margin: 10px 0;
}
.icons-content-columns-icons .single-cell-content, .icons-content-columns-numeric .single-cell-content {
  width: calc(100% - 48px - 40px);
}

.icons-content-columns-icons .icons-content-main {
  width: 456px;
}
.icons-content-columns-icons .icons-container {
  width: calc(100% - 456px - 24px);
}
.icons-content-columns-icons .single-cell {
  margin-bottom: 40px;
}

.icons-content-columns-numeric .icons-content-main, .icons-content-columns-numeric .icons-container {
  width: calc(50% - 12px);
}
.icons-content-columns-numeric .single-cell {
  position: relative;
  margin-bottom: 64px;
}
.icons-content-columns-numeric .single-cell:before {
  content: "";
  display: block;
  background-color: #858482;
  position: absolute;
  top: 72px;
  left: 23.5px;
  width: 1px;
  height: calc(100% - 32px);
}
.icons-content-columns-numeric .single-cell:nth-last-of-type(1):before {
  content: none;
}
.icons-content-columns-numeric .single-cell-icon span {
  font-size: 18px;
  line-height: 27px;
  font-family: FontBoldAdditional;
  color: #1D222B;
}

@media screen and (max-width: 1680px) {
  .icons-content-section {
    margin: 64px 0;
  }
  .icons-content-default .icons-content-main {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .icons-content-section {
    margin: 48px 0;
  }
  .icons-content-section .icons-content-title, .icons-content-section .icons-content {
    margin-bottom: 24px;
  }
  .icons-content-section .icons-content-inner {
    padding: 64px 32px;
  }
}
@media screen and (max-width: 1024px) {
  .icons-content-default .single-cell {
    width: calc((100% - 48px) / 3.001);
  }
  .icons-content-columns-icons .icons-content-main, .icons-content-columns-icons .icons-container, .icons-content-columns-numeric .icons-content-main, .icons-content-columns-numeric .icons-container {
    width: 100%;
  }
  .icons-content-columns-icons .icons-content-inner, .icons-content-columns-numeric .icons-content-inner {
    gap: 32px;
  }
  .icons-content-columns-icons .icons-content, .icons-content-columns-numeric .icons-content {
    max-width: none;
  }
  .icons-content-columns-icons .icons-content-title, .icons-content-columns-numeric .icons-content-title {
    margin-bottom: 16px;
  }
  .icons-content-columns-icons .single-cell, .icons-content-columns-numeric .single-cell {
    gap: 24px;
  }
  .icons-content-columns-icons .single-cell-content, .icons-content-columns-numeric .single-cell-content {
    width: calc(100% - 48px - 24px);
  }
  .icons-content-section .icons-content-inner {
    padding: 48px 32px;
  }
}
@media screen and (max-width: 767px) {
  .icons-content-default .single-cell-icon {
    margin: 0;
    width: 48px;
  }
  .icons-content-default .icons-content-inner {
    padding: 40px 24px;
  }
  .icons-content-default .single-cell {
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .icons-content-default .dots-overlay {
    object-fit: cover;
  }
  .icons-content-default .single-cell-content {
    width: calc(100% - 24px - 48px);
  }
  .icons-content-default .icons-content-section .icons-content-inner {
    padding: 32px;
  }
}
.locations-title {
  margin-bottom: 64px;
}

.info-block-wrapper .info-block-wysiwyg {
  max-width: 500px;
}

.locations-section .locations-list {
  gap: 24px;
}
.locations-section .single-location {
  width: calc((100% - 72px) / 4.001);
  border-radius: 10px;
  border: 2px solid #C8CFDA;
  background-color: #fff;
}
.locations-section .single-location-image {
  border-radius: 8px 8px 0 0;
}
.locations-section .single-location-image:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
.locations-section .single-location-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgb(0, 0, 0) 95%);
}
.locations-section .single-location-inner {
  padding: 20px;
}
.locations-section .single-location-button {
  padding: 0 20px 20px 20px;
}
.locations-section .location-name {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 4px;
}
.locations-section .location-place {
  gap: 6px;
  color: #939CAB;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 150%;
}
.locations-section .location-place svg {
  width: 16px;
  height: 16px;
}
.locations-section .location-place svg path {
  fill: #939CAB;
}

@media screen and (max-width: 1280px) {
  .locations-title {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1271px) {
  .locations-section .single-location {
    width: calc(50% - 12px);
  }
  .locations-section .single-location-image {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .locations-section-mobile, .locations-section-button-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .info-block-wrapper .info-block-wysiwyg {
    max-width: none;
  }
  .locations-section-inner {
    margin-bottom: 64px;
  }
  .locations-title {
    margin-bottom: 40px;
  }
  .locations-section-desktop, .locations-section-button-desktop {
    display: none;
  }
  .locations-section .single-location {
    width: 100%;
  }
}
.fleet-categories-section .single-fleet-category-card-inner {
  padding: 20px;
  border: 2px solid #C8CFDA;
  background: linear-gradient(165deg, #ECF0F3 5.28%, #FFF 65.22%);
  min-height: 420px;
  transition: all 0.2s linear;
}
.fleet-categories-section .single-fleet-category-card-inner:hover {
  border: 2px solid #939CAB;
}
.fleet-categories-section .fleet-category-card-main {
  margin-bottom: 20px;
}
.fleet-categories-section .common-card-data {
  flex-direction: row-reverse;
}
.fleet-categories-section .common-card-price span {
  font-size: 20px;
  line-height: 36px;
}
.fleet-categories-section .container-placeholder {
  height: 258px;
  align-content: center;
}
.fleet-categories-section .container-placeholder .common-card-image-front {
  left: unset !important;
}
.fleet-categories-section .common-card-image {
  margin-bottom: 0;
}

.fleet-categories-section-carousel .slick-slide {
  padding-top: 9px;
  padding-bottom: 9px;
}

@media screen and (max-width: 1488px) {
  .fleet-categories-section .single-fleet-category-card-inner {
    padding: 16px;
  }
}
@media screen and (min-width: 768px) {
  .fleet-categories-section .fleet-categories-section-button-mobile {
    display: none;
  }
  .fleet-categories-section .slick-dots {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .fleet-categories-section .fleet-categories-section-button-desktop {
    display: none;
  }
  .fleet-categories-section .fleet-categories-section-carousel {
    margin-bottom: 48px !important;
  }
  .fleet-categories-section .slick-dots {
    bottom: -16px;
  }
}
@media screen and (max-width: 500px) {
  .fleet-categories-section .common-card-price {
    justify-content: start !important;
  }
}
.about-us-info-block .about-us-info-block-inner {
  padding: 64px 48px;
  background-color: #0D0B2A;
  border-radius: 10px;
}
.about-us-info-block .about-us-info-block-title {
  margin-bottom: 20px;
  color: #fff;
  z-index: 2;
}
.about-us-info-block .about-us-info-block-wysiwyg {
  margin: 0 auto 20px;
  color: #DEE4EB;
  max-width: 464px;
  z-index: 2;
}
.about-us-info-block .about-us-info-block-button {
  z-index: 2;
}
.about-us-info-block .dots-overlay {
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
}
.about-us-info-block .dots-overlay-left {
  left: -25%;
}
.about-us-info-block .dots-overlay-right {
  right: -25%;
}

@media screen and (max-width: 1440px) {
  .about-us-info-block .about-us-info-block-inner {
    padding: 48px 24px;
  }
}
@media screen and (max-width: 1280px) {
  .about-us-info-block .about-us-info-block-inner {
    padding: 32px 24px;
  }
  .about-us-info-block .dots-overlay-left {
    left: -50%;
  }
  .about-us-info-block .dots-overlay-right {
    right: -50%;
  }
}
@media screen and (max-width: 920px) {
  .about-us-info-block .dots-overlay-left {
    left: 50%;
    transform: translate(-50%, -50%);
    height: 620px;
  }
  .about-us-info-block .dots-overlay-right {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .about-us-info-block .pattern-overlay-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .about-us-info-block .about-us-info-block-wysiwyg {
    max-width: none;
    position: relative;
  }
  .about-us-info-block .about-us-info-block-title {
    font-size: 24px;
    position: relative;
  }
  .about-us-info-block .about-us-info-block-button {
    position: relative;
  }
  .about-us-info-block .about-us-info-block-button a {
    width: 100%;
  }
}
.about-us-main {
  margin: 40px 0 64px;
}
.about-us-main .about-us-main-columns {
  gap: 24px;
}
.about-us-main .about-us-main-wysiwyg {
  margin-bottom: 64px;
}
.about-us-main .about-us-main-column {
  width: calc((100% - 72px) / 4.001);
  border-radius: 8px;
  border: 2px solid #DEE4EB;
  padding: 16px;
}
.about-us-main .about-us-main-title {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 2px;
}
.about-us-main .about-us-main-value {
  font-size: 36px;
  line-height: 120%;
}

@media screen and (max-width: 1680px) {
  .about-us-main .about-us-main-wysiwyg {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .about-us-main .about-us-main-wysiwyg {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .about-us-main .about-us-main-wysiwyg {
    width: 100%;
  }
  .about-us-main .about-us-main-column {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .about-us-main .about-us-main-title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 150%;
  }
  .about-us-main .about-us-main-value {
    font-size: 30px;
  }
}
.about-us-team .about-us-team-list {
  gap: 48px 24px;
}
.about-us-team .single-member {
  width: calc((100% - 48px) / 3.001);
}
.about-us-team .single-member-image {
  margin-bottom: 24px;
}
.about-us-team .single-member-image:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.about-us-team .single-member-data-inner {
  margin-bottom: 24px;
}
.about-us-team .single-member-position {
  margin-bottom: 4px;
}
.about-us-team .single-member-name {
  font-size: 22px;
  line-height: 140%;
}
.about-us-team .common-socials {
  justify-content: start;
}

@media screen and (max-width: 1280px) {
  .about-us-team .about-us-team-load-more-wrapper {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .about-us-team .single-member {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .about-us-team .single-member {
    width: 100%;
  }
}
.about-us-history {
  margin: 100px 0;
}
.about-us-history .slick-track .slick-slide:last-child div .single-history:after {
  content: none;
}
.about-us-history .single-history:after {
  content: "";
  display: block;
  width: calc(100% + 32px);
  background-color: #DEE4EB;
  height: 1px;
  position: absolute;
  top: 12px;
  z-index: 0;
}
.about-us-history .single-history-year {
  padding: 4px 10px;
  font-size: 12px;
  width: fit-content;
  line-height: 150%;
  background-color: #F96A24;
  margin-bottom: 20px;
  border-radius: 8px;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1680px) {
  .about-us-history {
    margin: 64px 0;
  }
}
@media screen and (max-width: 1488px) {
  .about-us-history .single-history-year {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .about-us-history {
    margin: 48px 0;
  }
}
@media screen and (max-width: 500px) {
  .about-us-history .side-carousel-wrapper .slick-list {
    padding: 0 100px 0 16px;
  }
}
.categories-row-wrapper {
  margin-bottom: 40px;
}

.categories-row-link-wrapper {
  display: none !important;
}

.categories-row-inner {
  display: block !important;
}

.categories-row {
  gap: 10px;
}
.categories-row .single-category {
  font-size: 0;
}
.categories-row .single-category-link {
  padding: 8px 16px;
  color: #1D222B;
  background-color: #fff;
  border-radius: 9999px;
  font-family: FontRegular;
  font-size: 16px;
  line-height: 150%;
}
.categories-row .single-category-link:hover {
  color: #fff;
  background-color: #0D0B2A;
}
.categories-row .active.single-category-link {
  color: #fff;
  background-color: #0D0B2A;
}

@media screen and (max-width: 1680px) {
  .categories-row-wrapper {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .categories-row-wrapper {
    margin-bottom: 24px;
  }
}
.fleet-list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 24px;
}
.fleet-list .single-fleet-car-card {
  width: calc((100% - 48px) / 3.001);
}

.fleet-section-carousel .slick-dots {
  display: none !important;
}
.fleet-section-carousel .slick-slide {
  padding-top: 9px;
  padding-bottom: 9px;
}

.single-fleet-car-card {
  padding: 16px;
  border: 2px solid #C8CFDA;
  background: linear-gradient(165deg, #ECF0F3 5.28%, #FFF 65.22%);
  min-height: 502px;
  transition: all 0.2s linear;
}
.single-fleet-car-card:hover {
  border: 2px solid #939CAB;
}
.single-fleet-car-card .single-fleet-car-card-data {
  margin-bottom: 32px;
}
.single-fleet-car-card .single-fleet-car-card-titles {
  gap: 16px 32px;
  margin-bottom: 16px;
}
.single-fleet-car-card .single-fleet-car-card-main {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.single-fleet-car-card .single-fleet-car-card-badges {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.single-fleet-car-card .single-fleet-car-card-badge-wrapper {
  margin-bottom: 10px;
}
.single-fleet-car-card .single-fleet-car-card-characteristics {
  gap: 8px 16px;
}
.single-fleet-car-card .single-fleet-car-card-characteristic {
  gap: 12px;
}
.single-fleet-car-card .single-fleet-car-card-characteristic svg {
  width: 17px;
  height: 15px;
}
.single-fleet-car-card .single-fleet-car-card-characteristic span {
  font-size: 14px;
  line-height: 150%;
  color: #1D222B;
}

@media screen and (max-width: 1680px) {
  .single-fleet-car-card {
    padding: 24px;
  }
}
@media screen and (max-width: 1488px) {
  .single-fleet-car-card {
    padding: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .single-fleet-car-card .single-fleet-car-card-data {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1279px) {
  .fleet-list .single-fleet-car-card {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .fleet-list .single-fleet-car-card {
    width: 100%;
  }
  .fleet-section-carousel .slick-dots {
    display: flex !important;
  }
}
.helpdesk-section-row {
  margin-bottom: 12px;
}

.helpdesk-section-row-link {
  padding: 16px;
  border: 2px solid #DEE4EB;
  gap: 10px;
  color: #1D222B;
}
.helpdesk-section-row-link:hover {
  border: 2px solid #000;
}

.helpdesk-section-row-link:not(.collapsed) {
  border: 2px solid #000;
}

.helpdesk-section-row-title {
  width: calc(100% - 21px - 10px);
}

.helpdesk-section-row-dropdown {
  padding: 0 4px;
}
.helpdesk-section-row-dropdown svg {
  width: 13px;
  height: 7px;
}
.helpdesk-section-row-dropdown svg path {
  fill: #1D222B;
  transition: all 0.2s linear;
}

.helpdesk-section-row-content {
  padding: 12px 16px;
}

.common-modal {
  width: 100vw;
  height: 100vh;
  background-color: #1D222B;
  padding: 64px 64px 84px;
  top: 0;
  left: 0;
  z-index: 1023;
  visibility: hidden;
  opacity: 0;
}
.common-modal::-webkit-scrollbar {
  width: 0;
}
.common-modal::-webkit-scrollbar-track {
  background-color: transparent;
}
.common-modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.common-modal .common-modal-content {
  margin: 0 auto;
}

.common-modal-cross {
  background-color: #fff;
  border: 2px solid #E7E6E6;
  border-radius: 50%;
  position: absolute;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  width: 40px;
  height: 40px;
  top: 48px;
  right: 48px;
  z-index: 1;
}
.common-modal-cross svg {
  width: 14px;
  height: 14px;
}
.common-modal-cross svg path {
  fill: #1C1F29;
  transition: all 0.2s linear;
}
.common-modal-cross:hover {
  background-color: #F96A24;
  border: 2px solid #F96A24;
}
.common-modal-cross:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 1024px) {
  .common-modal {
    padding: 48px 32px;
  }
}
@media screen and (max-width: 600px) {
  .common-modal {
    padding: 48px 16px;
  }
  .common-modal-cross {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }
}
.common-lightbox-preview-stroke {
  opacity: 0;
  transition: all 0.2s linear;
  border: 3px solid #858482;
  border-radius: 10px;
}

.wysiwyg-gallery-lightbox .wysiwyg-gallery-carousel {
  margin-bottom: 12px;
}
.wysiwyg-gallery-lightbox .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  opacity: 1;
  background-color: #fff;
  border: 2px solid #E7E6E6;
  border-radius: 50%;
  top: calc(50% - 20px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-arrow:hover {
  background-color: #F96A24;
  border: 2px solid #F96A24;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-arrow:hover svg path {
  fill: #fff;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-arrow svg {
  width: 7px;
  height: 13px;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-arrow svg path {
  transition: all 0.2s linear;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-prev {
  left: 16px;
}
.wysiwyg-gallery-lightbox .wysiwyg-gallery-next {
  right: 16px;
}

.lightbox-wrapper {
  margin: 0;
}
.lightbox-wrapper .lightbox-gallery-carousel {
  margin-bottom: 0;
}
.lightbox-wrapper .lightbox-gallery-previews {
  gap: 16px;
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  margin: 0;
}
.lightbox-wrapper .lightbox-gallery-carousel-inner {
  margin-bottom: 20px;
}
.lightbox-wrapper .single-lightbox-gallery-preview {
  width: calc((100% - 64px) / 5.001);
  text-indent: 0;
  height: auto;
  margin: 0;
  background-color: transparent;
  border: none;
  opacity: 1;
  transition: all 0.2s linear;
  position: relative;
}
.lightbox-wrapper .single-lightbox-gallery-preview .lightbox-overlay {
  background-color: #000;
  opacity: 0.5;
  visibility: visible;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}
.lightbox-wrapper .single-lightbox-gallery-preview:before {
  content: "";
  display: block;
  padding-top: 67.79%;
}
.lightbox-wrapper .single-lightbox-gallery-preview.active .lightbox-overlay {
  opacity: 0;
  visibility: hidden;
}

.lightbox-modal-visible {
  visibility: visible;
  opacity: 1;
}

.lightbox-modal-content {
  max-width: 1076px;
}

.lightbox-modal-main {
  height: 716px;
  max-height: calc(100vh - 148px - 172px);
  padding: 0 8px;
}
.lightbox-modal-main .main-image {
  height: 100%;
}
.lightbox-modal-main .main-image img {
  border-radius: 10px;
}

.lightbox-modal-previews-wrapper {
  padding: 24px 0;
  height: 172px;
}

.lightbox-modal-previews {
  gap: 20px;
  max-width: 100%;
  padding: 8px;
}
.lightbox-modal-previews::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.lightbox-modal-previews::-webkit-scrollbar-track {
  background-color: transparent;
}
.lightbox-modal-previews::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.lightbox-modal-previews .single-preview {
  width: 160px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  cursor: pointer;
}
.lightbox-modal-previews .single-preview .lightbox-overlay {
  background-color: #000;
  opacity: 0.5;
  visibility: visible;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}
.lightbox-modal-previews .single-preview-active .lightbox-overlay {
  opacity: 0;
  visibility: hidden;
}

.lightbox-modal-arrow-main {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #E7E6E6;
  border-radius: 50%;
  top: calc(50% - 24px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  z-index: 1;
}
.lightbox-modal-arrow-main:hover {
  background-color: #F96A24;
  border: 2px solid #F96A24;
}
.lightbox-modal-arrow-main:hover svg path {
  fill: #fff;
}
.lightbox-modal-arrow-main svg {
  width: 7px;
  height: 13px;
}
.lightbox-modal-arrow-main svg path {
  transition: all 0.2s linear;
}

.lightbox-modal-left-arrow-main {
  left: 48px;
}

.lightbox-modal-right-arrow-main {
  right: 48px;
}

@media screen and (max-width: 1271px) {
  .lightbox-modal-content {
    max-width: 716px;
  }
  .lightbox-modal-main {
    height: 476px;
  }
}
@media screen and (max-width: 1024px) {
  .lightbox-modal-main {
    max-height: calc(100vh - 96px - 172px);
  }
}
@media screen and (max-width: 820px) {
  .lightbox-modal-content {
    max-width: 536px;
  }
  .lightbox-modal-main {
    height: 356px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-gallery-lightbox {
    margin: 24px 0;
  }
  .wysiwyg-gallery-lightbox .wysiwyg-gallery-carousel {
    margin-bottom: 12px;
  }
  .wysiwyg-gallery-lightbox .wysiwyg-gallery-prev {
    left: 12px;
  }
  .wysiwyg-gallery-lightbox .wysiwyg-gallery-next {
    right: 12px;
  }
}
@media screen and (max-width: 600px) {
  .lightbox-wrapper .single-lightbox-gallery-preview {
    width: calc((100% - 32px) / 3.001);
  }
  .lightbox-modal-content {
    max-width: 350px;
  }
  .lightbox-modal-main {
    height: 232px;
    padding: 0 6px;
  }
  .lightbox-modal-previews-wrapper {
    height: 104px;
    padding: 10px 0;
  }
  .lightbox-modal-previews {
    gap: 16px;
    padding: 6px;
  }
  .lightbox-modal-previews .single-preview {
    width: 102px;
  }
  .lightbox-modal-arrow-main {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }
  .lightbox-modal-left-arrow-main {
    left: 12px;
  }
  .lightbox-modal-right-arrow-main {
    right: 12px;
  }
}
@media screen and (max-width: 500px) {
  .lightbox-modal-content {
    max-width: none;
  }
  .lightbox-modal-main {
    padding: 0;
  }
  .lightbox-modal-arrow-main {
    top: calc(50% - 60px);
  }
  .lightbox-modal-right-arrow-main {
    right: 24px;
  }
  .lightbox-modal-left-arrow-main {
    left: 24px;
  }
}
.faq-section .faq-content {
  gap: 32px;
}
.faq-section .faq-side {
  max-width: 936px;
  margin: 0 auto 40px;
}
.faq-section .faq-title {
  margin-bottom: 64px;
}
.faq-section .faq-subtext {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 150%;
  color: #939CAB;
}

@media screen and (max-width: 1440px) {
  .faq-section .faq-title {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .faq-section .faq-content-additional-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-side {
    width: 100%;
  }
  .faq-section .faq-title {
    margin-bottom: 40px;
  }
  .faq-section .faq-wysiwyg {
    max-width: none;
  }
  .faq-section .faq-content-additional-desktop {
    display: none !important;
  }
}
.common-form-wrapper {
  width: 100%;
  max-width: 696px;
}
.common-form-wrapper .common-form-preloader {
  top: calc(100% + 6px);
}
.common-form-wrapper .common-form-container-inner {
  padding: 24px;
  background-color: #fff;
  border: 2px solid #DEE4EB;
}
.common-form-wrapper .contact-form-content {
  margin-bottom: 32px;
}
.common-form-wrapper .common-form-title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 150%;
}
.common-form-wrapper .inputs-wrapper {
  gap: 16px;
  margin-bottom: 20px;
}
.common-form-wrapper .single-input {
  width: calc(50% - 8px);
}
.common-form-wrapper .submit-inner {
  width: 100%;
}
.common-form-wrapper .submit-inner button {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .common-form-wrapper .common-form-content {
    width: 100%;
  }
  .common-form-wrapper .common-form-wysiwyg {
    max-width: none;
  }
  .common-form-wrapper .common-form-inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .common-form-wrapper .common-form-container-inner {
    padding: 24px;
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .common-form-wrapper .single-input {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .common-form-wrapper .common-form-container-inner {
    padding: 24px 16px;
  }
}
.comparing-table-wrapper {
  margin-bottom: 100px;
}
.comparing-table-wrapper .comparing-table-main {
  margin-bottom: 64px;
}
.comparing-table-wrapper .comparing-table-main-title {
  margin-bottom: 16px;
}
.comparing-table-wrapper .comparing-table-titles-row {
  margin-left: auto;
}
.comparing-table-wrapper .comparing-table-values, .comparing-table-wrapper .comparing-table-titles {
  width: 624px;
}
.comparing-table-wrapper .comparing-table-titles-with-logo {
  padding-top: 72px;
}
.comparing-table-wrapper .comparing-table-title {
  padding: 16px;
}
.comparing-table-wrapper .comparing-table-image-title {
  border-top: 2px solid #E7E6E6;
  border-bottom: 2px solid #E7E6E6;
  font-size: 16px;
  line-height: 150%;
  padding: 18.5px 12px;
}
.comparing-table-wrapper .comparing-table-values-row:nth-of-type(1) .comparing-table-values-main, .comparing-table-wrapper .comparing-table-values-row:nth-of-type(1) .comparing-table-value {
  border-top: 2px solid #E7E6E6;
}
.comparing-table-wrapper .comparing-table-values-main, .comparing-table-wrapper .comparing-table-value {
  font-size: 14px;
  line-height: 21px;
  padding: 18.5px 12px;
  align-content: center;
}
.comparing-table-wrapper .comparing-table-titles-main, .comparing-table-wrapper .comparing-table-values-main {
  width: calc(100% - 624px);
}
.comparing-table-wrapper .comparing-table-value {
  width: 50%;
}
.comparing-table-wrapper .comparing-table-values-main, .comparing-table-wrapper .comparing-table-value {
  border-bottom: 2px solid #E7E6E6;
}
.comparing-table-wrapper .table-icon-yes {
  width: 21px;
  height: 21px;
}
.comparing-table-wrapper .table-icon-no {
  width: 14px;
  height: 14px;
}
.comparing-table-wrapper .comparing-table-one-element {
  width: 100%;
}
.comparing-table-wrapper .comparing-table-two-elements {
  width: 50%;
}
.comparing-table-wrapper .comparing-table-three-elements {
  width: 33.3222259247%;
}
.comparing-table-wrapper .last-row-highlighted {
  font-size: 20px;
  line-height: 150%;
}
.comparing-table-wrapper .last-row-highlighted.highlighted-value {
  font-family: FontBold;
}
.comparing-table-wrapper .comparing-table-title-logo {
  border-radius: 10px 10px 0 0;
  border-top: 2px solid #F96A24;
  border-left: 2px solid #F96A24;
  border-right: 2px solid #F96A24;
  background-color: #F96A24 !important;
  height: 57px;
  padding: 16px 8px;
  left: -2px;
  bottom: calc(100% - 5px);
  width: calc(100% + 4px);
}
.comparing-table-wrapper .comparing-table-title-logo img {
  max-width: 95px;
}
.comparing-table-wrapper .table-title {
  font-size: 16px;
  line-height: 150%;
}
.comparing-table-wrapper .highlighted-title, .comparing-table-wrapper .highlighted-value {
  border-right: 2px solid #F96A24;
  border-left: 2px solid #F96A24;
}
.comparing-table-wrapper .comparing-table-title.highlighted-title {
  background-color: #F96A24;
  z-index: 1;
}
.comparing-table-wrapper .comparing-table-title.highlighted-title span {
  z-index: 10;
}
.comparing-table-wrapper .comparing-table-title.highlighted-title:after {
  content: "";
  display: block;
  background-color: #F6F8FA;
  border-radius: 8px 8px 0 0;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.comparing-table-wrapper .comparing-table-values-row:nth-last-of-type(1) .highlighted-value {
  border-left: none;
  border-right: none;
  border-bottom: none;
  position: relative;
}
.comparing-table-wrapper .comparing-table-values-row:nth-last-of-type(1) .highlighted-value:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #F96A24;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: transparent;
}
.comparing-table-wrapper .comparing-table-values-row:nth-last-of-type(1) .highlighted-value:after {
  left: 1px;
}
.comparing-table-wrapper .comparing-table-values-row:nth-last-of-type(1) .comparing-table-values-main, .comparing-table-wrapper .comparing-table-values-row:nth-last-of-type(1) .comparing-table-wrapper .comparing-table-value, .comparing-table-wrapper .comparing-table-values-row:nth-last-of-type(1) .last-row-highlighted {
  border-bottom: none;
}
.comparing-table-wrapper .comparing-table-value.highlighted-value {
  position: relative;
}
.comparing-table-wrapper .comparing-table-value.highlighted-value:after {
  content: "";
  display: block;
  background-color: #F96A24;
  top: -2px;
  left: -1px;
  width: 1px;
  height: 2px;
  position: absolute;
}
.comparing-table-wrapper .comparing-table-value.highlighted-value:before {
  content: "";
  display: block;
  background-color: #F96A24;
  right: -2px;
  top: -2px;
  width: 2px;
  height: 2px;
  position: absolute;
}
.comparing-table-wrapper .comparing-table-image img {
  max-width: 200px;
}

@media screen and (max-width: 1680px) {
  .comparing-table-wrapper {
    margin-bottom: 64px;
  }
  .comparing-table-wrapper .comparing-table-main {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .comparing-table-wrapper {
    margin-bottom: 48px;
  }
  .comparing-table-wrapper .comparing-table-main {
    margin-bottom: 32px;
  }
  .comparing-table-wrapper .comparing-table-titles, .comparing-table-wrapper .comparing-table-values {
    width: calc(100% - 300px);
  }
  .comparing-table-wrapper .comparing-table-titles-main, .comparing-table-wrapper .comparing-table-values-main {
    width: 300px;
  }
}
@media screen and (max-width: 1023px) {
  .comparing-table-wrapper .comparing-table-title, .comparing-table-wrapper .comparing-table-value {
    min-width: 200px;
  }
  .comparing-table-wrapper .comparing-table {
    overflow: auto;
  }
  .comparing-table-wrapper .comparing-table::-webkit-scrollbar {
    height: 4px;
  }
  .comparing-table-wrapper .comparing-table::-webkit-scrollbar-track {
    background-color: #F8F8F8;
  }
  .comparing-table-wrapper .comparing-table::-webkit-scrollbar-thumb {
    background-color: #F96A24;
  }
}
.header-panel-dropdown {
  top: calc(100% + 16px);
  left: auto;
  right: 0;
  padding: 4px 8px;
  border: 1px solid #EFEFEF;
}

.header-panel-dropdown-hidden {
  opacity: 0;
  visibility: hidden;
}

.header-contacts-dropdown {
  padding: 12px 16px;
}

.header-single-contact {
  font-size: 14px;
  line-height: 30px;
  white-space: nowrap;
}

@media screen and (max-width: 1366px) {
  .header-panel-dropdown {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 501px) {
  .header-panel-cell {
    position: relative;
  }
}
@media screen and (max-width: 500px) {
  .header-panel-cell:not(.header-languages-mobile) .header-panel-dropdown {
    top: 100%;
    left: 0;
    right: auto;
    width: 100%;
    border-radius: 10px;
  }
}
#wheelsbook {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #C8CFDA;
}
#wheelsbook:after {
  content: "";
  display: block;
  clear: both;
}
#wheelsbook #WheelsBookingEngineWrapper {
  background-color: transparent;
}
#wheelsbook #WheelsBookingEngineWrapper .wheelsprogressIndicator > .wheelsprogressindicatorspinner {
  margin: 0;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
#wheelsbook #wheelsbookingEnginesearch {
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.daterangepicker .month {
  font-family: FontBold;
  color: #1D222B;
}
.daterangepicker .month .monthselect, .daterangepicker .month .yearselect {
  font-family: FontBold;
  color: #1D222B;
}
.daterangepicker .calendar-table tr th {
  font-family: FontBold;
  color: #1D222B;
}
.daterangepicker .calendar-table tr .disabled {
  font-family: FontMedium;
  color: #1D222B;
}
.daterangepicker .calendar-table tr .available {
  font-family: FontMedium;
  color: #1D222B;
}
.daterangepicker .calendar-table tr .available:hover {
  color: #fff !important;
  background-color: #F96A24 !important;
}
.daterangepicker .calendar-table tr .available.off.ends {
  color: #1D222B;
}
.daterangepicker .calendar-table tr .active {
  color: #fff !important;
  background-color: #F96A24 !important;
}
.daterangepicker .calendar-table tr .active:hover {
  color: #fff !important;
  background-color: #F96A24 !important;
}

@media screen and (max-width: 1271px) {
  #wheelsbook #wbeFiltersMenu, #wheelsbook #responseResults, #wheelsbook .wheelsbookingEnginesearchCompact {
    width: 100% !important;
  }
  #wheelsbook .wheelsbookingEnginesearchCompact {
    float: none !important;
  }
}
@media screen and (max-width: 500px) {
  #wheelsbook {
    padding: 24px 16px;
  }
}
#wheelsbook .navigation-bar {
  display: flex !important;
  display: -webkit-flex !important;
  padding: 0 0 24px;
}
#wheelsbook .navigation-bar .bookedli {
  margin-bottom: 2px !important;
}
#wheelsbook .navigation-bar .webBackToHomeContainer {
  margin-bottom: 0 !important;
}
#wheelsbook .navigation-bar .bookedli:hover, #wheelsbook .navigation-bar .webBackToHomeContainer:hover {
  background-color: transparent !important;
}
#wheelsbook .navigation-bar #selection4 {
  justify-content: center;
  -webkit-justify-content: center;
}
#wheelsbook .navigation-bar #selection3, #wheelsbook .navigation-bar #selection4 {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 16px;
}
#wheelsbook .navigation-bar #selection3 .WebString_Text_alreadybook, #wheelsbook .navigation-bar #selection3 .WebString_Text_neednewbooking, #wheelsbook .navigation-bar #selection4 .WebString_Text_alreadybook, #wheelsbook .navigation-bar #selection4 .WebString_Text_neednewbooking {
  font-family: FontBold;
  font-size: 20px;
  line-height: 24px;
  color: #1D222B !important;
}
#wheelsbook .navigation-bar #selection3 .wbeButton, #wheelsbook .navigation-bar #selection4 .wbeButton {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
#wheelsbook .navigation-bar #selection3 .wbeButton:hover .WebString_Text_managebooking, #wheelsbook .navigation-bar #selection3 .wbeButton:hover .WebString_Text_newbooking, #wheelsbook .navigation-bar #selection4 .wbeButton:hover .WebString_Text_managebooking, #wheelsbook .navigation-bar #selection4 .wbeButton:hover .WebString_Text_newbooking {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
}
#wheelsbook .navigation-bar #selection3 .wbeButton i, #wheelsbook .navigation-bar #selection4 .wbeButton i {
  display: none !important;
}
#wheelsbook .navigation-bar #selection3 .wbeButton .WebString_Text_managebooking, #wheelsbook .navigation-bar #selection3 .wbeButton .WebString_Text_newbooking, #wheelsbook .navigation-bar #selection4 .wbeButton .WebString_Text_managebooking, #wheelsbook .navigation-bar #selection4 .wbeButton .WebString_Text_newbooking {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  text-decoration: none;
  display: inline-block;
  padding: 10px 22px !important;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontMedium;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  transition: all 0.2s linear;
}
#wheelsbook .navigation-bar #selection3 .wbeButton .WebString_Text_managebooking:hover, #wheelsbook .navigation-bar #selection3 .wbeButton .WebString_Text_newbooking:hover, #wheelsbook .navigation-bar #selection4 .wbeButton .WebString_Text_managebooking:hover, #wheelsbook .navigation-bar #selection4 .wbeButton .WebString_Text_newbooking:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}

#wheelsbook #bookingEngine #wbeFiltersMenu > h4 {
  color: #000;
  font-size: 16px;
  font-family: FontBold !important;
  position: relative;
  float: none;
  width: 100% !important;
  line-height: 32px;
}
#wheelsbook #bookingEngine #wbeFiltersMenu > h4 strong {
  font-family: FontBold !important;
}
#wheelsbook #bookingEngine #wbeFiltersMenu .wbeFiltersMenuHeading {
  width: 100% !important;
  font-weight: normal;
  margin-bottom: 0;
  float: none;
  line-height: 32px !important;
  padding-bottom: 12px;
  text-align: right !important;
}
#wheelsbook #bookingEngine #wbeFiltersMenu .wbeFiltersMenuHeading span {
  font-size: 16px;
  font-family: FontBold !important;
  color: #000;
}
#wheelsbook #bookingEngine #wbeFiltersMenu .wbeFiltersMenuHeading i {
  color: #000;
  position: relative;
  top: 5px;
}
#wheelsbook #wbeFiltersMenu {
  margin: 20px 0 !important;
  background-color: #F96A24;
  border: 1px solid #F96A24;
  border-radius: 8px;
  padding: 16px 16px 4px !important;
  float: none;
  width: 100% !important;
  color: #fff !important;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer {
  float: none;
  color: #fff !important;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > .filterButton {
  pointer-events: none;
  cursor: default;
  float: none;
  width: 100%;
  padding: 0 0 16px !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  color: #fff !important;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > .filterButton i {
  display: none;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > .filterButton span {
  color: #fff !important;
  font-size: 17px;
  font-family: FontBold;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > div {
  margin-bottom: 16px;
  padding: 0 0 16px !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #fff;
  float: none;
  width: 100%;
  color: #fff !important;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > div:nth-last-of-type(1) {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck {
  margin-bottom: 0;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input {
  cursor: pointer;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  position: relative;
  top: 1px;
  background-image: url("../../images/checkmark-white.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px 9px;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input:before {
  content: "";
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input:checked {
  background-color: #F96A24;
  border: 2px solid #fff;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck label.wbeLabelCheck {
  cursor: pointer;
  color: #fff !important;
  font-size: 17px;
  font-family: FontMedium;
  margin-bottom: 8px;
  line-height: normal;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck span {
  font-family: FontMedium;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck:nth-last-of-type(1) label {
  margin-bottom: 0;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch.wheelsbookingEnginesearchCompact {
  justify-content: space-between !important;
  -webkit-justify-content: space-between !important;
  margin-top: 0;
  width: 100% !important;
  float: none !important;
}

@media screen and (min-width: 1024px) {
  #wheelsbook #wbeFiltersMenu #FiltersContainer {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  #wheelsbook #wbeFiltersMenu {
    float: none;
  }
  #wheelsbook #wbeFiltersMenu #FiltersContainer {
    padding-top: 0;
  }
}
@media screen and (max-width: 600px) {
  #wheelsbook #wbeFiltersMenu > h4 {
    margin-bottom: 16px;
  }
}
#wheelsbook #bookingEngine #responseResults .cardata {
  margin: 16px 0 !important;
  border-radius: 8px;
}
#wheelsbook #bookingEngine #responseResults .cardata:nth-of-type(1) {
  margin-top: 0 !important;
}
#wheelsbook #bookingEngine #responseResults .cardata:nth-last-of-type(1) {
  margin-bottom: 0 !important;
}
#wheelsbook #responseResults {
  margin: 0 0 0 auto;
  border-radius: 8px;
  width: 100% !important;
}
#wheelsbook #responseResults .warningIndicator {
  background-color: #fff;
  padding: 16px 12px 0 48px;
  margin-top: 27px;
  border-radius: 8px;
  border: 2px solid #E7E6E6;
  font-family: FontMedium !important;
}
#wheelsbook #responseResults .warningIndicator i {
  left: 12px;
  top: 8px;
}
#wheelsbook #responseResults .cardata {
  background-color: #fff;
  box-shadow: none;
  width: 100%;
  float: none;
  position: relative;
  border: 2px solid #C8CFDA;
  transition: all 0.2s linear;
}
#wheelsbook #responseResults .cardata:hover {
  border: 2px solid #939CAB;
}
#wheelsbook #responseResults .cardata .wbeDealImageContainer {
  float: none;
  width: 250px;
  max-width: 250px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  transform: none;
  margin-right: 32px;
  padding: 0;
}
#wheelsbook #responseResults .cardata .wbeDealImageContainer img {
  max-width: 100%;
}
#wheelsbook #responseResults .cardata .wbeDealInfoContainer {
  padding: 16px 64px 16px 0;
  width: calc(100% - 250px - 228px - 32px);
  -ms-flex-preferred-size: calc(100% - 250px - 228px - 32px);
  flex-basis: calc(100% - 250px - 228px - 32px);
  max-width: calc(100% - 250px - 228px - 32px);
  transform: none;
}
#wheelsbook #responseResults .cardata .wbeDealInfoContainer *:not(i) {
  font-family: FontMedium;
  color: #1D222B;
}
#wheelsbook #responseResults .cardata .wbeDealInfoContainer #CarModelH1 span {
  font-family: FontBold;
}
#wheelsbook #responseResults .cardata .wbeDealInfoContainer .WebString_Text_PriceIncludes {
  margin-bottom: 12px;
}
#wheelsbook #responseResults .cardata .wbeDealBook {
  padding: 24px 12px;
  margin: 0;
  width: 228px;
  -ms-flex-preferred-size: 228px;
  flex-basis: 228px;
  max-width: 228px;
  transform: none;
  text-align: right;
  border-radius: 0 8px 8px 0;
}
#wheelsbook #responseResults .cardata .wbeDealBook .wbeDaylyPrice {
  padding-bottom: 24px;
}
#wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook {
  width: auto;
  display: inline-block;
  padding: 10px 22px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  text-transform: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
#wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook span {
  font-family: FontBold;
}
#wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #responseResults .cardata .wbeDealBook .CarTotalH2 {
  font-family: FontBold;
}
#wheelsbook #responseResults .cardata .wbeDealBook .CarTotalH2 .WebString_Text_Total {
  font-family: FontMedium;
}
#wheelsbook #responseResults .cardata .wbeDealBook .wbeDaylyPrice, #wheelsbook #responseResults .cardata .wbeDealBook .WebString_Text_PerDay {
  font-family: FontMedium;
}
#wheelsbook #responseResults .WebString_Text_Total {
  margin-top: 10px;
}
#wheelsbook .wbeVehCategory {
  margin: 8px 0 !important;
  text-align: left !important;
}
#wheelsbook .wbeCarFeaturesContainer {
  margin-top: 16px;
}
#wheelsbook .wbeCarFeaturesContainer p {
  padding: 0;
  margin: 0 8px 8px 0 !important;
}
#wheelsbook .wbeCarFeaturesContainer p:nth-last-of-type(1) {
  margin: 0 0 8px !important;
}

@media screen and (max-width: 1600px) {
  #wheelsbook #responseResults .wbeDealInfoContainer {
    padding: 16px;
  }
}
@media screen and (max-width: 1366px) {
  #wheelsbook #responseResults .warningIndicator {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  #wheelsbook #responseResults .cardata .wbeDealImageContainer {
    margin-right: 16px;
    width: 220px;
  }
  #wheelsbook #responseResults .cardata .wbeDealInfoContainer {
    width: calc(100% - 220px - 180px - 16px);
    -ms-flex-preferred-size: calc(100% - 220px - 180px - 16px);
    flex-basis: calc(100% - 220px - 180px - 16px);
    max-width: calc(100% - 220px - 180px - 16px);
    padding: 16px 32px 16px 0;
  }
  #wheelsbook #responseResults .cardata .wbeDealBook {
    width: 180px;
    -ms-flex-preferred-size: 180px;
    flex-basis: 180px;
    max-width: 180px;
  }
}
@media screen and (max-width: 767px) {
  #wheelsbook #responseResults .cardata .wbeDealInfo {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  #wheelsbook #responseResults .cardata .wbeDealImageContainer {
    margin-right: 0;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 16px 16px 0;
  }
  #wheelsbook #responseResults .cardata .wbeDealImageContainer img {
    max-width: 250px;
    margin: 0 auto;
  }
  #wheelsbook #responseResults .cardata .wbeDealInfoContainer {
    width: calc(100% - 180px);
    -ms-flex-preferred-size: calc(100% - 180px);
    flex-basis: calc(100% - 180px);
    max-width: calc(100% - 180px);
    padding: 16px;
  }
  #wheelsbook #responseResults .cardata .wbeDealBook {
    border-radius: 0 0 8px 0;
  }
}
@media screen and (max-width: 600px) {
  #wheelsbook #responseResults .cardata .wbeDealImageContainer {
    margin-bottom: 0;
  }
  #wheelsbook #responseResults .cardata .wbeDealInfoContainer {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  #wheelsbook #responseResults .cardata .wbeDealBook {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
    border-radius: 0 0 8px 8px;
  }
  #wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook {
    margin: 0;
  }
  #wheelsbook .wbeVehCategory {
    text-align: center !important;
  }
}
#wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .wbeaddressOptionContainer {
  width: 346px !important;
  flex-basis: 346px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .calendarContainer {
  width: 182px !important;
  flex-basis: 182px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .calendarContainer .wbeInputIcon {
  display: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .calendarContainer input {
  width: 100% !important;
  padding: 12px 16px 12px 41px !important;
  background-image: url("../../images/calendar.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 50% !important;
  background-size: 17px auto !important;
}
#wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer:not(.calendarContainer) {
  width: 108px !important;
  flex-basis: 108px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeInputElement {
  height: auto !important;
  line-height: 20px !important;
  border-radius: 4px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeAddressSection {
  width: 700px !important;
  flex-basis: 700px !important;
  margin: 0 16px 16px 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer:not(.wbeaddressOptionContainerActive) .wbeInputContainer {
  width: calc(200% + 8px);
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer {
  font-size: 0;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .WebString_Text_PickupLocation, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .WebString_Text_Diffdropoff, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .WebString_Text_Diffdropoff2 {
  font-size: 14px !important;
  line-height: 21px !important;
  text-transform: none !important;
  margin: 0 !important;
  font-family: FontBold !important;
  color: #1D222B;
  position: relative;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .WebString_Text_Diffdropoff2 {
  cursor: pointer;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck {
  padding: 0 !important;
  margin-bottom: 0 !important;
  display: inline-flex !important;
  display: -webkit-inline-flex !important;
  align-items: center;
  -webkit-align-items: center;
  cursor: pointer;
  width: auto;
  max-width: 100%;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck:hover .wbeInputElementCheck {
  border: 2px solid #858482;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck .wbeInputElementCheck {
  -webkit-appearance: none;
  appearance: none;
  display: block !important;
  margin: 0 12px 0 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  border: 2px solid #E7E6E6;
  color: #fff !important;
  border-radius: 8px;
  background-image: url("../../images/checkmark-white.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px 9px;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck .wbeInputElementCheck:before {
  content: "";
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck .wbeInputElementCheck:checked {
  background-color: #F96A24;
  border: 2px solid #F96A24;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer {
  margin: 6px 0 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer .wbeInputIcon {
  display: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input {
  background-color: #fff !important;
  border: 2px solid #E7E6E6;
  width: 100% !important;
  color: #1D222B !important;
  font-size: 16px !important;
  line-height: 20px !important;
  font-family: FontMedium !important;
  padding: 12px 16px 12px 41px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input::-webkit-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input::-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:-ms-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input {
  background-image: url("../../images/search.svg");
  background-repeat: no-repeat;
  background-position: 12px 50%;
  background-size: 17px 17px;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:focus {
  border: 2px solid #858482;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 {
  transform: translate(0px, 49px);
  -webkit-transform: translate(0px, 49px);
  width: 100%;
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults {
  max-height: 231px;
  border-radius: 8px;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults::-webkit-scrollbar, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults::-webkit-scrollbar, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults::-webkit-scrollbar {
  width: 4px;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults::-webkit-scrollbar-track, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults::-webkit-scrollbar-track, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults::-webkit-scrollbar-thumb, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults::-webkit-scrollbar-thumb, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult {
  background-color: #fff !important;
  height: 48px;
  transition: all 0.2s linear;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult:hover {
  background-color: #F96A24 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult:hover span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult:hover span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult:hover span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult:hover span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult:hover span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult:hover span {
  color: #fff !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult i, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult i, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult i, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult i, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult i, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult i {
  display: none;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult span, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult span {
  color: #6B7280 !important;
  width: 100%;
  line-height: 48px;
  padding: 0 12px;
  font-size: 14px;
  font-family: FontMedium;
  max-width: none;
  transition: all 0.2s linear;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper {
  width: 300px !important;
  flex-basis: 300px !important;
  margin: 0 16px 0 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeDatepickerContainer {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .WebString_Text_PickupDate, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .WebString_Text_DropoffDate {
  font-size: 14px !important;
  line-height: 21px !important;
  text-transform: none !important;
  margin: 0 !important;
  font-family: FontBold !important;
  color: #1D222B;
  position: relative;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer {
  margin: 6px 0 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select {
  background-color: #fff !important;
  border: 2px solid #E7E6E6;
  width: 100% !important;
  color: #1D222B !important;
  font-size: 16px !important;
  font-family: FontMedium !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input::-webkit-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input::-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:-ms-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:-ms-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select {
  transition: border 0.2s linear;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:focus, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:focus {
  border: 2px solid #858482;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select {
  padding: 12px 37px 12px 16px !important;
  background-color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-scrollbar {
  width: 4px;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-ms-expand {
  display: none;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select option {
  color: #6B7280 !important;
  background-color: #fff !important;
  transition: all 0.2s linear;
  line-height: 21px !important;
  height: 21px !important;
  width: 100%;
  font-family: FontMedium;
  padding: 0 12px;
  font-size: 14px;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select option:hover {
  background-color: #F96A24 !important;
  color: #fff !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select option:checked {
  background-color: #F96A24 !important;
  color: #fff !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer:not(.calendarContainer) {
  width: 108px !important;
  flex-basis: 108px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer:not(.calendarContainer) .wbeInputIcon {
  display: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer:not(.calendarContainer) select {
  width: 100% !important;
  background-image: url("../../images/dropdown-grey.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 12px) 50% !important;
  background-size: 13px auto !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer.selectActiveContainer select {
  width: 700px !important;
  padding: 0 !important;
  max-height: 188px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer {
  padding: 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputContainer, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputContainer {
  margin: 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer .WebString_Text_DriverAge, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer .WebString_Text_Coupon, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer .WebString_Text_DriverAge, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer .WebString_Text_Coupon {
  font-size: 14px !important;
  line-height: 21px !important;
  text-transform: none !important;
  margin: 0 !important;
  font-family: FontBold !important;
  color: #1D222B;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  white-space: normal;
  text-align: left;
  width: 100%;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputIcon, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputIcon {
  font-size: 0;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputIcon i, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputIcon i {
  display: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select {
  background-color: #fff !important;
  border: 2px solid #E7E6E6;
  width: 100% !important;
  color: #1D222B !important;
  font-size: 16px !important;
  font-family: FontMedium !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input::-webkit-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select::-webkit-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input::-webkit-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select::-webkit-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input::-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select::-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input::-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select::-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input:-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select:-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input:-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select:-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input:-ms-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select:-ms-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input:-ms-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select:-ms-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select {
  transition: border 0.2s linear;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input:focus, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select:focus, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input:focus, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select:hover, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select:focus {
  border: 2px solid #858482;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer input, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer input {
  padding: 12px 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select {
  padding: 12px 37px 12px 16px !important;
  background-image: url("../../images/dropdown-grey.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 12px) 50% !important;
  background-size: 13px auto !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer select::-ms-expand, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer select::-ms-expand {
  display: none;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer {
  width: 136px !important;
  flex-basis: 136px !important;
  margin: 27px 16px 0 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer {
  width: 182px !important;
  flex-basis: 182px !important;
  margin: 27px auto 0 0 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .searchClick {
  display: inline-block;
  padding: 10px 22px;
  text-align: center;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  margin: 27px 0 0 !important;
  width: auto !important;
  flex-basis: auto !important;
  box-shadow: none;
  text-transform: none !important;
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  white-space: nowrap;
  color: #fff !important;
  background-color: #0D0B2A !important;
  border: 2px solid #0D0B2A !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .searchClick:hover {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .searchClick span {
  font-family: FontSemiBold;
}
#wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .searchClick i {
  display: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch {
  padding: 0;
  box-shadow: none;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch #BookingSearchForm {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 16px;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .WebString_Text_FindBooking {
  font-size: 24px;
  color: #1D222B !important;
  font-family: FontBold;
  padding: 0;
  margin-top: 0;
  position: relative;
  width: 100%;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer {
  width: calc(50% - 8px);
  margin: 0;
  padding: 0;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer .wbeInputIcon {
  display: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail {
  background-image: url("../../images/email-grey.svg");
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb {
  background-image: url("../../images/ticket.png");
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb {
  height: auto;
  text-align: left;
  width: 100% !important;
  background-color: #fff !important;
  border-radius: 8px;
  border: 2px solid #E7E6E6 !important;
  color: #1D222B !important;
  font-size: 16px !important;
  line-height: 20px !important;
  font-family: FontMedium !important;
  padding: 12px 16px 12px 41px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail::-webkit-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb::-webkit-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail::-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb::-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail:-moz-placeholder, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb:-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail:-ms-input-placeholder, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb:-ms-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb {
  background-repeat: no-repeat;
  background-position: 12px 50%;
  background-size: 17px 17px;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail:hover, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingEmail:focus, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb:hover, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer #wbefindbookingNumb:focus {
  border: 2px solid #858482 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer .noValue {
  border: 2px solid #DC2626 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .is-invalid {
  border: none !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .is-invalid #wbefindbookingEmail, #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .is-invalid #wbefindbookingNumb {
  border: 2px solid #DC2626 !important;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch #wbefindresStatus {
  color: #DC2626;
  height: auto;
  padding-bottom: 0;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeBookedButtonContainer {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  gap: 16px;
  width: 100%;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeBookedButtonContainer .wbeBookedButton {
  width: calc(50% - 8px);
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  text-decoration: none;
  display: inline-block;
  padding: 10px 22px !important;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  transition: all 0.2s linear;
  flex-basis: auto;
  -webkit-flex-basis: auto;
  text-transform: none;
}
#wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeBookedButtonContainer .wbeBookedButton:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}

@media screen and (min-width: 1501px) {
  #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .calendarWrapper:nth-of-type(3) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1500px) {
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .wbeaddressOptionContainer {
    width: calc(50% - 8px) !important;
    flex-basis: calc(50% - 8px) !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeAddressSection {
    width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 0 16px 0 !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeaddressOptionContainer:not(.wbeaddressOptionContainerActive) .wbeInputContainer {
    width: calc(200% + 16px);
  }
}
@media screen and (max-width: 1280px) {
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper {
    width: calc(50% - 8px) !important;
    flex-basis: calc(50% - 8px) !important;
    margin: 0 16px 16px 0 !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper:nth-of-type(3) {
    margin-right: 0 !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .calendarContainer, #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer:not(.calendarContainer) {
    width: calc(50% - 5px) !important;
    flex-basis: calc(50% - 5px) !important;
  }
}
@media screen and (max-width: 767px) {
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .wbeAddressSection {
    width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .wbeaddressOptionContainer:not(.wbeaddressOptionContainerActive) .wbeInputContainer {
    width: 100%;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .wbeaddressOptionContainer {
    width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 0 16px !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper {
    width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 0 16px !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .wbeDatepickerContainer {
    display: flex;
    display: -webkit-flex;
  }
  #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .calendarContainer, #wheelsbook #WheelsBookingEngineWrapper #bookingEngine #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer:not(.calendarContainer) {
    width: calc(50% - 5px) !important;
    flex-basis: calc(50% - 5px) !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch {
    justify-content: space-between !important;
    -webkit-justify-content: space-between !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeDriverAgeContainer, #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .wbeCouponContainer {
    margin: 27px 0 16px !important;
    width: calc(50% - 5px) !important;
    flex-basis: calc(50% - 5px) !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #wheelsbookingEnginesearch .searchClick {
    margin: 8px 0 0 !important;
    width: 100% !important;
  }
  #wheelsbook #WheelsBookingEngineWrapper #BookingSearch .wbeInputContainer {
    width: 100%;
  }
}
#wheelsbook #wheelsClientForm {
  border: none !important;
  padding: 0 !important;
}
#wheelsbook #BookingConfirmation {
  margin: 0 !important;
  background-color: #fff !important;
  height: auto !important;
  padding: 64px 0 !important;
}
#wheelsbook #BookingConfirmation i {
  color: #F96A24 !important;
}
#wheelsbook #BookingConfirmation p {
  font-family: FontBold !important;
  color: #1D222B !important;
  margin-bottom: 16px !important;
}
#wheelsbook #BookingConfirmation #beStartOverbtn {
  float: none !important;
  margin: 0 auto !important;
  min-width: 0 !important;
  height: auto !important;
  width: auto;
  text-transform: none !important;
  display: inline-block;
  padding: 10px 22px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
}
#wheelsbook #BookingConfirmation #beStartOverbtn span {
  transition: all 0.2s linear;
  color: #fff !important;
}
#wheelsbook #BookingConfirmation #beStartOverbtn:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #BookingConfirmation #beStartOverbtn:hover span {
  color: #fff !important;
}
#wheelsbook #dealOptions {
  background-color: #fff;
  width: 100%;
}
#wheelsbook #dealOptions .cardata {
  margin: 0;
  min-height: 0;
}
#wheelsbook #dealOptions .wbeDealOptionsContainer {
  min-height: 0;
  border: none;
}
#wheelsbook #dealOptions #LeftSide {
  width: calc(100% - 500px - 64px);
  flex-basis: calc(100% - 500px - 64px);
  padding: 0;
}
#wheelsbook #dealOptions #LeftSide * {
  font-family: FontMedium;
  color: #1D222B;
}
#wheelsbook #dealOptions #LeftSide .WebString_Text_Chooseextras, #wheelsbook #dealOptions #LeftSide .WebString_Text_Insurance, #wheelsbook #dealOptions #LeftSide .WebString_Text_Extras, #wheelsbook #dealOptions #LeftSide .WebString_Text_DriverInfo, #wheelsbook #dealOptions #LeftSide span.WebString_Text_PersonalInfo, #wheelsbook #dealOptions #LeftSide span.WebString_Text_Address, #wheelsbook #dealOptions #LeftSide span.WebString_Text_IDPassport, #wheelsbook #dealOptions #LeftSide span.WebString_Text_DriverLicense, #wheelsbook #dealOptions #LeftSide span.WebString_Text_FlightNumber, #wheelsbook #dealOptions #LeftSide span.WebString_Text_Extradetails, #wheelsbook #dealOptions #LeftSide span.WebString_Text_InvoiceName, #wheelsbook #dealOptions #LeftSide span.WebString_Text_InvoiceTaxID {
  font-family: FontBold;
  color: #1D222B;
}
#wheelsbook #dealOptions #LeftSide .wbeInputElementCheck {
  color: #fff !important;
}
#wheelsbook #dealOptions #RightSide {
  width: 500px;
  flex-basis: 500px;
  padding: 0;
  border: 1px var(--shadow-color) solid;
  overflow: hidden;
}
#wheelsbook #dealOptions #RightSide ~ div {
  display: none;
}
#wheelsbook #dealOptions #RightSide *:not(i) {
  font-family: FontMedium;
  color: #1D222B;
}
#wheelsbook #dealOptions #RightSide .WebString_Text_GeneralInfo, #wheelsbook #dealOptions #RightSide .WebString_Text_GeneralInfo2, #wheelsbook #dealOptions #RightSide .WebString_Text_Change, #wheelsbook #dealOptions #RightSide .WebString_Text_Priceanalysis {
  font-family: FontBold;
}
#wheelsbook #dealOptions #RightSide .WebString_Text_GeneralInfo, #wheelsbook #dealOptions #RightSide .WebString_Text_GeneralInfo2 {
  color: #fff;
}
#wheelsbook #dealOptions #RightSide .wbeSQTitle span {
  padding: 0 0 0 3px;
}
#wheelsbook #dealOptions #RightSide .summaryVehInclusive p {
  margin-right: 12px;
  margin-bottom: 12px;
}
#wheelsbook #dealOptions #RightSide #wbeSQLoc i, #wheelsbook #dealOptions #RightSide #wbeSQDate i {
  position: relative;
  top: -1px;
}
#wheelsbook #dealOptions .wbeDealOptionsGeneralInfoContainer {
  border-left: none;
}
#wheelsbook #dealOptions .wbeDealOptionsGeneralInfoContainer > h5 {
  background-color: #F96A24;
  color: #fff;
  padding: 12px 15px;
  font-size: 24px;
  font-family: FontBold;
}
#wheelsbook #dealOptions .wbeDealOptionsPriceContainer {
  border: none;
}
#wheelsbook #dealOptions #next1, #wheelsbook #dealOptions #next2 {
  float: none !important;
  margin: 0 auto !important;
  min-width: 0 !important;
  height: auto !important;
  width: auto;
  text-transform: none !important;
  padding: 10px 22px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
}
#wheelsbook #dealOptions #next1 span, #wheelsbook #dealOptions #next2 span {
  transition: all 0.2s linear;
  color: #fff !important;
}
#wheelsbook #dealOptions #next1:hover, #wheelsbook #dealOptions #next2:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #dealOptions #next1:hover span, #wheelsbook #dealOptions #next2:hover span {
  color: #fff !important;
}
#wheelsbook #dealOptions #next1 span, #wheelsbook #dealOptions #next2 span {
  font-family: FontMedium;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions button:nth-of-type(1) {
  order: 3;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions button:nth-last-of-type(1) {
  order: 1;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions .wbeOptionInput {
  order: 2;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions .wbeOptionBtns {
  width: 35px !important;
  min-width: 35px !important;
  height: 35px !important;
  font-size: 31px !important;
  font-family: FontBold;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  color: #fff !important;
  border-radius: 5px;
  float: none !important;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions .wbeOptionBtns:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #dealOptions #DealPrice {
  margin: 0 0 16px !important;
}
#wheelsbook #dealOptions #clientInformation .extraClientInformation .wbeInputGroup > label {
  pointer-events: none;
}
#wheelsbook #dealOptions #clientInformation .clientInformationDiv > label {
  pointer-events: none;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .WebString_Text_IssueDate, #wheelsbook #dealOptions #clientInformation .wbeInputContainer .WebString_Text_ExpiryDate {
  height: auto !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement {
  height: auto !important;
  background-color: #fff;
  border: 2px solid #E7E6E6;
  border-radius: 8px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement::-webkit-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement::-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement:-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement:-ms-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement {
  font-size: 16px;
  line-height: 20px;
  color: #1D222B;
  padding: 12px 16px;
  transition: border 0.2s linear;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement:hover, #wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement:focus {
  border: 2px solid #858482;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer .wbeInputElement:invalid {
  border: 2px solid #DC2626;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement {
  background-image: url("../../images/dropdown-grey.svg");
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: calc(100% - 24px) 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement::-webkit-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement::-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement:-moz-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement:-ms-input-placeholder {
  color: #6B7280 !important;
  font-size: 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement {
  font-size: 16px;
  line-height: 20px;
  color: #1D222B;
  padding: 12px 45px 12px 16px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer select.wbeInputElement::-ms-expand {
  display: none;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer textarea.wbeInputElement {
  resize: none;
  padding-top: 12px !important;
  height: 48px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer textarea.wbeInputElement::-webkit-scrollbar {
  width: 4px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer textarea.wbeInputElement::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #dealOptions #clientInformation .wbeInputContainer textarea.wbeInputElement::-webkit-scrollbar-thumb {
  background-color: #F96A24;
}
#wheelsbook #dealOptions .iti__flag-container {
  display: none !important;
}
#wheelsbook #dealOptions .wbeInputContainerCheck {
  font-size: 0;
}
#wheelsbook #dealOptions .wbeInputContainerCheck label {
  display: inline-block;
  max-width: calc(100% - 20px);
  cursor: pointer;
  margin-left: 0;
  padding-left: 6px;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input {
  background-color: #fff;
  color: #fff;
  border-radius: 5px;
  border: 2px solid #E7E6E6;
  width: 20px;
  height: 20px;
  background-image: url("../../images/checkmark-white.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px 9px;
  margin-top: 20px;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input:hover {
  border: 2px solid #858482;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input:before {
  content: "";
}
#wheelsbook #dealOptions .wbeInputContainerCheck input:checked {
  background-color: #F96A24;
  border: 1px solid #F96A24;
  color: #fff;
}
#wheelsbook #dealOptions .wbeInputContainerCheck a {
  color: #F96A24 !important;
}
#wheelsbook #dealOptions .WebString_Text_IssueDate, #wheelsbook #dealOptions .WebString_Text_ExpiryDate {
  display: inline-block;
  padding: 10px 22px !important;
  text-align: center;
  font-size: 16px !important;
  line-height: 24px !important;
  font-family: FontMedium;
  white-space: nowrap;
  position: relative;
  border-radius: 8px !important;
  letter-spacing: 0.16px;
  text-transform: none !important;
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  transition: background-color linear 0.2s, color linear 0.2s, border linear 0.2s !important;
}
#wheelsbook #dealOptions .WebString_Text_IssueDate:hover, #wheelsbook #dealOptions .WebString_Text_ExpiryDate:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #dealOptions #DealPriceDiv {
  width: calc(100% - 32px) !important;
  border: none !important;
  padding: 16px !important;
  margin: 16px !important;
}
#wheelsbook #dealOptions #DealPriceDiv #GroupMDMVprice, #wheelsbook #dealOptions #DealPriceDiv #GroupMDMRprice {
  font-family: FontBold;
}
#wheelsbook #dealOptions #DealPriceDiv .WebString_Text_FinalPrice {
  font-family: FontMedium;
  margin-bottom: 12px !important;
}

@media screen and (max-width: 1366px) {
  #wheelsbook #dealOptions #LeftSide {
    width: calc(100% - 500px - 30px);
    flex-basis: calc(100% - 500px - 30px);
  }
}
@media screen and (max-width: 1180px) {
  #wheelsbook #dealOptions .wbeDealOptionsContainer {
    flex-direction: row;
    -webkit-flex-direction: row;
  }
  #wheelsbook #dealOptions #RightSide {
    width: 320px;
    flex-basis: 320px;
  }
  #wheelsbook #dealOptions #LeftSide {
    width: calc(100% - 320px - 30px);
    flex-basis: calc(100% - 320px - 30px);
  }
  #wheelsbook #dealOptions #DealPriceDiv {
    position: static;
  }
  #wheelsbook #dealOptions #DealPrice {
    width: auto !important;
    float: none !important;
    text-align: center !important;
  }
  #wheelsbook #dealOptions #next1, #wheelsbook #dealOptions #next2 {
    float: none !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  #wheelsbook #dealOptions #LeftSide {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 15px;
  }
  #wheelsbook #dealOptions #RightSide {
    width: 100%;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 600px) {
  #wheelsbook .summaryVehContainer .wbeVehCategory {
    text-align: left !important;
  }
}
#wheelsbook #BookingSearchRes .wbeBookingSearchResContainer *:not(i) {
  font-family: FontMedium;
  color: #1D222B;
}
#wheelsbook #BookingSearchRes .wbeManageBookInfo {
  flex-basis: calc(100% - 500px - 32px);
  padding: 0;
}
#wheelsbook #BookingSearchRes .wbeManageBookInfo h3 {
  font-family: FontBold;
  color: #1D222B;
  margin-bottom: 16px;
}
#wheelsbook #BookingSearchRes .wbeManageBookInfo h3 span {
  font-family: FontBold;
  color: #1D222B;
}
#wheelsbook #BookingSearchRes .wbeManageBookInfo .manageBookSummary {
  margin-bottom: 24px;
  padding-bottom: 8px;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
#wheelsbook #BookingSearchRes .wbeManageBookInfo .manageBookLabel, #wheelsbook #BookingSearchRes .wbeManageBookInfo .manageBookItem {
  flex-basis: calc(50% - 8px);
  padding: 0 !important;
  margin-bottom: 16px;
}
#wheelsbook #BookingSearchRes .wbeManageBookInfo .manageBookLabel {
  font-family: FontBold;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle {
  overflow: hidden;
  flex-basis: 500px;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle .WebString_Text_VehicleInfo {
  background-color: #F96A24;
  color: #fff;
  padding: 12px 15px;
  font-size: 24px;
  font-family: FontBold;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle .WebString_Text_VehicleInfo * {
  color: #fff;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle .wbeManageBookVehicleInclusive {
  margin: 16px 0 !important;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle .wbeManageBookVehicleInclusive p {
  margin-right: 12px;
  margin-bottom: 12px;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle .WebString_Text_Priceanalysis {
  font-family: FontBold;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle #wbemanagePriceDetails table {
  width: 100%;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle #wbemanagePriceDetails tr.manageBookPriceItem > td {
  line-height: 18px;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle #wbemanagePriceDetails tr.manageBookPriceItem > td:nth-of-type(1) {
  padding: 10px 10px 0 0;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle #wbemanagePriceDetails tr.manageBookPriceItem > td:nth-of-type(2) {
  padding: 10px 0 0 0;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle #wbemanagePriceDetails #wbemanageTotal td:nth-of-type(1) {
  font-family: FontBold;
  padding: 40px 10px 0 0;
}
#wheelsbook #BookingSearchRes .wbeManageBookVehicle #wbemanagePriceDetails #wbemanageTotal td:nth-of-type(2) {
  padding: 32px 0 0 0;
  font-size: 30px;
  white-space: nowrap;
}
#wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer {
  padding: 32px 0 0;
}
#wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer .wbeManageBookButtonContainer button {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  text-decoration: none;
  display: inline-block;
  padding: 10px 22px !important;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  transition: all 0.2s linear;
  flex-basis: auto;
  -webkit-flex-basis: auto;
  text-transform: none;
  margin: 0;
}
#wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer .wbeManageBookButtonContainer button span {
  color: #fff !important;
  transition: all 0.2s linear;
  font-family: FontBold;
}
#wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer .wbeManageBookButtonContainer button:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer .wbeManageBookButtonContainer button:hover span {
  color: #fff !important;
}
#wheelsbook #BookingSearchRes .wbecancelNotif {
  background-color: rgba(255, 255, 255, 0.9);
}
#wheelsbook #BookingSearchRes .wbecancelNotif h2 {
  font-family: FontBold;
  color: #1D222B;
  margin-bottom: 16px;
  font-size: 30px;
  text-align: center;
}
#wheelsbook #BookingSearchRes .wbecancelNotif .cncButtonsCont button {
  color: #fff !important;
  background-color: #F96A24 !important;
  border: 2px solid #F96A24 !important;
  text-decoration: none;
  display: inline-block;
  padding: 10px 22px !important;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: FontSemiBold;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.16px;
  transition: all 0.2s linear;
  text-transform: none;
  margin: 0;
  min-width: 0;
}
#wheelsbook #BookingSearchRes .wbecancelNotif .cncButtonsCont button:hover {
  color: #fff !important;
  background-color: #AE4A19 !important;
  border: 2px solid #AE4A19 !important;
}
#wheelsbook #BookingSearchRes #wbebookemailnotif, #wheelsbook #BookingSearchRes .cncBookOuterCont {
  background-color: rgba(255, 255, 255, 0.9);
}
#wheelsbook #BookingSearchRes #wbebookemailnotif p, #wheelsbook #BookingSearchRes .cncBookOuterCont p {
  color: #1D222B;
}
#wheelsbook #BookingSearchRes #wbebookemailnotif p:nth-of-type(1), #wheelsbook #BookingSearchRes .cncBookOuterCont p:nth-of-type(1) {
  font-family: FontBold;
  font-size: 24px;
  line-height: 32px;
}
#wheelsbook #BookingSearchRes #wbebookemailnotif p:nth-of-type(2), #wheelsbook #BookingSearchRes .cncBookOuterCont p:nth-of-type(2) {
  font-family: FontMedium;
  font-size: 16px;
  line-height: 24px;
}
#wheelsbook #BookingSearchRes .cncBookOuterCont {
  flex-direction: column;
  -webkit-flex-direction: column;
}

@media screen and (max-width: 1023px) {
  #wheelsbook #BookingSearchRes .wbeManageBookInfo, #wheelsbook #BookingSearchRes .wbeManageBookVehicle {
    flex-basis: 100%;
    width: 100%;
  }
  #wheelsbook #BookingSearchRes .wbeManageBookVehicle {
    padding: 0;
  }
  #wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer {
    text-align: center;
  }
  #wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer .wbeManageBookButtonContainer {
    margin-bottom: 12px;
  }
  #wheelsbook #BookingSearchRes .wbeManageBookPriceButtonContainer .wbeManageBookButtonContainer:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  #wheelsbook #BookingSearchRes .wbecancelNotif .cncButtonsCont {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  #wheelsbook #BookingSearchRes .wbecancelNotif h2 {
    font-size: 24px;
  }
}
#wheelsbook #LeftSide .ChargeTitle {
  margin-bottom: 23px;
}
#wheelsbook #LeftSide .dealPackagesContainer ul li {
  height: 55px;
  font-size: 14px;
  line-height: 18px;
  border-bottom: 1px solid lightgray;
  border-left: 1px solid lightgray;
  padding: 0 12px;
}
#wheelsbook #LeftSide .dealPackagesContainer ul li:nth-of-type(1) {
  border-top: 1px solid lightgray;
}
#wheelsbook #LeftSide .dealPackagesContainer ul li i {
  font-family: "Font Awesome 5 Pro" !important;
}
#wheelsbook #LeftSide .dealPackagesDescription {
  border: 0;
  padding: 0;
}
#wheelsbook #LeftSide .dealPackagesDescription > ul {
  margin-top: 64px;
}
#wheelsbook #LeftSide .dealPackagesDescription > ul > li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
#wheelsbook #LeftSide .dealPackagesItem {
  transition: all 0.2s linear;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
#wheelsbook #LeftSide .dealPackagesItem:nth-last-of-type(1) .dealPackageTitle {
  border-right: 1px solid lightgray;
}
#wheelsbook #LeftSide .dealPackagesItem:nth-last-of-type(1) .dealPackagesItemButton {
  border-right: 1px solid lightgray;
}
#wheelsbook #LeftSide .dealPackagesItem:nth-last-of-type(1) ul li {
  border-right: 1px solid lightgray;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackageTitle {
  border-top: 1px solid lightgray;
  border-left: 1px solid lightgray;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackagesItemButton {
  padding: 16px;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackageTitle {
  font-size: 14px;
  font-weight: bold;
  padding: 16px;
  height: 64px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-color: #F96A24;
  color: #fff !important;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackagesItemButton {
  border-left: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackagesItemButton label {
  border-radius: 5px;
  color: #F96A24 !important;
  background-color: #fff !important;
  border: 2px solid #818181 !important;
  font-family: FontMedium;
  transition: all 0.2s linear;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackagesItemButton label input {
  text-align: center;
  font-size: 16px !important;
  font-family: FontMedium;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackagesItemButton label:hover {
  background-color: #F96A24 !important;
  color: #fff !important;
  border: 2px solid #F96A24 !important;
}
#wheelsbook #LeftSide .dealPackagesItem .dealPackagesItemButton span {
  color: inherit;
}
#wheelsbook #LeftSide .dealPackagesItemActive .dealPackagesItemButton label {
  background-color: #F96A24 !important;
  color: #fff !important;
  border: 2px solid #F96A24 !important;
}
#wheelsbook #LeftSide .dealPackagesItemActive .dealPackagesItemButton label:hover {
  background-color: #F96A24 !important;
  color: #fff !important;
  border: 2px solid #F96A24 !important;
}

@media screen and (max-width: 1180px) {
  #wheelsbook .dealPackagesMobileTitlesContainer {
    gap: 16px;
  }
  #wheelsbook .dealPackagesMobileItem {
    border-radius: 5px;
  }
  #wheelsbook .dealPackageMobileTitle {
    width: calc((100% - 32px) / 3.001);
    padding: 12px !important;
    border-radius: 5px;
    font-family: FontMedium;
    transition: all 0.2s linear;
    margin-bottom: 16px !important;
    color: #F96A24 !important;
    background-color: #fff !important;
    border: 2px solid #818181 !important;
    opacity: 1 !important;
    cursor: pointer;
  }
  #wheelsbook .dealPackageMobileTitle:hover {
    background-color: #F96A24 !important;
    color: #fff !important;
    border: 2px solid #F96A24 !important;
  }
  #wheelsbook .dealPackageMobileTitleActive {
    background-color: #F96A24 !important;
    color: #fff !important;
    border: 2px solid #F96A24 !important;
  }
  #wheelsbook .dealPackageMobileTitleActive:hover {
    background-color: #F96A24 !important;
    color: #fff !important;
    border: 2px solid #F96A24 !important;
  }
  #wheelsbook .dealPackagesMobileContainer ul li {
    min-height: 0 !important;
    padding: 15px 20px !important;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    gap: 16px;
  }
  #wheelsbook .dealPackagesMobileContainer ul li:nth-last-of-type(1) {
    border-bottom: none !important;
    justify-content: center;
    -webkit-justify-content: center;
  }
  #wheelsbook .dealPackagesMobileValue {
    float: none !important;
  }
}
@media screen and (max-width: 960px) {
  #wheelsbook .dealPackagesMobileTitlesContainer {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-bottom: 16px;
  }
  #wheelsbook .dealPackageMobileTitle {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}
.arrows-bg {
  bottom: 0;
  left: 0;
  opacity: 0.4;
}

.common-section-main {
  margin-bottom: 64px;
  gap: 16px 32px;
}

.blog-page .blog-list {
  padding: 0;
  max-width: none;
  margin: 0;
}

.common-section-title-wrapper {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}

.common-section-button {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.common-load-more-wrapper {
  margin-top: 64px;
}

.common-big-stroke {
  border: 3px solid #858482;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: -12px;
  top: -12px;
  border-radius: 10px;
}

.common-card-title {
  margin-bottom: 4px;
}

.common-card-data {
  gap: 16px;
}

.dots-overlay {
  opacity: 0.3;
  width: 820px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
}

.common-card-price {
  gap: 8px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.common-card-price span {
  font-family: FontBold;
  font-size: 28px;
  line-height: 150%;
  position: relative;
  top: 7px;
}

.common-card-image {
  margin-bottom: 48px;
}
.common-card-image img {
  max-height: 258px;
}
.common-card-image .common-card-image-back {
  top: -64px;
  right: 72px;
}

.common-dropdown-link {
  gap: 4px;
}
.common-dropdown-link svg {
  position: relative;
  top: 0.5px;
  width: 13px;
  height: 7px;
}
.common-dropdown-link svg path {
  fill: #1D222B;
  transition: all 0.2s linear;
}
.common-dropdown-link:hover {
  color: #F96A24;
}
.common-dropdown-link:hover svg path {
  fill: #F96A24;
}

.title-404 {
  font-size: 100px;
  line-height: 110%;
  margin-bottom: 12px;
}

.content-404 {
  max-width: 696px;
  margin-bottom: 24px;
  color: #939CAB;
}

.simple-page-main {
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.simple-page-title {
  margin-bottom: 16px;
}

.simple-page-updated {
  color: #939CAB;
  font-size: 16px;
  line-height: 150%;
}

.simple-page-main-container {
  max-width: 1000px;
}

.back-button {
  color: #1D222B;
  letter-spacing: 0.16px;
  margin-bottom: 32px;
  gap: 12px;
  font-family: FontBold;
}
.back-button svg {
  width: 15px;
  height: 14px;
  transition: all 0.2s linear;
}
.back-button svg path {
  transition: all 0.2s linear;
  fill: #1D222B;
}
.back-button:hover {
  color: #F96A24;
}
.back-button:hover svg {
  transform: translateX(-3px);
  -webkit-transform: translateX(-3px);
}
.back-button:hover svg path {
  fill: #F96A24;
}

.single-blog-page-title, .single-blog-page-socials, .single-blog-page-image, .single-blog-page-wysiwyg {
  margin-bottom: 32px;
}

.single-blog-page-image img {
  max-height: 624px;
}

.single-blog-page .common-slick-carousel .slick-dots {
  bottom: 32px;
}

.single-separator {
  border-bottom: 1px solid #E7E6E6;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.single-fleet-badge {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 150%;
  white-space: nowrap;
  font-family: FontBold;
}

.single-fleet-badge-simple {
  color: #fff;
  border: 2px solid #0D0B2A;
  background-color: #0D0B2A;
}

.single-fleet-badge-discount {
  color: #fff;
  border: 2px solid #DC2626;
  background-color: #DC2626;
}

.single-fleet-badge-fuel {
  gap: 8px;
  color: #fff;
  border: 2px solid #16A34A;
  background-color: #16A34A;
}
.single-fleet-badge-fuel svg {
  width: 11px;
  height: 13px;
}
.single-fleet-badge-fuel svg path {
  fill: #fff;
}

.wheelsbook-wrapper {
  width: calc(100% - 32px);
  margin: 0 auto;
  min-height: 200px;
}

.single-fleet-page .wheelsbook-wrapper {
  width: 100% !important;
}

.wheelsbook-preloader {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  width: 200px;
  height: 200px;
  animation: rotating 5s linear infinite;
  -webkit-animation: rotating 5s linear infinite;
}

.wysiwyg-show-more-preview-inner {
  margin-bottom: 24px;
}
.wysiwyg-show-more-preview-inner:before {
  content: "";
  display: block;
  height: 207px;
  width: 100%;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.wysiwyg-show-more {
  gap: 16px;
}
.wysiwyg-show-more span {
  font-size: 16px;
  line-height: 24px;
  font-family: FontBold;
  letter-spacing: 0.16px;
  color: #1D222B;
  transition: all 0.2s linear;
}
.wysiwyg-show-more svg {
  width: 13px;
  height: 7px;
}
.wysiwyg-show-more svg path {
  transition: all 0.2s linear;
  fill: #1D222B;
}
.wysiwyg-show-more:hover span {
  color: #F96A24;
}
.wysiwyg-show-more:hover svg path {
  fill: #F96A24;
}

@media screen and (max-width: 1680px) {
  .common-section-main {
    margin-bottom: 48px;
  }
  .common-load-more-wrapper {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .common-section-main {
    margin-bottom: 32px;
  }
  .common-load-more-wrapper {
    margin-top: 32px;
  }
  .common-card-image {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .single-more-article-container-mobile {
    display: none;
  }
  .blog-section-button-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .common-section-main {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .simple-page-main {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .back-button, .single-blog-page-title, .single-blog-page-socials, .single-blog-page-image, .single-blog-page-wysiwyg, .common-section-main {
    margin-bottom: 24px;
  }
  .single-separator {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .simple-page-title {
    font-size: 24px;
    line-height: 32px;
  }
  .title-404 {
    font-size: 56px;
    line-height: 110%;
    margin-bottom: 16px;
    font-family: FontMediumExtra;
  }
  .single-more-article-container-desktop {
    display: none;
  }
  .blog-section-button-desktop {
    display: none;
  }
  .blog-section-button-mobile a {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .common-big-stroke {
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    left: -8px;
    top: -8px;
  }
  .common-card-data {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    text-align: center;
  }
  .common-card-price {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .common-card-price, .common-card-permalink {
    width: 100%;
  }
}
.home-page .locations-section .common-slick-carousel .slick-dotted.slick-slider, .home-page .reviews-section .common-slick-carousel .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.home-page .locations-section .common-slick-carousel .slick-prev,
.home-page .locations-section .common-slick-carousel .slick-next, .home-page .reviews-section .common-slick-carousel .slick-prev,
.home-page .reviews-section .common-slick-carousel .slick-next {
  top: calc(100% - 40px);
  transform: translateY(0);
}
.home-page .locations-section .common-slick-carousel .slick-next, .home-page .reviews-section .common-slick-carousel .slick-next {
  right: 0;
}
.home-page .locations-section .common-slick-carousel .slick-prev, .home-page .reviews-section .common-slick-carousel .slick-prev {
  left: calc(100% - 88px);
}
.home-page .locations-section .common-slick-carousel .slick-prev {
  right: calc((100vw - 8px - 1480px) / 2 + 20px + 12px + 74px);
  left: unset;
}
.home-page .locations-section .common-slick-carousel .slick-next {
  right: calc((100vw - 8px - 1480px) / 2 + 20px + 12px + 24px);
}
.home-page .locations-section .common-slick-carousel .slick-disabled {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1480px) {
  .home-page .locations-section-inner .main-container {
    margin: 0;
    padding: 0;
    max-width: none;
  }
  .home-page .locations-section-inner .slick-list {
    padding: 0 32px;
  }
  .home-page .locations-section-inner .slick-dots {
    left: 32px !important;
  }
  .home-page .locations-section-inner .slick-next {
    right: 32px !important;
  }
  .home-page .locations-section-inner .slick-prev {
    left: calc(100% - 120px) !important;
  }
}
@media screen and (min-width: 768px) {
  .home-page .reviews-section-main-button-mobile, .home-page .blog-section-mobile, .home-page .fleet-section-button-mobile {
    display: none;
  }
  .home-page .reviews-section .common-slick-carousel .slick-dots {
    bottom: -40px !important;
  }
  .home-page .reviews-section .common-slick-carousel .slick-next, .home-page .reviews-section .common-slick-carousel .slick-prev {
    top: 100% !important;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots, .home-page .reviews-section .common-slick-carousel .slick-dots {
    display: flex !important;
    justify-content: flex-start;
    margin-top: 32px;
    gap: 6px;
    bottom: 0;
    left: 0;
    position: relative;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots li, .home-page .reviews-section .common-slick-carousel .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots li button, .home-page .reviews-section .common-slick-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C8CFDA;
    padding: 0;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots li button:before, .home-page .reviews-section .common-slick-carousel .slick-dots li button:before {
    content: none;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots li:hover button, .home-page .reviews-section .common-slick-carousel .slick-dots li:hover button {
    background-color: #939CAB;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots li.slick-active button, .home-page .reviews-section .common-slick-carousel .slick-dots li.slick-active button {
    background-color: #939CAB;
  }
  .home-page .locations-section .common-slick-carousel .slick-dots {
    left: calc((100vw - 8px - 1480px) / 2 + 32px);
  }
}
@media screen and (max-width: 767px) {
  .home-page .fleet-section, .home-page .locations-section, .home-page .reviews-section, .home-page .blog-section-mobile, .home-page .reviews-section-carousel-wrapper {
    margin: 64px 0;
    padding: 0 !important;
  }
  .home-page .reviews-section-main-statistic {
    flex-direction: column;
    align-items: start !important;
  }
  .home-page .reviews-section-main-title {
    order: 1;
  }
  .home-page .reviews-information-wrapper {
    order: 2;
  }
  .home-page .reviews-section-main-button-desktop, .home-page .fleet-section-button-desktop, .home-page .blog-section-desktop {
    display: none;
  }
  .home-page .locations-section-inner .slick-dots {
    left: 0 !important;
  }
  .home-page .reviews-section-carousel .slick-dots {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .home-page .locations-section-inner .slick-list {
    padding: 0 16px;
  }
}
.reviews-page .reviews-main, .reviews-page .reviews-form-main-container {
  margin: 80px 0 100px 0;
}
.reviews-page .reviews-form-wrapper {
  margin: 0 auto;
  max-width: 969px;
}
.reviews-page .reviews-form-content {
  margin: 0 auto;
}
.reviews-page .reviews-form-container-inner {
  gap: 32px;
}
.reviews-page .reviews-form-title {
  font-size: 28px;
  line-height: 120%;
}
.reviews-page .reviews-main-inner {
  margin-bottom: 64px;
  gap: 32px;
}
.reviews-page .reviews-main-wysiwyg {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 696px;
}
.reviews-page .reviews-main-button {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-left: auto;
}
.reviews-page .reviews-main-button svg {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.reviews-page .reviews-list {
  gap: 40px 24px;
}
.reviews-page .single-review {
  width: calc(50% - 12px);
}
.reviews-page .reviews-rating-input {
  -moz-appearance: textfield;
}
.reviews-page .reviews-rating-input::-webkit-outer-spin-button, .reviews-page .reviews-rating-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (max-width: 1680px) {
  .reviews-page .reviews-main, .reviews-page .reviews-form-main-container {
    margin: 64px 0;
  }
  .reviews-page .reviews-main-inner {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .reviews-page .reviews-main, .reviews-page .reviews-form-main-container {
    margin: 48px 0;
  }
  .reviews-page .reviews-main-inner {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .reviews-page .single-review {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .reviews-page .reviews-main-inner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .reviews-page .reviews-main-wysiwyg {
    width: 100%;
    max-width: none;
  }
  .reviews-page .single-review {
    width: 100%;
  }
}
.helpdesk-page .helpdesk-container {
  gap: 48px;
}
.helpdesk-page .helpdesk-anchors-link-wrapper {
  display: none !important;
}
.helpdesk-page .helpdesk-anchors-wrapper {
  width: 456px;
}
.helpdesk-page .helpdesk-anchors-list {
  padding: 20px;
  border: 2px solid #DEE4EB;
  background-color: #ECF0F3;
}
.helpdesk-page .helpdesk-section-subtext {
  color: #939CAB;
}
.helpdesk-page .single-helpdesk-anchor-wrapper {
  margin-bottom: 16px;
}
.helpdesk-page .single-helpdesk-anchor {
  gap: 10px;
}
.helpdesk-page .single-helpdesk-anchor span {
  width: 24px;
  height: 24px;
  text-align: center;
}
.helpdesk-page .single-helpdesk-anchor span svg {
  width: 13px;
  height: 13px;
}
.helpdesk-page .single-helpdesk-anchor span svg path {
  transition: all 0.2s linear;
}
.helpdesk-page .single-helpdesk-anchor:hover {
  color: #F96A24;
}
.helpdesk-page .single-helpdesk-anchor:hover span svg path {
  fill: #F96A24;
}
.helpdesk-page .single-helpdesk-anchor.active {
  color: #F96A24;
}
.helpdesk-page .single-helpdesk-anchor.active svg path {
  fill: #F96A24;
}
.helpdesk-page .helpdesk {
  width: calc(100% - 456px - 48px);
}
.helpdesk-page .helpdesk-section {
  border-bottom: 1px solid #E7E6E6;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.helpdesk-page .helpdesk-section:nth-last-of-type(1) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.helpdesk-page .helpdesk-section-main {
  margin-bottom: 24px;
}
.helpdesk-page .helpdesk-section-title {
  margin-bottom: 16px;
}

@media screen and (max-width: 1280px) {
  .helpdesk-page .helpdesk-container {
    gap: 32px;
  }
  .helpdesk-page .helpdesk-anchors-wrapper {
    width: 300px;
  }
  .helpdesk-page .helpdesk {
    width: calc(100% - 300px - 32px);
  }
}
@media screen and (min-width: 1025px) {
  .helpdesk-anchors-mobile {
    display: none !important;
  }
  .helpdesk-anchors-desktop {
    display: block !important;
    position: sticky;
    top: calc(88px + 32px);
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .helpdesk-page .helpdesk-anchors-wrapper, .helpdesk-page .helpdesk {
    width: 100%;
  }
  .helpdesk-page .helpdesk-anchors-desktop {
    display: none;
  }
  .helpdesk-page .helpdesk-anchors-mobile {
    display: block !important;
    position: relative;
    left: 0;
    width: 100%;
  }
  .helpdesk-page .helpdesk-anchors-list {
    padding: 12px;
  }
  .helpdesk-page .single-helpdesk-anchor-wrapper {
    margin-bottom: 4px;
  }
}
.services-page .services-list {
  gap: 24px;
}
.services-page .single-service {
  padding: 24px;
  background-color: #ECF0F3;
  width: calc((100% - 48px) / 3.001);
  border: 2px solid #C8CFDA;
  transition: all 0.2s linear;
}
.services-page .single-service:hover {
  border: 2px solid #939CAB;
}
.services-page .single-service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
}
.services-page .single-service-icon img {
  width: 24px;
  height: 24px;
}
.services-page .single-service-stroke {
  border: 3px solid #C8CFDA;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  left: -7px;
  top: -7px;
  border-radius: 50%;
}
.services-page .single-service-main {
  margin-bottom: 32px;
}
.services-page .single-service-title {
  font-size: 28px;
  line-height: 120%;
  color: #1C1F29;
}

@media screen and (max-width: 1024px) {
  .services-page .single-service {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .services-page .single-service {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .services-page .single-service {
    padding: 16px;
  }
}
.manage-booking-page {
  background-color: #EDECEA;
}
.manage-booking-page .manage-booking-wrapper {
  gap: 48px;
}
.manage-booking-page .manage-booking-side {
  width: calc(50% - 24px);
}
.manage-booking-page .manage-booking-side-content {
  margin-bottom: 32px;
}
.manage-booking-page .manage-booking-side-content-main {
  margin-bottom: 24px;
}
.manage-booking-page .manage-booking-side-content-title {
  margin-bottom: 12px;
}
.manage-booking-page .manage-booking-side-content-form {
  max-width: 456px;
}
.manage-booking-page .inputs-wrapper {
  margin-bottom: 32px;
}
.manage-booking-page .single-input {
  margin-bottom: 20px;
}
.manage-booking-page .manage-booking-image img {
  max-height: calc(100vh - 88px - 32px);
}

@media screen and (max-width: 1680px) {
  .manage-booking-page .manage-booking-wrapper {
    gap: 32px;
  }
  .manage-booking-page .manage-booking-side {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 767px) {
  .manage-booking-page .manage-booking-wrapper {
    gap: 24px;
  }
  .manage-booking-page .manage-booking-side {
    width: 100%;
  }
}
.toplevel_page_subscribers {
  padding-top: 0;
}

#wpcontent {
  padding-left: 0 !important;
}

#wpbody-content {
  padding-bottom: 0 !important;
}

.main-container-admin-panel {
  padding: 0 16px;
  margin: 0 auto;
}
.main-container-admin-panel a:focus {
  box-shadow: none;
}
.main-container-admin-panel input:focus {
  box-shadow: none;
  outline: none;
  border-color: #F96A24;
}
.main-container-admin-panel .default-admin-wrapper {
  padding: 32px 0;
}
.main-container-admin-panel .single-row-subscribe {
  margin-bottom: 3px;
}
.main-container-admin-panel .single-row-subscribe {
  font-size: 16px;
}
.main-container-admin-panel .row-id {
  width: 60px;
  color: #1D222B;
  margin-right: 16px;
}
.main-container-admin-panel .row-value {
  width: 300px;
}
.main-container-admin-panel .row-value a {
  color: #F96A24;
}
.main-container-admin-panel .row-value a:hover:before, .main-container-admin-panel .row-value a:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .row-value a:after {
  left: 0;
  background-color: #F96A24;
}
.main-container-admin-panel .row-value a:before, .main-container-admin-panel .row-value a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .row-value a {
  position: relative;
}
.main-container-admin-panel .row-value a:hover {
  color: #F96A24;
}
.main-container-admin-panel .row-date {
  width: 100px;
  color: #1D222B;
  margin-right: 16px;
  white-space: nowrap;
}
.main-container-admin-panel .delete-wrapper .delete-toggle {
  width: 16px;
  height: 16px;
  cursor: pointer;
  object-fit: contain;
  margin-right: 16px;
}
.main-container-admin-panel .delete-wrapper .delete-toggle:hover {
  -webkit-animation: rotating 0.5s 0.1s ease-out;
  animation: rotating 0.5s 0.1s ease-out;
}
.main-container-admin-panel .delete-wrapper .are-you-sure {
  font-size: 12px;
}
.main-container-admin-panel .delete-wrapper .delete-it {
  color: #F96A24;
  text-decoration: underline;
  margin-left: 4px;
}
.main-container-admin-panel .single-admin-panel-select {
  width: 200px;
}
.main-container-admin-panel .export-button {
  font-size: 0;
}
.main-container-admin-panel .subscribers-export-wrapper {
  margin-bottom: 32px;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .main-container-admin-panel .row-subscribe-date {
    width: 100%;
    text-align: right;
  }
  .main-container-admin-panel .row-value {
    width: 100%;
  }
  .main-container-admin-panel .single-row-subscribe {
    margin-bottom: 12px;
  }
  .main-container-admin-panel .single-row-subscribe {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .main-container-admin-panel .delete-wrapper .delete-toggle-subscribe {
    margin: 0 0 0 16px;
    order: 2;
  }
  .main-container-admin-panel .delete-wrapper .are-you-sure-subscribe {
    order: 1;
  }
}
@media screen and (max-width: 500px) {
  .main-container-admin-panel .single-admin-panel-select {
    width: 100%;
  }
}
.single-location-page .single-location-container {
  gap: 24px;
}
.single-location-page .single-location-side {
  width: calc(50% - 12px);
}
.single-location-page .single-location-side-content {
  padding-right: 24px;
}
.single-location-page .single-location-main {
  margin-bottom: 32px;
}
.single-location-page .single-location-title {
  margin-bottom: 10px;
}
.single-location-page .single-location-address a {
  position: relative;
}
.single-location-page .single-location-address a:hover:before, .single-location-page .single-location-address a:hover:after {
  width: 100%;
  opacity: 1;
}
.single-location-page .single-location-address a:after {
  left: 0;
  background-color: #F96A24;
}
.single-location-page .single-location-address a:before, .single-location-page .single-location-address a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.single-location-page .single-location-address a .single-location-address-text {
  color: #F96A24;
  font-family: FontBold;
  font-size: 16px;
  line-height: 150%;
}
.single-location-page .single-location-contacts {
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid #DEE4EB;
  background-color: #fff;
  max-width: 672px;
  width: 100%;
}
.single-location-page .single-location-contact, .single-location-page .single-location-contact-subtext {
  gap: 8px;
}
.single-location-page .single-location-contact-subtext {
  font-size: 16px;
  line-height: 150%;
}
.single-location-page .single-location-contact a {
  color: #1D222B;
  display: inline-flex;
  display: -webkit-inline-flex;
  font-family: FontRegular;
}
.single-location-page .single-location-contact a:hover {
  color: #F96A24;
}
.single-location-page .single-location-contact-image {
  width: 20px;
}
.single-location-page .single-location-contact-image svg {
  width: 17px;
  height: 24px;
}
.single-location-page .single-location-contact-image svg path {
  transition: all 0.2s linear;
  fill: #1C1F29;
}
.single-location-page .single-location-description-title {
  margin-bottom: 20px;
}
.single-location-page .single-location-description-inner-wrapper {
  margin-bottom: 24px;
}
.single-location-page .pickup-title {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 16px;
}
.single-location-page .single-location-pickup-return-main {
  margin-bottom: 32px;
}
.single-location-page .pickup-link a {
  color: #F96A24;
  gap: 10px;
  font-size: 16px;
  line-height: 150%;
}
.single-location-page .pickup-link a span {
  width: 24px;
  height: 24px;
  text-align: center;
}
.single-location-page .pickup-link a span svg {
  width: 15px;
  height: 15px;
  transition: all 0.3s linear;
}
.single-location-page .pickup-link a span svg path {
  fill: #F96A24;
}
.single-location-page .pickup-link a:hover span svg {
  transform: translateX(3px) translateY(-3px);
}
.single-location-page .single-location-pickup-return, .single-location-page .single-location-pickup-return-row {
  margin-bottom: 16px;
}
.single-location-page .single-location-pickup-return-row:before {
  content: "";
  width: 1px;
  background-color: #1A1A1A;
  position: absolute;
  left: 9.5px;
  top: 51px;
  height: calc(100% - 16px);
}
.single-location-page .single-location-pickup-return-row:nth-last-of-type(1):before {
  content: none;
}
.single-location-page .single-location-pickup-return-subtext {
  margin-bottom: 6px;
  padding-left: 36px;
}
.single-location-page .single-location-pickup-return-value {
  gap: 16px;
}
.single-location-page .single-location-pickup-return-value-image {
  width: 20px;
}
.single-location-page .single-location-pickup-return-value-image > svg {
  width: 17px;
  height: 24px;
}
.single-location-page .single-location-pickup-return-value-image > svg path {
  fill: #1C1F29;
}
.single-location-page .single-location-pickup-return-value-image .pickup-direction {
  top: -2px;
  right: -2px;
}
.single-location-page .single-location-pickup-return-value-image .pickup-direction svg {
  width: 14px;
  height: 14px;
}
.single-location-page .single-location-pickup-return-value-text {
  width: calc(100% - 20px - 16px);
  font-size: 14px;
  line-height: 150%;
  gap: 6px;
}
.single-location-page .single-location-pickup-return-map {
  height: 224px;
}
.single-location-page .single-location-video-section {
  max-width: 672px;
  width: 100%;
}
.single-location-page .single-location-video-inner {
  border: 2px solid #C8CFDA;
  gap: 24px;
}
.single-location-page .single-location-video-image {
  width: 162px;
}
.single-location-page .single-location-video-image-inner:before {
  content: "";
  display: block;
  padding-top: 81.4%;
}
.single-location-page .single-location-video-image-inner img {
  border-radius: 8px 0 0 8px;
}
.single-location-page .single-location-video-content {
  width: calc(100% - 162px - 24px);
  padding: 16px 16px 16px 0;
}
.single-location-page .single-location-video-content-title {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 16px;
}
.single-location-page .single-location-schedule-title {
  margin-bottom: 10px;
}
.single-location-page .single-location-schedule-row {
  margin-bottom: 6px;
}
.single-location-page .single-location-carousel-inner {
  margin-bottom: 64px;
}
.single-location-page .play-btn {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 150%;
}
.single-location-page .play-btn svg {
  width: 17px;
  height: 17px;
}
.single-location-page .location-carousel {
  margin-bottom: 64px !important;
}
.single-location-page .common-slick-carousel .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.single-location-page .common-slick-carousel .slick-prev,
.single-location-page .common-slick-carousel .slick-next {
  top: calc(100% - 40px);
  transform: translateY(0);
}
.single-location-page .common-slick-carousel .slick-next {
  right: 0;
}
.single-location-page .common-slick-carousel .slick-prev {
  left: calc(100% - 88px);
}
.single-location-page .locations-section .common-slick-carousel .slick-prev {
  right: calc((100vw - 8px - 1480px) / 2 + 20px + 12px + 74px);
  left: unset;
}
.single-location-page .locations-section .common-slick-carousel .slick-next {
  right: calc((100vw - 8px - 1480px) / 2 + 20px + 12px + 24px);
}
.single-location-page .locations-section .common-slick-carousel .slick-disabled {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1480px) {
  .single-location-page .locations-section-inner .main-container {
    margin: 0;
    padding: 0;
    max-width: none;
  }
  .single-location-page .locations-section-inner .slick-list {
    padding: 0 32px;
  }
  .single-location-page .locations-section-inner .slick-dots {
    left: 32px !important;
  }
  .single-location-page .locations-section-inner .slick-next {
    right: 32px !important;
  }
  .single-location-page .locations-section-inner .slick-prev {
    left: calc(100% - 120px) !important;
  }
}
@media screen and (max-width: 1024px) {
  .single-location-page .single-location-video-section {
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .single-location-page .common-slick-carousel .slick-dots {
    display: flex !important;
    justify-content: flex-start;
    margin-top: 32px;
    gap: 6px;
    bottom: 0;
    left: 0;
    position: relative;
  }
  .single-location-page .common-slick-carousel .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .single-location-page .common-slick-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C8CFDA;
    padding: 0;
  }
  .single-location-page .common-slick-carousel .slick-dots li button:before {
    content: none;
  }
  .single-location-page .common-slick-carousel .slick-dots li:hover button {
    background-color: #939CAB;
  }
  .single-location-page .common-slick-carousel .slick-dots li.slick-active button {
    background-color: #939CAB;
  }
  .single-location-page .locations-section .common-slick-carousel .slick-dots {
    left: calc((100vw - 8px - 1480px) / 2 + 32px);
  }
}
@media screen and (min-width: 1025px) {
  .single-location-page .single-location-lightbox-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .single-location-page .single-location-video-image-inner img {
    border-radius: 8px 0 0 0;
  }
  .single-location-page .single-location-contacts {
    max-width: none;
  }
  .single-location-page .single-location-carousel-inner {
    margin-bottom: 40px;
  }
  .single-location-page .single-location-side-content {
    width: 100%;
    padding-right: 0;
  }
  .single-location-page .single-location-side-images {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .single-location-page .location-carousel-btn-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .single-location-page .single-location-main {
    margin-bottom: 24px;
  }
  .single-location-page .single-location-video-inner {
    gap: 16px;
  }
  .single-location-page .single-location-video-section {
    max-width: none;
  }
  .single-location-page .single-location-video-content-title {
    font-size: 20px;
    line-height: 140%;
  }
  .single-location-page .single-location-description-title {
    margin-bottom: 16px;
  }
  .single-location-page .single-location-video-image, .single-location-page .single-location-video-content {
    width: 100%;
  }
  .single-location-page .single-location-video-content {
    padding: 0 16px 16px 16px;
  }
  .single-location-page .single-location-video-content-title {
    margin-bottom: 16px;
  }
  .single-location-page .location-carousel-btn-mobile {
    width: 100%;
  }
  .single-location-page .location-carousel-btn-desktop {
    display: none;
  }
  .single-location-page .locations-section {
    margin: 64px 0;
    padding: 0 !important;
  }
  .single-location-page .locations-section .locations-section-inner .slick-dots {
    left: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .single-location-page .single-location-contact {
    width: 100%;
  }
  .single-location-page .single-location-contact {
    flex-direction: column;
    align-items: start !important;
  }
  .single-location-page .single-location-contact-data, .single-location-page .single-location-address-text {
    margin-left: 28px;
  }
  .single-location-page .locations-section-inner .slick-list {
    padding: 0 16px;
  }
}
.single-fleet-page .lightbox-wrapper .single-lightbox-gallery-preview {
  width: calc((100% - 48px) / 4.001);
}
.single-fleet-page .single-location-container {
  gap: 24px;
}
.single-fleet-page .single-fleet-side {
  width: calc(50% - 12px);
}
.single-fleet-page .single-fleet-side-content {
  padding-left: 24px;
}
.single-fleet-page .single-fleet-lightbox {
  margin-bottom: 48px;
}
.single-fleet-page .single-fleet-parameters {
  gap: 12px;
  margin-bottom: 32px;
}
.single-fleet-page .single-fleet-parameter {
  width: calc((100% - 32px) / 3.001);
  gap: 16px;
}
.single-fleet-page .single-fleet-icon svg {
  width: 20px;
}
.single-fleet-page .single-fleet-value {
  width: calc(100% - 20px - 16px);
}
.single-fleet-page .single-fleet-badges {
  margin-bottom: 16px;
  gap: 10px;
}
.single-fleet-page .single-fleet-titles {
  margin-bottom: 24px;
}
.single-fleet-page .single-fleet-title {
  margin-bottom: 10px;
}
.single-fleet-page .single-fleet-price-row {
  gap: 10px;
}
.single-fleet-page .single-fleet-info {
  gap: 8px;
}
.single-fleet-page .single-fleet-info-icon svg {
  width: 14px;
  height: 14px;
}
.single-fleet-page .single-fleet-info-icon svg path {
  fill: #939CAB;
}
.single-fleet-page .single-fleet-info-text {
  max-width: calc(100% - 14px - 10px);
  font-size: 12px;
  line-height: 18px;
}
.single-fleet-page .single-fleet-description-inner {
  margin-bottom: 24px;
}
.single-fleet-page .single-fleet-description-title {
  margin-bottom: 24px;
}
.single-fleet-page .single-fleet-description-points {
  gap: 16px;
}
.single-fleet-page .single-fleet-description-point {
  gap: 12px;
  width: calc(50% - 8px);
}
.single-fleet-page .single-fleet-description-point-icon svg {
  position: relative;
  top: 6px;
  width: 12px;
  height: 9px;
}
.single-fleet-page .single-fleet-description-point-icon svg path {
  fill: #16A34A;
}
.single-fleet-page .single-fleet-description-point-text {
  width: calc(100% - 12px - 12px);
}
.single-fleet-page #wheelsbook {
  background-color: #EDECEA !important;
  margin: 64px 0 !important;
}
.single-fleet-page #wheelsbook:before {
  border: 3px solid #858482 !important;
}
.single-fleet-page #wheelsbook #dealOptions {
  background-color: #EDECEA !important;
}

@media screen and (max-width: 1680px) {
  .single-fleet-page .single-fleet-lightbox {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .single-fleet-page #wheelsbook {
    margin: 48px 0 !important;
  }
}
@media screen and (min-width: 1025px) {
  .single-fleet-page .single-fleet-dynamic-mobile, .single-fleet-page .single-fleet-description-wrapper-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .single-fleet-page .single-fleet-side {
    width: 100%;
  }
  .single-fleet-page .single-fleet-side-content {
    order: 1;
    padding-left: 0;
  }
  .single-fleet-page .single-fleet-side-images {
    order: 2;
  }
  .single-fleet-page .single-fleet-dynamic-desktop, .single-fleet-page .single-fleet-description-wrapper-desktop {
    display: none !important;
  }
  .single-fleet-page .single-fleet-lightbox, .single-fleet-page .single-fleet-dynamic-mobile {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .single-fleet-page .single-fleet-prices-mobile, .single-fleet-page .single-fleet-parameters-mobile, .single-fleet-page .fleet-section-button-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .single-fleet-page .single-fleet-prices-desktop, .single-fleet-page .single-fleet-parameters-desktop, .single-fleet-page .fleet-section-button-desktop {
    display: none !important;
  }
  .single-fleet-page .single-fleet-description-title {
    margin-bottom: 16px;
  }
  .single-fleet-page .fleet-section-carousel {
    margin-bottom: 32px !important;
  }
  .single-fleet-page .fleet-section-carousel .slick-dots {
    bottom: -12px !important;
  }
}
@media screen and (max-width: 600px) {
  .single-fleet-page .single-fleet-parameter {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 500px) {
  .single-fleet-page .common-card-price {
    width: auto;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
  }
  .single-fleet-page .single-fleet-description-point {
    width: 100%;
  }
}
.single-service-page {
  margin: 24px 0;
}
.single-service-page .single-service-hero {
  gap: 24px;
}
.single-service-page .single-service-hero .single-service-hero-content {
  width: calc(100% - 24px - 696px);
}
.single-service-page .single-service-hero .single-service-hero-image {
  width: 696px;
}
.single-service-page .single-service-hero .single-service-hero-image-inner:before {
  content: "";
  display: block;
  padding-top: 80.02%;
}
.single-service-page .single-service-hero .single-service-hero-title {
  margin-bottom: 10px;
}
.single-service-page .single-service-hero .single-service-hero-main {
  margin-bottom: 32px;
}
.single-service-page .single-service-hero .single-service-hero-wysiwyg {
  max-width: 696px;
}
.single-service-page .single-service-hero .single-service-hero-button svg {
  width: 14px;
  height: 15px;
}
.single-service-page .single-service-additional-content {
  margin-bottom: 100px;
}
.single-service-page .faq-section-wrapper {
  margin-bottom: 100px;
  padding: 0 !important;
}
.single-service-page .single-service-fleet-title, .single-service-page .single-service-about-title {
  margin-bottom: 64px;
}
.single-service-page .single-service-additional-content-title {
  margin-bottom: 16px;
}
.single-service-page .single-service-about-wysiwyg-wrapper .wysiwyg-show-more-preview-inner, .single-service-page .single-service-additional-content-wysiwyg .wysiwyg-show-more-preview-inner {
  margin-bottom: 64px;
}
.single-service-page .single-service-additional-content-inner {
  gap: 32px;
}
.single-service-page .single-service-additional-content-subtext {
  width: 448px;
}
.single-service-page .single-service-additional-content-wysiwyg {
  width: calc(100% - 32px - 448px);
}

@media screen and (max-width: 1680px) {
  .single-service-page .single-service-additional-content {
    margin-bottom: 64px;
  }
  .single-service-page .faq-section-wrapper {
    margin-bottom: 64px;
    padding: 0 !important;
  }
  .single-service-page .single-service-fleet-title, .single-service-page .single-service-about-title {
    margin-bottom: 48px;
  }
  .single-service-page .single-service-about-wysiwyg-wrapper .single-service-about-wysiwyg-wrapper, .single-service-page .single-service-about-wysiwyg-wrapper .single-service-additional-content-wysiwyg {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .single-service-page .single-service-additional-content {
    margin-bottom: 48px;
  }
  .single-service-page .faq-section-wrapper {
    margin-bottom: 48px;
    padding: 0 !important;
  }
  .single-service-page .single-service-hero {
    gap: 48px;
  }
  .single-service-page .single-service-hero .single-service-hero-image {
    width: 420px;
  }
  .single-service-page .single-service-hero .single-service-hero-content {
    width: calc(100% - 48px - 420px);
  }
  .single-service-page .single-service-fleet-title, .single-service-page .single-service-about-title {
    margin-bottom: 32px;
  }
  .single-service-page .single-service-about-wysiwyg-wrapper .wysiwyg-show-more-preview-inner, .single-service-page .single-service-additional-content-wysiwyg .wysiwyg-show-more-preview-inner {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .single-service-page .single-service-hero-image-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .single-service-page .single-service-hero-container {
    margin-top: 0 !important;
  }
  .single-service-page .single-service-hero {
    gap: 32px;
  }
  .single-service-page .single-service-hero .single-service-hero-image-desktop {
    display: none !important;
  }
  .single-service-page .single-service-hero .single-service-hero-content, .single-service-page .single-service-hero .single-service-hero-content-inner, .single-service-page .single-service-hero .single-service-hero-image {
    width: 100%;
  }
  .single-service-page .single-service-hero .single-service-hero-content {
    margin-bottom: 24px;
  }
  .single-service-page .single-service-hero .single-service-hero-wysiwyg {
    max-width: none;
  }
  .single-service-page .single-service-additional-content-inner {
    flex-direction: column;
  }
  .single-service-page .single-service-additional-content-subtext, .single-service-page .single-service-additional-content-wysiwyg {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .single-service-page .fleet-section-button-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .single-service-page .fleet-section-button-desktop {
    display: none !important;
  }
  .single-service-page .single-service-fleet-title, .single-service-page .single-service-about-title, .single-service-page .single-service-additional-content-main {
    margin-bottom: 24px;
  }
  .single-service-page .single-service-about-wysiwyg-wrapper .wysiwyg-show-more-preview-inner, .single-service-page .single-service-additional-content-wysiwyg .wysiwyg-show-more-preview-inner {
    margin-bottom: 24px;
  }
  .single-service-page .fleet-section-carousel {
    margin-bottom: 64px !important;
  }
  .single-service-page .slick-dots {
    bottom: -24px;
  }
}
@media screen and (max-width: 500px) {
  .single-service-page {
    margin: 16px 0;
  }
}
.contacts-page .contacts-columns, .contacts-page .contacts-columns-wrapper {
  gap: 24px;
}
.contacts-page .contact-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0.05%, rgba(0, 0, 0, 0.4) 26.66%, rgba(0, 0, 0, 0.08) 99.95%);
}
.contacts-page .contact-overlay-container {
  width: 100%;
}
.contacts-page .contact-overlay-container:before {
  content: "";
  display: block;
  padding-top: 36%;
}
.contacts-page .single-contact a {
  color: #F96A24;
  position: relative;
  transition: all 0.2s linear;
}
.contacts-page .single-contact a svg path {
  fill: #F96A24;
  transition: all 0.2s linear;
}
.contacts-page .single-contact a span {
  transition: all 0.2s linear;
  color: #F96A24;
  font-family: FontBold;
}
.contacts-page .single-contact a:hover {
  color: #AE4A19;
}
.contacts-page .single-contact a:hover svg path {
  fill: #AE4A19;
}
.contacts-page .single-contact a:hover span {
  color: #AE4A19;
}
.contacts-page .contacts-address-main-columns .single-contact a {
  color: #1D222B;
  position: relative;
  transition: all 0.2s linear;
}
.contacts-page .contacts-address-main-columns .single-contact a svg path {
  fill: #1D222B;
  transition: all 0.2s linear;
}
.contacts-page .contacts-address-main-columns .single-contact a span {
  color: #1D222B;
  font-family: FontBold;
  transition: all 0.2s linear;
}
.contacts-page .contacts-address-main-columns .single-contact a:hover {
  color: #F96A24;
}
.contacts-page .contacts-address-main-columns .single-contact a:hover svg path {
  fill: #F96A24;
}
.contacts-page .contacts-address-main-columns .single-contact a:hover span {
  color: #F96A24;
}
.contacts-page .contacts-columns-additional {
  gap: 32px;
}
.contacts-page .contacts-main-wrapper {
  gap: 24px;
  margin-bottom: 64px;
}
.contacts-page .contacts-main-inner {
  width: calc(100% - 24px - 696px);
}
.contacts-page .contacts-inner-wrapper {
  gap: 24px;
}
.contacts-page .contacts-title {
  margin-bottom: 32px;
}
.contacts-page .contacts-small-title {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 150%;
}
.contacts-page .contacts-columns {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #E7E6E6;
}
.contacts-page .contacts-columns-no-bb {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}
.contacts-page .contacts-column, .contacts-page .contacts-columns-additional {
  width: calc(50% - 12px);
}
.contacts-page .contacts-address {
  margin-bottom: 24px;
}
.contacts-page .contacts-column-wysiwyg *, .contacts-page .contacts-address-main-column-wysiwyg * {
  color: #1D222B;
}
.contacts-page .contact-form-scroller svg, .contacts-page .contact-addresses-scroller svg {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.contacts-page .contacts-socials .single-social-link {
  width: 48px;
  height: 48px;
}
.contacts-page .contacts-socials .single-social-link svg {
  width: 19px;
  height: 19px;
}
.contacts-page .contacts-scrollers {
  gap: 16px;
}
.contacts-page .contacts-address {
  gap: 24px;
}
.contacts-page .contacts-address-main {
  width: calc(100% - 305px - 24px);
}
.contacts-page .contacts-address-map {
  width: 305px;
  height: 201px;
}
.contacts-page .contacts-address-main-titles {
  margin-bottom: 32px;
}
.contacts-page .contacts-address-main-titles-no-bb {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}
.contacts-page .contacts-address-main-subtitle {
  margin-bottom: 6px;
}
.contacts-page .contacts-address-main-title {
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 0;
}
.contacts-page .contacts-address-main-columns {
  gap: 16px;
  font-family: FontBold;
}
.contacts-page .contacts-address-main-column {
  width: calc((100% - 32px) / 3.001);
}
.contacts-page .contacts-address-main-column-title {
  margin-bottom: 16px;
}
.contacts-page .single-input-inner {
  gap: 10px;
}
.contacts-page .phone-code-input-styling {
  width: 142px;
}
.contacts-page .phone-code-input-styling .selectize-input .item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
}
.contacts-page .phone-code-input-styling .selectize-input .item img {
  width: 24px;
  object-fit: contain;
  border-radius: 2px;
}
.contacts-page .phone-code-input-styling .selectize-dropdown .option {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
}
.contacts-page .phone-code-input-styling .selectize-dropdown .option img {
  width: 24px;
  object-fit: contain;
  border-radius: 2px;
}
.contacts-page .phone-input-styling {
  width: calc(100% - 142px - 10px);
}

@media screen and (max-width: 1680px) {
  .contacts-page .contacts-columns {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .contacts-page .contacts-columns {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .contacts-page .contacts-main-inner {
    width: calc(100% - 24px - 580px);
  }
  .contacts-page .common-form-wrapper {
    max-width: 580px;
  }
}
@media screen and (max-width: 1180px) {
  .contacts-page .contacts-columns {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .contacts-page .contacts-main-inner {
    width: calc(100% - 24px - 560px);
  }
  .contacts-page .common-form-wrapper {
    max-width: 560px;
  }
}
@media screen and (min-width: 1024px) {
  .contacts-page .single-separator-mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .contacts-page .single-separator-desktop {
    display: none;
  }
  .contacts-page .contacts-columns-wrapper {
    margin-bottom: 32px;
  }
  .contacts-page .contacts-main-wrapper {
    gap: 0;
    margin-bottom: 48px;
  }
  .contacts-page .contacts-main-inner {
    width: 100%;
  }
  .contacts-page .common-form-wrapper {
    max-width: none;
  }
  .contacts-page .contacts-columns {
    gap: 32px;
  }
  .contacts-page .contacts-column {
    width: calc(50% - 16px);
  }
  .contacts-page .contacts-columns {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .contacts-page .contacts-address-main, .contacts-page .contacts-address-map {
    width: 100%;
  }
  .contacts-page .contacts-address-map {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .contacts-page .contacts-address-main-columns {
    gap: 24px;
  }
  .contacts-page .contacts-address-main-column {
    width: 100%;
  }
  .contacts-page .contacts-address-main-column-title {
    margin-bottom: 8px;
  }
  .contacts-page .contact-overlay-container:before {
    padding-top: 80.05%;
  }
}
@media screen and (max-width: 500px) {
  .contacts-page .contacts-address-main-titles {
    margin-bottom: 16px;
  }
  .contacts-page .contacts-column {
    width: 100%;
  }
}
.map-filter-row {
  margin-bottom: 30px;
}
.map-filter-row .location-title-wrapper {
  margin-right: 24px;
}
.map-filter-row .location-icon {
  margin-right: 16px;
}
.map-filter-row .location-icon img {
  width: 30px;
  height: 43px;
}
.map-filter-row .location-select-title {
  font-size: 18px;
  line-height: 30px;
}
.map-filter-row .location-select .dd-container {
  width: 207px !important;
}
.map-filter-row .location-select .dd-select {
  background-image: url("../../images/dropdown.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 17px) 50% !important;
  background-size: 15px 12px !important;
  background-color: #fff !important;
  border: 1px solid #C8CFDA !important;
  border-radius: 10px !important;
  max-width: 207px !important;
  width: 100% !important;
  transition: all 0.2s linear;
}
.map-filter-row .location-select .dd-select .dd-selected {
  padding: 12px 49px 12px 11px !important;
  display: flex !important;
  display: -webkit-flex !important;
  align-items: center !important;
  -webkit-align-items: center !important;
  font-weight: normal !important;
}
.map-filter-row .location-select .dd-select .dd-selected .dd-selected-image {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  margin-right: 16px !important;
}
.map-filter-row .location-select .dd-select .dd-selected .dd-selected-text {
  margin-bottom: 0 !important;
  font-size: 19px !important;
  line-height: 34px !important;
  color: #1D222B !important;
  font-family: FontBold !important;
  cursor: pointer !important;
}
.map-filter-row .location-select .dd-select-opened-position {
  border-radius: 10px 10px 0 0 !important;
}
.map-filter-row .location-select .dd-options {
  max-width: 207px !important;
  background-color: #fff !important;
  border: 1px solid #C8CFDA !important;
  border-radius: 0 0 10px 10px !important;
  box-shadow: none !important;
  top: calc(100% - 1px) !important;
}
.map-filter-row .location-select .dd-options .dd-option {
  max-width: 207px !important;
  width: initial !important;
  border: none !important;
  padding: 12px 11px;
  display: flex !important;
  display: -webkit-flex !important;
  align-items: center !important;
  -webkit-align-items: center !important;
  transition: all 0.2s linear;
}
.map-filter-row .location-select .dd-options .dd-option .dd-option-image {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  margin-right: 16px !important;
}
.map-filter-row .location-select .dd-options .dd-option .dd-option-text {
  margin-bottom: 0 !important;
  font-size: 19px !important;
  color: #1D222B !important;
  font-family: FontBold !important;
  line-height: 34px !important;
  cursor: pointer !important;
  transition: all 0.2s linear;
}
.map-filter-row .location-select .dd-options .dd-option:hover {
  transition: all 0.2s linear;
  background-color: #F96A24 !important;
}
.map-filter-row .location-select .dd-options .dd-option:hover .dd-option-text {
  color: #fff !important;
  transition: all 0.2s linear;
}
.map-filter-row .location-select .dd-options .dd-option-selected {
  background-color: #F96A24 !important;
}
.map-filter-row .location-select .dd-options .dd-option-selected .dd-option-text {
  color: #fff !important;
}
.map-filter-row .location-select .dd-pointer {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .map-filter-row .location-title-wrapper, .map-filter-row .location-select {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .single-blog-page .blog-list .slick-list {
    width: 100% !important;
  }
}
.options-page .single-option {
  margin-bottom: 48px;
  position: relative;
  z-index: -1;
}
.options-page .option-image {
  width: 81px;
}
.options-page .option-image img {
  max-height: 94px;
}
.options-page .option-content-wrapper {
  width: calc(100% - 81px - 24px);
}
.options-page .option-title, .options-page .option-content {
  font-size: 15px;
  line-height: 25px;
}
.options-page .option-title {
  margin-bottom: 8px;
}
.options-page .options-table-title {
  margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
  .options-page .single-option {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .options-page .option-content {
    font-size: 14px;
    line-height: 24px;
  }
  .options-page .single-option {
    flex-direction: column;
    gap: 16px;
  }
  .options-page .option-content-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .options-page .option-image {
    width: 70px;
  }
}

/*# sourceMappingURL=style.css.map */
