@charset "UTF-8";
@keyframes scaling {
  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);
  }
}
@-webkit-keyframes scaling {
  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);
  }
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
}
@keyframes bounce10 {
  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);
  }
}
@-webkit-keyframes bounce10 {
  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 bounceBig {
  0%, 50%, 100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
  }
}
@-webkit-keyframes bounceBig {
  0%, 50%, 100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
  }
}
.body-with-admin-bar .navbar-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .body-with-admin-bar .navbar-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
@font-face {
  font-family: RobotoRegular;
  src: url("../../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: RobotoBold;
  src: url("../../fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: RobotoItalic;
  src: url("../../fonts/Roboto-Italic.ttf") format("truetype");
}
@font-face {
  font-family: RobotoBoldItalic;
  src: url("../../fonts/Roboto-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: RobotoBlack;
  src: url("../../fonts/Roboto-Black.ttf") format("truetype");
}
@font-face {
  font-family: RobotoMedium;
  src: url("../../fonts/Roboto-Medium.ttf") format("truetype");
}
.roboto-regular {
  font-family: RobotoRegular;
}

.roboto-bold {
  font-family: RobotoBold;
}

.roboto-italic {
  font-family: RobotoItalic;
}

.roboto-bold-italic {
  font-family: RobotoBoldItalic;
}

.roboto-black {
  font-family: RobotoBlack;
}

.roboto-medium {
  font-family: RobotoMedium;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.default-color {
  color: #f0801b;
}

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

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

.default-link {
  color: #f0801b;
}
.default-link:hover:before, .default-link:hover:after {
  width: 100%;
  opacity: 1;
}
.default-link:after {
  left: 0;
  background-color: #f0801b;
}
.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: #f0801b;
}

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

input, textarea, button {
  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[type=submit], button {
  cursor: pointer;
}

body {
  position: relative;
  color: #5b5b5b;
  font-size: 17px;
  font-family: RobotoRegular;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #5b5b5b;
  border-radius: 10px;
}

strong, b {
  font-family: RobotoBold;
}

i, em {
  font-family: RobotoItalic;
}

strong i, strong em, b i, b em, i strong, i b, em strong, em b {
  font-family: RobotoBoldItalic;
}

.padding-top-header {
  padding-top: 115px;
}

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

.background-fixed {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50% 50%;
  background-size: cover;
}

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

.darkness-effect-main {
  background-color: rgba(0, 0, 0, 0.53);
}

.main-container {
  margin: 0 auto;
  max-width: 1410px;
  padding: 0 30px;
}

.default-page-wrapper-big {
  padding: 60px 0;
}

.default-page-wrapper {
  padding: 15px 0 45px;
}

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

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

.main-title {
  font-size: 35px;
  line-height: normal;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 30px;
  font-family: RobotoBold;
}

.default-button {
  background-color: #f0801b;
  color: #fff;
  border: 2px solid #f0801b;
  display: inline-block;
  text-transform: uppercase;
  padding: 17px 25px;
  text-align: center;
  font-size: 16px;
  font-family: RobotoMedium;
  border-radius: 5px;
}
.default-button:hover {
  color: #f0801b;
  background-color: #fff;
  border: 2px solid #818181;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.default-button-reversed {
  color: #f0801b;
  background-color: #fff;
  border: 2px solid #818181;
}
.default-button-reversed:hover {
  background-color: #f0801b;
  color: #fff;
  border: 2px solid #f0801b;
}

.default-button-grey {
  color: #fff;
  background-color: #58595b;
  border: 2px solid #58595b;
}
.default-button-grey:hover {
  background-color: #fff;
  color: #f0801b;
  border: 2px solid #58595b;
}

.wysiwyg-styles > img {
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: cover;
  margin-bottom: 40px;
}
.wysiwyg-styles > p {
  margin-bottom: 30px;
  line-height: 30px;
}
.wysiwyg-styles > p a:not(.default-button) {
  position: relative;
  color: #f0801b;
}
.wysiwyg-styles > p a:not(.default-button):hover:before, .wysiwyg-styles > p a:not(.default-button):hover:after {
  width: 100%;
  opacity: 1;
}
.wysiwyg-styles > p a:not(.default-button):after {
  left: 0;
  background-color: #f0801b;
}
.wysiwyg-styles > p a:not(.default-button):before, .wysiwyg-styles > p 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 img {
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: cover;
  margin-bottom: 10px;
}
.wysiwyg-styles > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.wysiwyg-styles > ul li {
  line-height: 30px;
  display: table;
  position: relative;
  padding-left: 25px;
  background-image: url("../../images/check-default.png");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: 0 8px;
}
.wysiwyg-styles > ul li a:not(.default-button) {
  position: relative;
  color: #f0801b;
}
.wysiwyg-styles > ul li a:not(.default-button):hover:before, .wysiwyg-styles > ul li a:not(.default-button):hover:after {
  width: 100%;
  opacity: 1;
}
.wysiwyg-styles > ul li a:not(.default-button):after {
  left: 0;
  background-color: #f0801b;
}
.wysiwyg-styles > ul li a:not(.default-button):before, .wysiwyg-styles > ul li 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 > h2 {
  font-family: RobotoBlack;
  line-height: normal;
  color: #3a3a3a;
  margin-bottom: 25px;
  font-size: 20px;
  text-transform: uppercase;
}
.wysiwyg-styles > h3 {
  margin-bottom: 15px;
  color: #3a3a3a;
  font-family: RobotoBold;
  line-height: normal;
  font-size: 19px;
}
.wysiwyg-styles > p + ul {
  margin-top: -30px;
}
.wysiwyg-styles .wysiwyg-table-wrapper {
  overflow-x: auto;
  margin: 0 auto 40px;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar {
  height: 5px;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #f0801b;
  border-radius: 10px;
}
.wysiwyg-styles .wysiwyg-table-wrapper table {
  margin: 0 !important;
}
.wysiwyg-styles table {
  margin: 0 auto 40px;
}
.wysiwyg-styles table tr {
  background-color: #fff;
}
.wysiwyg-styles table tr:nth-of-type(2n) {
  background-color: #f4f4f4;
}
.wysiwyg-styles table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
}

.video-wysiwyg {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.video-wysiwyg:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.video-wysiwyg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg-gallery {
  margin-bottom: 30px;
}
.wysiwyg-gallery .single-gallery-element {
  width: calc((100% - 30px) / 4.001);
  margin: 0 5px 10px;
  transition: all 0.2s linear;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(4n) {
  margin: 0 0 10px 5px;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(4n+1) {
  margin: 0 5px 10px 0;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 77%;
}
.wysiwyg-gallery .single-gallery-element .gallery-image, .wysiwyg-gallery .single-gallery-element .darkness-effect {
  top: 0;
  left: 0;
  object-fit: cover;
}
.wysiwyg-gallery .single-gallery-element .darkness-effect {
  background-color: rgba(0, 0, 0, 0.5);
}
.wysiwyg-gallery .single-gallery-element .number-additional {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #fff;
  font-size: 50px;
  font-family: RobotoBold;
}
.wysiwyg-gallery .single-gallery-element:hover {
  transition: all 0.2s linear;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.single-input .input-title, .select-wrapper .input-title {
  color: #58595b;
  font-size: 15px;
  margin-bottom: 5px;
}
.single-input .input-title .input-subtitle, .select-wrapper .input-title .input-subtitle {
  font-size: 10px;
}

.select-wrapper {
  width: calc(50% - 15px);
  margin-bottom: 15px;
}
.select-wrapper .selectize-control {
  font-size: 0;
}
.select-wrapper .selectize-input {
  padding: 13.5px 55px 13.5px 30px;
  border: 1px solid #cbcbcb !important;
  border-radius: 5px;
  background-color: #fff !important;
  background-image: url("../../images/dropdown.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 20px) 50% !important;
  background-size: 15px auto !important;
  font-size: 0 !important;
  line-height: normal !important;
  width: 100%;
  box-shadow: none !important;
  transition: all 0.2s linear !important;
}
.select-wrapper .selectize-input:focus {
  outline: none;
}
.select-wrapper .selectize-input:after {
  display: none !important;
}
.select-wrapper .selectize-input input {
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #3a3a3a;
  width: 100% !important;
  line-height: normal !important;
  margin: 0 !important;
  text-align: center;
}
.select-wrapper .selectize-input input::-webkit-input-placeholder {
  color: #3a3a3a;
}
.select-wrapper .selectize-input input::-moz-placeholder {
  color: #3a3a3a;
}
.select-wrapper .selectize-input input:-moz-placeholder {
  color: #3a3a3a;
}
.select-wrapper .selectize-input input:-ms-input-placeholder {
  color: #3a3a3a;
}
.select-wrapper .selectize-input input::-webkit-input-placeholder {
  font-size: #3a3a3a;
}
.select-wrapper .selectize-input input::-moz-placeholder {
  font-size: #3a3a3a;
}
.select-wrapper .selectize-input input:-moz-placeholder {
  font-size: #3a3a3a;
}
.select-wrapper .selectize-input input:-ms-input-placeholder {
  font-size: #3a3a3a;
}
.select-wrapper .selectize-input .item {
  font-size: 16px;
  color: #3a3a3a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal !important;
  width: 100% !important;
  text-align: center;
}
.select-wrapper .selectize-input .item ~ input {
  display: none !important;
}
.select-wrapper .selectize-input.dropdown-active {
  border-radius: 5px 5px 0 0;
}
.select-wrapper .selectize-dropdown {
  top: 45px !important;
  border: 1px solid #cbcbcb !important;
  border-radius: 0 0 5px 5px;
  background-color: #fff !important;
  overflow: hidden !important;
  cursor: pointer;
  box-shadow: none;
}
.select-wrapper .selectize-dropdown .option {
  padding: 12px 12px;
  font-size: 16px;
  color: #3a3a3a;
}
.select-wrapper .selectize-dropdown .active {
  background-color: #f0801b !important;
  color: #fff;
}
.select-wrapper .selectize-dropdown-content::-webkit-scrollbar {
  width: 5px;
}
.select-wrapper .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.select-wrapper .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}
.select-wrapper .warning-validation {
  border: 1px solid #c72828 !important;
  background-color: #f4e9e9 !important;
}

.single-input {
  width: calc(50% - 15px);
  margin: 0 0 15px;
}
.single-input .input-wrapper {
  font-size: 0;
}
.single-input .input-wrapper input, .single-input .input-wrapper textarea {
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  color: #5b5b5b;
  font-size: 16px;
  padding: 12px 12px;
}
.single-input .input-wrapper textarea {
  resize: none;
  min-height: 78px;
}
.single-input .input-wrapper textarea::-webkit-scrollbar {
  width: 5px;
}
.single-input .input-wrapper textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.single-input .input-wrapper textarea::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}

.small-single-input {
  width: calc(33.3222259247% - 15px);
}

.big-single-input {
  width: calc(66.6444518494% - 15px);
}

.warning-validation {
  border: 1px solid #c72828 !important;
  background-color: #f4e9e9 !important;
}

.checkbox-single {
  margin: 0 0 22px;
  font-size: 0;
}
.checkbox-single input {
  left: -9999px;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back .checkbox-mark {
  opacity: 1;
  transition: all 0.1s linear;
}
.checkbox-single .checkbox-label {
  margin: 0;
}
.checkbox-single .checkbox-title {
  font-size: 15px;
  cursor: pointer;
  color: #3a3a3a;
}
.checkbox-single .checkbox-title a {
  position: relative;
  color: #f0801b;
}
.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: #f0801b;
}
.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-back {
  width: 32px;
  height: 32px;
  border: 1px solid #cbcbcb;
  cursor: pointer;
  margin-right: 11px;
  background-color: #fff;
  border-radius: 5px;
}
.checkbox-single .checkbox-back .checkbox-mark {
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
}
.checkbox-single .checkbox-back .checkbox-mark img {
  width: 15px;
}

.preloader {
  display: none;
  max-width: 30px;
  max-height: 30px;
  top: calc(50% - 15px);
  left: calc(100% + 10px);
  -webkit-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}

.container-imitation {
  margin-left: calc((100vw - 1380px) / 2);
  margin-right: calc((100vw - 1380px) / 2);
}

.left-container-imitation {
  margin-left: calc((100vw - 1380px) / 2);
}

.right-container-imitation {
  margin-right: calc((100vw - 1380px) / 2);
}

.ui-datepicker-next, .ui-datepicker-prev {
  top: 2px !important;
  transition: none !important;
  cursor: pointer !important;
}

.ui-datepicker-next {
  right: 2px !important;
}

.ui-datepicker-prev {
  left: 2px !important;
}

.select-titles {
  font-size: 0;
  margin-bottom: 10px;
}
.select-titles .title-text {
  margin-bottom: 0;
  font-size: 15px;
}
.select-titles .title-link:hover {
  opacity: 0.9;
}
.select-titles .title-link .link-image {
  margin: 0 2px 2px 0;
}
.select-titles .title-link .link-image img {
  width: 15px;
  transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
}
.select-titles .title-link .link-text {
  font-size: 13px;
  text-decoration: underline;
}

.search-select .selectize-control {
  font-size: 0;
}
.search-select .selectize-input {
  background-color: #fff !important;
  padding: 19px 65px 19px 48px;
  border: none !important;
  border-radius: 5px;
  font-size: 0 !important;
  line-height: normal !important;
  width: 100%;
  box-shadow: none !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 25px) 50%, 15px 50% !important;
  background-size: 15px auto, 20px auto !important;
}
.search-select .selectize-input:focus {
  outline: none;
}
.search-select .selectize-input:after, .search-select .selectize-input:before {
  display: none !important;
}
.search-select .selectize-input input {
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #3a3a3a;
  width: 100% !important;
  line-height: normal !important;
  margin: 0 !important;
}
.search-select .selectize-input input::-webkit-input-placeholder {
  color: #3a3a3a;
}
.search-select .selectize-input input::-moz-placeholder {
  color: #3a3a3a;
}
.search-select .selectize-input input:-moz-placeholder {
  color: #3a3a3a;
}
.search-select .selectize-input input:-ms-input-placeholder {
  color: #3a3a3a;
}
.search-select .selectize-input input::-webkit-input-placeholder {
  font-size: #3a3a3a;
}
.search-select .selectize-input input::-moz-placeholder {
  font-size: #3a3a3a;
}
.search-select .selectize-input input:-moz-placeholder {
  font-size: #3a3a3a;
}
.search-select .selectize-input input:-ms-input-placeholder {
  font-size: #3a3a3a;
}
.search-select .selectize-input .item {
  font-size: 15px;
  color: #3a3a3a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal !important;
  width: 100% !important;
}
.search-select .selectize-input .item ~ input {
  display: none !important;
}
.search-select .selectize-input.dropdown-active {
  border-radius: 5px 5px 0 0;
}
.search-select .selectize-dropdown {
  top: 58px !important;
  border: none !important;
  border-radius: 0 0 5px 5px;
  background-color: #fff !important;
  overflow: hidden !important;
  cursor: pointer;
  box-shadow: 3px 3px 3px 0 rgba(240, 128, 27, 0.2);
  margin: 0;
}
.search-select .selectize-dropdown .option {
  padding: 20px 15px;
  font-size: 15px;
  color: #3a3a3a;
}
.search-select .selectize-dropdown .active {
  background-color: #f0801b !important;
  color: #fff;
}
.search-select .selectize-dropdown-content::-webkit-scrollbar {
  width: 5px;
}
.search-select .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.search-select .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}
.search-select .input-date {
  background-color: #fff;
  padding: 18px 65px 18px 50px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  color: #3a3a3a;
  background-repeat: no-repeat;
  background-position: calc(100% - 25px) 50%, 15px 50%;
  background-size: 15px auto, 20px auto;
}
.search-select .input-start-date {
  background-image: url("../../images/dropdown.svg"), url("../../images/calendar-orange.svg");
}
.search-select .input-end-date {
  background-image: url("../../images/dropdown.svg"), url("../../images/calendar.svg");
}

.search-select-small {
  width: calc(50% - 3px);
}

.search-select-fix {
  width: 100%;
}
.search-select-fix .selectize-input {
  background-image: url("../../images/dropdown.svg"), url("../../images/location.png") !important;
}

.search-select-small-select-start .selectize-input {
  background-image: url("../../images/dropdown.svg"), url("../../images/clock-circular-outline-orange.svg") !important;
}

.search-select-small-select-end .selectize-input {
  background-image: url("../../images/dropdown.svg"), url("../../images/clock-circular-outline.svg") !important;
}

.map-filter-row .location-title-wrapper {
  margin-right: 22px;
}
.map-filter-row .location-icon {
  margin-right: 17px;
}
.map-filter-row .location-icon img {
  width: 30px;
  height: 43px;
}
.map-filter-row .location-select-title {
  font-size: 19px;
  line-height: 34px;
  color: #3a3a3a;
}
.map-filter-row .location-select {
  width: 207px !important;
}
.map-filter-row .location-select .dd-select {
  background-image: url(../../images/dropdown-location.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 #cbcbcb !important;
  border-radius: 5px !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: #3a3a3a !important;
  font-family: RobotoBold !important;
  cursor: pointer !important;
}
.map-filter-row .location-select .dd-select-opened-position {
  border-radius: 5px 5px 0 0 !important;
}
.map-filter-row .location-select .dd-options {
  max-width: 207px !important;
  background-color: #fff !important;
  border: 1px solid #cbcbcb !important;
  border-radius: 0 0 5px 5px !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: #3a3a3a !important;
  font-family: RobotoBold !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: #f0801b !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: #f0801b !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;
}

.map-filter-row-default-page {
  margin-bottom: 30px;
}

@media screen and (max-width: 1600px) {
  .padding-top-header {
    padding-top: 100px;
  }
  .default-page-min-height {
    min-height: calc(100vh - 100px - 229px);
  }
  .default-button {
    padding: 11px 18px;
  }
  .search-select .selectize-input {
    padding: 15px 65px 15px 48px;
  }
  .search-select .selectize-dropdown {
    top: 50px !important;
  }
  .search-select .input-date {
    padding: 14px 65px 14px 50px;
  }
}
@media screen and (max-width: 1440px) {
  .container-imitation {
    margin-left: 30px;
    margin-right: 30px;
  }
  .left-container-imitation {
    margin-left: 30px;
  }
  .right-container-imitation {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1366px) {
  .default-page-min-height {
    min-height: calc(100vh - 100px - 169px);
  }
  .main-container {
    max-width: 1380px;
    padding: 0 15px;
  }
  .default-page-wrapper-big {
    padding: 30px 0;
  }
  .container-imitation {
    margin-left: 15px;
    margin-right: 15px;
  }
  .left-container-imitation {
    margin-left: 15px;
  }
  .right-container-imitation {
    margin-right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .max-1024 {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .background-fixed {
    background-attachment: scroll;
  }
  .min-1025 {
    display: none !important;
  }
  .default-page-wrapper {
    padding: 15px 0;
  }
  .default-page-min-height {
    min-height: calc(100vh - 100px - 286px);
  }
  .wysiwyg-styles table td {
    min-width: 250px;
  }
  .map-filter-row .location-title-wrapper, .map-filter-row .location-select {
    margin-bottom: 15px;
  }
  .map-filter-row-default-page {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .main-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .default-page-min-height {
    min-height: calc(100vh - 100px - 284px);
  }
  .wysiwyg-styles > img {
    margin-bottom: 30px;
  }
  .wysiwyg-styles > p {
    margin-bottom: 20px;
    line-height: 25px;
  }
  .wysiwyg-styles > p img {
    margin-bottom: 10px;
  }
  .wysiwyg-styles > ul {
    margin-bottom: 30px;
  }
  .wysiwyg-styles > ul li {
    line-height: 25px;
    background-position: 0 5px;
  }
  .wysiwyg-styles > h2 {
    margin-bottom: 15px;
  }
  .wysiwyg-styles > p + ul {
    margin-top: -20px;
  }
  .wysiwyg-styles .wysiwyg-table-wrapper {
    margin: 0 auto 30px;
  }
  .wysiwyg-styles table {
    margin: 0 auto 30px;
  }
  .wysiwyg-styles table td {
    min-width: 200px;
  }
  .video-wysiwyg {
    margin-bottom: 30px;
  }
  .wysiwyg-gallery {
    margin-bottom: 20px;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc(50% - 5px);
    margin: 0 0 10px !important;
  }
  .left-container-imitation {
    margin-right: 15px;
  }
  .right-container-imitation {
    margin-left: 15px;
  }
}
@media screen and (max-width: 600px) {
  .default-page-min-height {
    min-height: calc(100vh - 100px - 486px);
  }
  #cookiescript_badge {
    position: absolute !important;
    z-index: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery {
    margin-bottom: 30px;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: 100%;
  }
  .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
    margin: 0 !important;
  }
  .single-input, .select-wrapper {
    width: 100% !important;
  }
  .search-select-small {
    width: 100%;
    margin-bottom: 5px;
  }
  .search-select-small:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .default-page-min-height {
    min-height: calc(100vh - 100px - 589px);
  }
}
.navbar-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 !important;
  z-index: 1020 !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  min-height: 115px;
  background-color: transparent;
}
.navbar-header .content {
  padding: 0 60px;
}
.navbar-header .content .logo img {
  height: 64px;
  max-width: 229px;
}
.navbar-header .content .menu-header-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-header .content .menu-header-desktop ul li {
  margin-right: 40px;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.navbar-header .content .menu-header-desktop ul li a {
  font-size: 16px;
  font-family: RobotoMedium;
  color: #5b5b5b;
}
.navbar-header .content .menu-header-desktop ul li a:hover {
  color: #f0801b;
}
.navbar-header .content .menu-header-desktop ul li:nth-last-of-type(1) {
  margin-right: 0;
}
.navbar-header .content .menu-header-desktop ul .current-menu-item a, .navbar-header .content .menu-header-desktop ul .current-page-ancestor a {
  color: #f0801b;
}
.navbar-header .content .languages .dd-container {
  width: auto !important;
}
.navbar-header .content .languages .dd-select {
  border: none;
  border-radius: 0;
  width: 40px !important;
  background-color: transparent !important;
  background-image: url("../../images/dropdown.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 100% 50% !important;
  background-size: 9px auto !important;
}
.navbar-header .content .languages .dd-select .dd-selected {
  padding: 10px 0;
}
.navbar-header .content .languages .dd-select .dd-selected .dd-selected-image {
  width: 22px;
  height: 22px;
}
.navbar-header .content .languages .dd-select .dd-pointer {
  display: none;
}
.navbar-header .content .languages .dd-options {
  width: 40px !important;
  border: none !important;
  box-shadow: 5px 5px 10px 0 #f0801b !important;
}
.navbar-header .content .languages .dd-options .dd-option {
  padding: 10px 5px !important;
  text-align: center;
  border-bottom: none !important;
}
.navbar-header .content .languages .dd-options .dd-option .dd-option-image {
  width: 22px;
  height: 22px;
  float: none;
  margin: 0 auto;
}
.navbar-header .content .languages .dd-options .dd-option:hover {
  background-color: #f0801b;
}
.navbar-header .content .languages .dd-options .dd-option-selected {
  display: none;
}
.navbar-header .content .contacts {
  font-size: 0;
}
.navbar-header .content .contacts .contact {
  margin-right: 25px;
}
.navbar-header .content .contacts .contact a {
  white-space: nowrap;
  font-size: 16px;
  color: #5b5b5b;
}
.navbar-header .content .contacts .contact a:hover {
  color: #f0801b;
}
.navbar-header .content .contacts .contact a:hover img {
  -webkit-animation: bounce10 0.5s linear infinite;
  animation: bounce10 0.5s linear infinite;
}
.navbar-header .content .contacts .contact img {
  width: 25px;
  margin-right: 12px;
}
.navbar-header .content .contacts .contact:nth-last-of-type(1) {
  margin-right: 0;
}
.navbar-header .header-contacts {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .navbar-header .header-contacts {
    padding: 30px 0;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
.navbar-header .header-contacts .single-header-contacts {
  display: flex;
  align-items: center;
}
.navbar-header .header-contacts .single-header-contacts .image-wrapper {
  margin-right: 12px;
}
.navbar-header .header-contacts .single-header-contacts .image-wrapper img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper {
  display: flex;
  flex-direction: column;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper > * {
  font-size: 14px;
  font-family: RobotoBold, sans-serif;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline transparent;
  transition: text-decoration 300ms ease;
  padding: 0;
  margin: 0;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper > *:not(:last-child) {
  margin-bottom: 2px;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper .single-header-contacts-phone {
  color: #707070;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper .single-header-contacts-phone:hover {
  text-decoration: underline #707070;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper .single-header-contacts-phone em {
  font-family: inherit;
  font-style: inherit;
  color: #A8A8A8;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper .single-header-contacts-email {
  color: #F0801B;
}
.navbar-header .header-contacts .single-header-contacts .content-wrapper .single-header-contacts-email:hover {
  text-decoration: underline #F0801B;
}

.navbar-scroll, .navbar-background {
  background-color: #fff !important;
}

@media screen and (max-width: 1800px) {
  .navbar-header .content {
    padding: 0 30px;
  }
  .navbar-header .content .menu-header-desktop ul li {
    margin-right: 20px;
  }
  .navbar-header .content .contacts .contact {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1366px) {
  .navbar-header .content {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1367px) {
  .navbar-header .menu-collapsed {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .navbar-header .menu-header-desktop {
    display: none;
  }
  .navbar-header .menu-collapsed .burger-inner:not(.collapsed) .wrapper .line:nth-of-type(1) {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    top: calc(50% - 2px);
  }
  .navbar-header .menu-collapsed .burger-inner:not(.collapsed) .wrapper .line:nth-of-type(2) {
    display: none !important;
  }
  .navbar-header .menu-collapsed .burger-inner:not(.collapsed) .wrapper .line:nth-of-type(3) {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: calc(50% - 2px);
  }
  .navbar-header .menu-collapsed .burger-inner:hover .wrapper .line:nth-of-type(2) {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
  }
  .navbar-header .menu-collapsed .wrapper {
    height: 18px;
    width: 24px;
    margin-right: 12px;
  }
  .navbar-header .menu-collapsed .wrapper .line {
    height: 4px;
    border-radius: 2px;
    background-color: #5b5b5b;
    left: 0;
    transition: all 0.2s linear;
  }
  .navbar-header .menu-collapsed .wrapper .line:nth-of-type(1) {
    top: 0;
  }
  .navbar-header .menu-collapsed .wrapper .line:nth-of-type(2) {
    top: calc(50% - 2px);
  }
  .navbar-header .menu-collapsed .wrapper .line:nth-of-type(3) {
    top: calc(100% - 4px);
  }
  .navbar-header .menu-collapsed .burger-title {
    font-size: 16px;
    font-family: RobotoMedium;
    color: #f0811b;
  }
  .navbar-header .menu-collapsed .menu-collapsed-wrapper {
    top: calc(100% + 10px);
    left: 0;
    box-shadow: 0 12px 51px rgba(0, 0, 0, 0.17);
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner {
    border-radius: 10px;
    border: 2px solid #f58220;
    background-color: #58595b;
    padding: 30px;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner br {
    display: none;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner ul li {
    margin-bottom: 10px;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner ul li:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner ul li a {
    font-size: 16px;
    font-family: RobotoMedium;
    color: #fff;
    white-space: nowrap;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner ul li a:hover {
    color: #f0811b;
  }
  .navbar-header .menu-collapsed .menu-collapsed-inner ul .current-page-ancestor a, .navbar-header .menu-collapsed .menu-collapsed-inner ul .current-menu-item a {
    color: #f0811b;
  }
}
@media screen and (min-width: 1025px) {
  .navbar-header .header {
    display: block !important;
  }
  .navbar-header .menu-header-desktop ul li a {
    line-height: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .navbar-header {
    min-height: 0;
    padding: 0 !important;
  }
  .navbar-header .mobile-header-wrapper {
    display: flex !important;
    display: -webkit-flex !important;
    padding: 15px 0 15px 15px;
    width: 100%;
  }
  .navbar-header .collapsed .line {
    position: static !important;
    border-radius: 5px 0 0 5px !important;
  }
  .navbar-header .collapsed .line:nth-child(1) {
    transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    transition: all 0.2s linear;
  }
  .navbar-header .collapsed .line:nth-child(3) {
    transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    transition: all 0.2s linear;
  }
  .navbar-header .collapsed .line:nth-child(2) {
    width: 50px !important;
    transition: all 0.2s linear;
  }
  .navbar-header .burger:not(.collapsed) .wrapper {
    top: -5px;
  }
  .navbar-header .burger {
    padding: 0;
    margin: 0 0 0 0;
    border: none;
    height: 70px;
  }
  .navbar-header .burger .wrapper {
    width: 50px;
  }
  .navbar-header .burger .wrapper .line {
    top: 0;
    height: 11px;
    width: 50px;
    margin-bottom: 7px;
    background-color: #5b5b5b;
    border-radius: 5px;
  }
  .navbar-header .burger .wrapper .line:nth-child(1) {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transition: all 0.2s linear;
  }
  .navbar-header .burger .wrapper .line:nth-child(3) {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: all 0.2s linear;
  }
  .navbar-header .burger .wrapper .line:nth-child(2) {
    width: 0;
    margin: 0 auto 7px;
  }
  .navbar-header .burger .wrapper .line:last-child {
    margin-bottom: 0;
  }
  .navbar-header .mobile-logo {
    margin-right: auto;
  }
  .navbar-header .mobile-logo img {
    height: 64px;
    max-width: 229px;
  }
  .navbar-header .mobile-contacts .single-mobile-contact {
    margin: 0 23px;
  }
  .navbar-header .mobile-contacts .single-mobile-contact:nth-last-of-type(1) {
    margin: 0 23px 0 0;
  }
  .navbar-header .mobile-contacts .single-mobile-contact a {
    width: 62px;
    height: 62px;
  }
  .navbar-header .mobile-contacts .single-mobile-contact a:hover img {
    -webkit-animation: bounce10 0.5s linear infinite;
    animation: bounce10 0.5s linear infinite;
  }
  .navbar-header .mobile-contacts .single-mobile-contact img {
    max-width: 30px;
    max-height: 30px;
  }
  .navbar-header .mobile-button {
    margin: 0 46px 0 23px;
  }
  .navbar-header .menu-collapsed {
    display: none;
  }
  .navbar-header .content {
    justify-content: flex-end !important;
    -webkit-justify-content: flex-end !important;
  }
  .navbar-header .content .menu-header-desktop {
    margin-right: 20px;
  }
  .navbar-header .content .menu-header-desktop ul li br {
    display: none;
  }
  .navbar-header .content .logo, .navbar-header .content .contacts, .navbar-header .content .button {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .navbar-header .mobile-button {
    display: none !important;
  }
  .navbar-header .content .menu-header-desktop {
    width: 100%;
    margin: 0 0 15px;
  }
  .navbar-header .content .menu-header-desktop ul li {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    margin: 0 0 15px;
    width: 100%;
  }
  .navbar-header .content .menu-header-desktop ul li:nth-last-of-type(1) {
    margin: 0;
  }
  .navbar-header .content .languages {
    margin: 0 0 15px;
  }
  .navbar-header .content .languages .dd-select {
    margin-left: auto;
  }
}
@media screen and (max-width: 500px) {
  .navbar-header .mobile-contacts {
    display: none !important;
  }
}
.footer {
  background: linear-gradient(to top, rgba(240, 128, 27, 0.11), transparent);
  padding: 60px 0;
}
.footer .main {
  max-width: 135px;
}
.footer .main .logo {
  margin-bottom: 15px;
}
.footer .main .logo img {
  height: 37px;
  max-width: 133px;
}
.footer .main .copyright {
  color: #a6a6a6;
  font-size: 11px;
  margin-bottom: 15px;
}
.footer .main .social {
  margin-right: 7px;
}
.footer .main .social a:hover img {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}
.footer .main .social img {
  width: 22px;
}
.footer .main .social:nth-last-of-type(1) {
  margin-right: 0;
}
.footer .requisites {
  max-width: 365px;
}
.footer .requisites .payment {
  margin-bottom: 7px;
}
.footer .requisites .system {
  margin-right: 12px;
}
.footer .requisites .system img {
  max-height: 22px;
  max-width: 60px;
}
.footer .requisites .system:nth-last-of-type(1) {
  margin-right: 0;
}
.footer .requisites .information {
  color: #a6a6a6;
  font-size: 11px;
}
.footer .menus .menu {
  margin-right: 75px;
}
.footer .menus .menu:nth-last-of-type(1) {
  margin-right: 0;
}
.footer .menus ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .menus ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 0;
}
.footer .menus ul li:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #f0801b;
  width: 7px;
  height: 7px;
  left: 0;
  top: 6px;
}
.footer .menus ul li a {
  font-size: 13px;
  font-family: RobotoMedium;
  color: #a6a6a6;
}
.footer .menus ul li a:hover {
  color: #f0801b;
}
.footer .menus ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.footer .menus ul .current-menu-item a, .footer .menus ul .current-page-ancestor a {
  color: #f0801b;
}

@media screen and (max-width: 1366px) {
  .footer {
    padding: 30px 0;
  }
  .footer .menus .menu {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .footer .menus .menu {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .content {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
  .footer .main {
    margin: 0 60px 30px 0;
  }
  .footer .requisites {
    margin: 0 0 30px 0;
  }
  .footer .menus {
    width: 100%;
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
  .footer .menus .menu {
    margin-right: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer .main {
    margin: 0 30px 30px 0;
  }
  .footer .menus .menu {
    margin-right: 50px;
  }
  .footer .menus .menu ul li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .footer .main {
    width: 100%;
    max-width: none;
    margin: 0 0 30px 0;
  }
  .footer .main .logo, .footer .main .copyright {
    margin-bottom: 10px;
  }
  .footer .requisites {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .footer .requisites .payment {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .footer .menus .menu {
    width: 50%;
    margin: 0 0 30px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .footer .menus .menu ul li {
    margin-bottom: 10px;
  }
  .footer .menus .menu:nth-last-of-type(1) {
    margin: 0;
  }
}
@media screen and (max-width: 400px) {
  .footer .menus .menu {
    width: 100%;
    margin: 0 0 15px;
  }
  .footer .menus .menu ul li {
    padding-left: 0;
    text-align: center;
  }
  .footer .menus .menu ul li:before {
    content: none;
  }
}
.image-modal-window .modal {
  padding: 0 !important;
  overflow-y: scroll;
  text-align: center;
}
.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 {
  max-width: 1500px;
  background-color: transparent;
  margin: 0;
}
.image-modal-window .modal-dialog .modal-content {
  background-color: transparent;
  border: none !important;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .align-modal-helper {
  padding: 15px !important;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description {
  font-size: 16px;
  max-height: 72px;
  padding: 0 15px;
  margin: 7.5px 0;
  color: #fff;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description::-webkit-scrollbar {
  width: 5px;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description::-webkit-scrollbar-track {
  background-color: transparent;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description::-webkit-scrollbar-thumb {
  background-color: #f0811b;
}
.image-modal-window .modal-dialog .modal-content .slide-image, .image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  max-height: 80vh;
  max-width: 100%;
  padding: 7.5px;
  object-fit: contain;
  background-color: transparent;
}
.image-modal-window .modal-dialog .modal-content .slide-image {
  width: auto;
  height: auto;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  width: 100%;
  height: 800px;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .carousel-inner {
  background-color: transparent !important;
}
.image-modal-window .modal-dialog .modal-content .carousel-item {
  background-color: transparent !important;
}
.image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #f0811b;
  color: #fff;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.75;
  transition: all 0.2s linear;
}
.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: 10px;
}
.image-modal-window .carousel-control-next {
  margin-right: 10px;
}
.image-modal-window .modal-cross {
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #f0811b;
  opacity: 0.75;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s linear;
}
.image-modal-window .modal-cross img {
  width: 20px !important;
  height: 20px !important;
}
.image-modal-window .modal-cross:hover {
  opacity: 1;
  transition: all 0.2s linear;
}
.image-modal-window .modal-cross:focus {
  outline: none;
}

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

@media screen and (max-width: 1200px) {
  .image-modal-window .modal {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 1024px) {
  .image-modal-window .modal {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .image-modal-window .align-modal-helper {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .image-modal-window .modal {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .image-modal-window .modal-dialog .modal-content img {
    padding: 0;
  }
  .image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:focus, .image-modal-window .carousel-control-next:focus {
    opacity: 0.75;
  }
  .image-modal-window .modal-cross {
    opacity: 1;
  }
  .image-modal-window .modal-cross:hover {
    opacity: 1;
  }
  .image-modal-window .modal-cross:focus {
    opacity: 1;
  }
}
.pagination {
  width: 100%;
}
.pagination .page-numbers {
  margin-right: 17px;
  width: 59px;
  height: 59px;
  background-color: #e1e2e3;
  color: #58595b;
  font-size: 25px;
  border-radius: 50%;
  font-family: RobotoMedium;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  transition: all 0.2s linear;
}
.pagination .page-numbers:hover {
  transition: all 0.2s linear;
  background-color: #f0801b;
  color: #fff;
}
.pagination .page-numbers:last-child {
  margin-right: 0;
}
.pagination .page-numbers.current {
  background-color: #f0801b;
  color: #fff;
}
.pagination .page-numbers.dots:hover {
  background-color: #e1e2e3;
  color: #58595b;
}

@media screen and (max-width: 1024px) {
  .pagination .page-numbers {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
.single-car {
  border-radius: 5px;
  padding: 15px;
}
.single-car .car-image {
  height: 160px;
  margin-bottom: 30px;
}
.single-car .car-title {
  color: #3a3a3a;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 5px;
}
.single-car .car-characteristics {
  margin-bottom: 5px;
}
.single-car .single-characteristic {
  color: #3a3a3a;
  font-size: 14px;
  margin: 0 15px 5px 0;
}
.single-car .single-characteristic:nth-last-of-type(1) {
  margin: 0 0 5px 0;
}
.single-car .single-characteristic img {
  height: 18px;
  margin-right: 9px;
}
.single-car .car-price {
  color: #3a3a3a;
  font-size: 13px;
}
.single-car .car-price .price {
  font-size: 24px;
  color: #f0801b;
}
.single-car .car-price .car-price-from-text {
  font-size: 14px;
  font-family: RobotoBold;
}

@media screen and (max-width: 1366px) {
  .single-car .car-image {
    margin-bottom: 15px;
  }
  .single-car .car-price .price {
    font-size: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .single-car {
    padding: 0 15px;
  }
  .single-car .car-image {
    margin-bottom: 10px;
  }
}
.special-offer .side-image {
  width: 60%;
}
.special-offer .side-image .vertical-title {
  top: 0;
  right: 0;
  color: #e9e8e8;
  font-size: 124px;
  margin-bottom: 0;
  line-height: 0.665;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform-origin: 100% 0;
  white-space: nowrap;
}
.special-offer .side-image .absolute-line {
  width: 150px;
  height: 6px;
  background-color: #f0801b;
  border-radius: 0 5px 5px 0;
  left: 100%;
  top: 74px;
}
.special-offer .side-content {
  width: calc(40% - 200px);
  padding: 50px 0;
}
.special-offer .side-content .subtitles-wrapper {
  margin-bottom: 15px;
}
.special-offer .side-content .subtitle-small {
  font-size: 22px;
  line-height: 1;
}
.special-offer .side-content .subtitle-big {
  font-size: 53px;
  line-height: 1;
}
.special-offer .side-content .big-title {
  font-size: 70px;
  margin-bottom: 10px;
}

.home-page .special-offers-wrapper {
  padding: 30px 0 0;
}
.home-page .special-offer {
  margin-bottom: 150px;
}
.home-page .special-offer .side-image {
  width: 50%;
}
.home-page .special-offer .side-image:before {
  content: "";
  display: block;
  padding-top: 108%;
}
.home-page .special-offer .side-image > img {
  clip-path: polygon(100% 0, 100% 100%, 100px 100%, 0 calc(100% - 100px), 0 0);
}
.home-page .special-offer .side-image .absolute-triangle {
  bottom: -20px;
  left: -20px;
  border-left: 60px solid #f0801b;
  border-bottom: 60px solid #f0801b;
  border-top: 60px solid transparent;
  border-right: 60px solid transparent;
}
.home-page .special-offer .side-image .absolute-triangle img {
  width: 23px;
  height: 23px;
  left: -40px;
  bottom: -40px;
}
.home-page .special-offer .side-content {
  width: calc(50% - 200px);
  padding: 15px 0;
}
.home-page .special-offer .side-content .read-more a {
  white-space: nowrap;
  font-size: 19px;
  color: #5b5b5b;
}
.home-page .special-offer .side-content .read-more a img {
  width: 20px;
  margin-left: 15px;
}
.home-page .special-offer .side-content .read-more a:hover {
  color: #f0801b;
}
.home-page .special-offer .side-content .read-more a:hover img {
  -webkit-animation: bounce10 0.5s linear infinite;
  animation: bounce10 0.5s linear infinite;
}
.home-page .ordered-special-offer .side-image {
  order: 2;
}
.home-page .ordered-special-offer .side-image > img {
  clip-path: polygon(100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%, 0 0);
}
.home-page .ordered-special-offer .side-image .absolute-triangle {
  right: -20px;
  left: auto;
  border-right: 60px solid #f0801b;
  border-bottom: 60px solid #f0801b;
  border-left: 60px solid transparent;
}
.home-page .ordered-special-offer .side-image .absolute-triangle img {
  left: auto;
  right: -40px;
  bottom: -40px;
}
.home-page .ordered-special-offer .side-image .vertical-title {
  top: 0;
  right: calc(100% + 90px);
}
.home-page .ordered-special-offer .side-image .absolute-line {
  border-radius: 5px 0 0 5px;
  right: 100%;
  left: auto;
}
.home-page .ordered-special-offer .side-content {
  order: 1;
}

@media screen and (min-width: 1701px) {
  .special-offer .side-content .main-content-wysiwyg > p {
    font-size: 22px;
    line-height: 34px;
  }
  .special-offer .side-content .main-content-wysiwyg > ul li {
    font-size: 22px;
    line-height: 34px;
  }
  .special-offer .side-content .main-content-wysiwyg > h2 {
    font-size: 25px;
  }
  .special-offer .side-content .main-content-wysiwyg > h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1700px) {
  .special-offer .side-image .vertical-title {
    font-size: 80px;
  }
  .special-offer .side-image .absolute-line {
    width: 80px;
    height: 4px;
    left: 100%;
    top: 48px;
  }
  .special-offer .side-content {
    width: calc(40% - 100px);
    padding: 30px 0;
  }
  .special-offer .side-content .subtitle-small {
    font-size: 20px;
  }
  .special-offer .side-content .subtitle-big {
    font-size: 40px;
  }
  .special-offer .side-content .big-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .home-page .special-offer {
    margin-bottom: 90px;
  }
  .home-page .special-offer .side-image:before {
    padding-top: 90%;
  }
  .home-page .special-offer .side-image .absolute-triangle {
    bottom: -10px;
    left: -10px;
    border-left: 55px solid #f0801b;
    border-bottom: 55px solid #f0801b;
    border-top: 55px solid transparent;
    border-right: 55px solid transparent;
  }
  .home-page .special-offer .side-image .absolute-triangle img {
    left: -35px;
    bottom: -35px;
  }
  .home-page .special-offer .side-content {
    width: calc(50% - 100px);
  }
  .home-page .special-offer .side-content .read-more a {
    font-size: 17px;
  }
  .home-page .special-offer .side-content .read-more a img {
    margin-left: 10px;
  }
  .home-page .ordered-special-offer .side-image .vertical-title {
    right: calc(100% + 57px);
  }
  .home-page .ordered-special-offer .side-image .absolute-triangle {
    right: -10px;
    left: auto;
    border-right: 55px solid #f0801b;
    border-bottom: 55px solid #f0801b;
    border-left: 55px solid transparent;
  }
  .home-page .ordered-special-offer .side-image .absolute-triangle img {
    left: auto;
    right: -35px;
  }
}
@media screen and (max-width: 1366px) {
  .special-offer .side-image {
    width: 50%;
  }
  .special-offer .side-content {
    width: calc(50% - 100px);
    padding: 0;
  }
  .home-page .special-offers-wrapper {
    padding: 0;
  }
  .home-page .special-offer {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .special-offer .side-image {
    width: 100%;
  }
  .special-offer .side-image .vertical-title, .special-offer .side-image .absolute-line {
    display: none;
  }
  .special-offer .side-content {
    width: 100%;
    padding: 30px 15px;
  }
  .special-offer .side-content .subtitle-big {
    font-size: 30px;
  }
  .special-offer .side-content .big-title {
    font-size: 35px;
  }
  .home-page .special-offers-wrapper {
    padding: 30px 0 0;
  }
  .home-page .special-offer .side-image .vertical-title, .home-page .special-offer .side-image .absolute-line {
    display: block;
  }
  .home-page .special-offer .side-image .vertical-title {
    font-size: 40px;
  }
  .home-page .special-offer .side-image .absolute-line {
    width: 50px;
    height: 3px;
    top: 24px;
  }
  .home-page .special-offer .side-content {
    width: calc(50% - 65px);
  }
  .home-page .ordered-special-offer .side-image .vertical-title {
    right: calc(100% + 29px);
  }
  .special-offer-page .right-container-imitation {
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .special-offer .side-content {
    padding: 15px;
  }
  .special-offer .side-content .subtitle-small {
    font-size: 18px;
  }
  .special-offer .side-content .subtitle-big {
    font-size: 25px;
  }
  .special-offer .side-content .big-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .home-page .special-offers-wrapper {
    padding: 15px 0 0;
  }
  .home-page .special-offer {
    margin-bottom: 30px;
  }
  .home-page .special-offer .side-image, .home-page .special-offer .side-content {
    width: 100%;
  }
  .home-page .special-offer .side-content .subtitles-wrapper {
    margin-bottom: 10px;
  }
  .home-page .special-offer .side-content .subtitle-big {
    font-size: 25px;
  }
  .home-page .special-offer .side-content .subtitle-small {
    font-size: 18px;
  }
  .home-page .special-offer .side-content .big-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .home-page .special-offer .side-content .read-more a {
    font-size: 14px;
    line-height: 25px;
  }
  .home-page .special-offer .side-image:before {
    padding-top: 66%;
  }
  .home-page .special-offer .side-image .vertical-title, .home-page .special-offer .side-image .absolute-line {
    display: none;
  }
  .home-page .special-offer .side-image .absolute-triangle {
    bottom: 0;
    left: 0;
    border-left: 50px solid #f0801b;
    border-bottom: 50px solid #f0801b;
    border-top: 50px solid transparent;
    border-right: 50px solid transparent;
  }
  .home-page .ordered-special-offer .side-image {
    order: 1;
  }
  .home-page .ordered-special-offer .side-image .absolute-triangle {
    right: 0;
    left: auto;
    border-right: 50px solid #f0801b;
    border-bottom: 50px solid #f0801b;
    border-left: 50px solid transparent;
  }
  .home-page .ordered-special-offer .side-content {
    order: 2;
  }
}
.plans-table {
  color: #3a3a3a;
  padding: 73px 0 27px;
}
.plans-table .help-scroll-mobile-wrapper {
  box-shadow: 0 7px 35px 0 rgba(0, 0, 0, 0.1), 0 7px 35px 0 rgba(240, 128, 27, 0.2);
  border-radius: 5px;
  table-layout: fixed;
}
.plans-table .plan-row:nth-last-of-type(1) .cell-common {
  border-bottom: none;
}
.plans-table .cell-common {
  padding: 12px;
  vertical-align: middle;
  border-bottom: 1px solid #d8d8d8;
}
.plans-table .cell-common .info-popup {
  width: 16px;
  left: 0;
  top: 3px;
  font-size: 0;
}
.plans-table .cell-common .info-icon-plans-table {
  width: 16px;
  cursor: pointer;
}
.plans-table .cell-common .info-icon-plans-table:hover ~ .popup-content {
  visibility: visible;
  opacity: 1;
}
.plans-table .cell-common .popup-content {
  width: 275px;
  padding: 15px;
  border-radius: 10px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  font-size: 13px;
}
.plans-table .cell-common .plan-title {
  top: -73px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: calc(100% + 2.5px);
  height: 73px;
  border-radius: 10px 10px 0 0;
}
.plans-table .cell-common .plan-title .help-hover-wrapper {
  padding-left: 45px;
  font-size: 25px;
  color: #3a3a3a;
}
.plans-table .cell-common .plan-title img {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 35px;
}
.plans-table .cell-common .plan-title .static-image {
  visibility: visible;
  opacity: 1;
}
.plans-table .cell-common .plan-title .hover-image {
  visibility: hidden;
  opacity: 0;
}
.plans-table .cell-common .plan-title-hovered {
  background-color: #f0801b;
}
.plans-table .cell-common .plan-title-hovered .help-hover-wrapper {
  color: #fff;
}
.plans-table .cell-common .plan-title-hovered .static-image {
  visibility: hidden;
  opacity: 0;
}
.plans-table .cell-common .plan-title-hovered .hover-image {
  visibility: visible;
  opacity: 1;
}
.plans-table .cell-common .plan-bottom-space {
  visibility: hidden;
  opacity: 0;
  height: 27px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: calc(100% + 2px);
  border-radius: 0 0 10px 10px;
  border: 1px solid #d8d8d8;
  border-top: none;
}
.plans-table .cell-common .plan-bottom-space-hovered {
  visibility: visible;
  opacity: 1;
}
.plans-table .cell-plan[data-plan="1"] .popup-content {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.plans-table .cell-plan[data-plan="2"] .popup-content {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.plans-table .cell-plan[data-plan="3"] .popup-content {
  top: 50%;
  left: auto;
  right: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.plans-table .cell-title {
  width: 450px;
  padding-left: 60px;
}
.plans-table .cell-title .popup-content {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.plans-table .cell-title .title {
  width: 100%;
  font-size: 14px;
  padding-left: 24px;
}
.plans-table .cell-plan {
  width: calc((100% - 450px) / 3.001);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.plans-table .cell-plan .title {
  padding-left: 24px;
}
.plans-table .cell-plan .info-popup {
  top: 5px;
}
.plans-table .cell-plan .status-image {
  width: 20px;
}
.plans-table .cell-plan-side-bordered {
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

@media screen and (max-width: 1200px) {
  .plans-table .cell-title {
    width: 350px;
    padding-left: 12px;
  }
  .plans-table .cell-plan {
    width: calc((100% - 350px) / 3.001);
  }
}
@media screen and (max-width: 1024px) {
  .plans-table {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 73px 0 42px;
  }
  .plans-table::-webkit-scrollbar {
    height: 5px;
  }
  .plans-table::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .plans-table::-webkit-scrollbar-thumb {
    background-color: #f0801b;
    border-radius: 10px;
  }
  .plans-table .help-scroll-mobile-wrapper {
    box-shadow: none;
    border: 1px solid #d8d8d8;
  }
  .plans-table .cell-plan {
    width: 250px;
  }
}
.carousel-wrapper .slick-slide {
  padding: 0 15px;
}
.carousel-wrapper .slick-arrow-custom {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
  width: 32px;
  z-index: 10;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}
.carousel-wrapper .slick-arrow-custom-prev {
  background-image: url("../../images/left-carousel.png");
  left: 0;
}
.carousel-wrapper .slick-arrow-custom-next {
  background-image: url("../../images/right-carousel.png");
  right: 0;
}

@media screen and (max-width: 1024px) {
  .carousel-wrapper .slick-track {
    padding: 0;
  }
  .carousel-wrapper .slick-slide {
    padding: 0;
  }
  .swipe-mobile-icon {
    padding: 20px 0;
    display: block !important;
  }
  .swipe-mobile-icon img {
    margin: 0 auto;
    width: 34px;
  }
}
.gm-style-iw-t {
  display: none !important;
}

.main-custom-info-window-wrapper {
  display: block !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: all 0.2s linear !important;
}
.main-custom-info-window-wrapper:after {
  content: none !important;
}

.main-custom-info-window-wrapper-visible {
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.2s linear !important;
}

.google-map-info-window-wrapper {
  padding: 0 !important;
  max-height: none !important;
}

.google-map-info-window-inner-wrapper {
  overflow: visible !important;
  max-height: none !important;
}

.google-map-info-window-close {
  display: none !important;
}

.custom-info-window-wrapper {
  border: 2px solid #ef7f1a;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.31);
  border-radius: 10px;
  padding: 15px 25px 6px;
}
.custom-info-window-wrapper .info-window-image {
  margin-bottom: 5px;
}
.custom-info-window-wrapper .info-window-image img {
  max-width: 100px;
  object-fit: contain;
}
.custom-info-window-wrapper .info-window-address {
  font-size: 16px;
  color: #3a3a3a;
  font-family: RobotoBold;
  line-height: 34px;
}
.custom-info-window-wrapper .info-window-phone .info-window-phone-icon {
  margin-right: 10px;
}
.custom-info-window-wrapper .info-window-phone .info-window-phone-icon img {
  width: 18px;
  object-fit: contain;
}
.custom-info-window-wrapper .info-window-phone .info-window-phone-value a {
  font-size: 16px;
  color: #3a3a3a;
  font-family: RobotoBold;
  line-height: 34px;
}
.custom-info-window-wrapper .info-window-phone .info-window-phone-value a:hover {
  color: #f0801b;
}

.advanced-page-slider-wrapper .advanced-page-slider {
  position: relative;
}
@media only screen and (max-width: 1900px) {
  .advanced-page-slider-wrapper .advanced-page-slider.advanced-page-slider-3 {
    display: none;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider.advanced-page-slider-2 {
  display: none;
}
@media only screen and (max-width: 1900px) and (min-width: 1301px) {
  .advanced-page-slider-wrapper .advanced-page-slider.advanced-page-slider-2 {
    display: block;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider.advanced-page-slider-1 {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .advanced-page-slider-wrapper .advanced-page-slider.advanced-page-slider-1 {
    display: block;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-list {
  padding: 30px 0 73px !important;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-right: 60px;
}
@media only screen and (max-width: 1300px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide-wrapper {
    padding-right: 0;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide {
  display: flex;
  margin-left: 60px;
}
@media only screen and (max-width: 1300px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide {
    margin: 0 30px;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 400px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide {
    margin: 0 15px;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide:hover .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper .single-advanced-page-slide-read-more .single-advanced-page-slide-read-more-text {
  color: #f0811b;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide:hover .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper .single-advanced-page-slide-read-more .single-advanced-page-slide-read-more-image {
  transform: translateX(5px);
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-image {
  position: relative;
  width: 354px;
  height: 247px;
  -webkit-filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.5));
  margin-right: 42px;
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-image {
    margin-right: 0;
    width: 100%;
    height: 0;
    margin-bottom: 20px;
    padding-top: 65%;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-image:before {
  content: "";
  position: absolute;
  top: 71px;
  right: -30px;
  border-radius: 3px;
  background-color: #f0811b;
  width: 60px;
  height: 6px;
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-image:before {
    display: none;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(100% 0, 100% 100%, 18% 100%, 0 84%, 0 0);
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content {
  padding-top: 7px;
  flex: 1;
  max-width: 220px;
}
@media only screen and (max-width: 1900px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content {
    max-width: 370px;
  }
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content {
    flex: unset;
    width: 100%;
    max-width: unset;
    text-align: center;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-text {
  color: #5b5b5b;
  font-size: 17px;
  font-family: RobotoRegular, sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  margin-bottom: 0;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-heading-big {
  font-family: RobotoBlack, sans-serif;
  color: #f0811b;
  font-size: 47px;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  margin: -3px 0 2px;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-heading-small {
  font-family: RobotoBlack, sans-serif;
  font-size: 19px;
  color: #5b5b5b;
  line-height: 27px;
  font-style: normal;
  letter-spacing: normal;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper {
    display: flex;
    justify-content: center;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper .single-advanced-page-slide-read-more {
  display: flex;
  align-items: center;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper .single-advanced-page-slide-read-more .single-advanced-page-slide-read-more-text {
  font-family: RobotoRegular, sans-serif;
  font-size: 19px;
  color: #5b5b5b;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  margin-right: 16px;
  transition: all 0.15s linear;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper .single-advanced-page-slide-read-more .single-advanced-page-slide-read-more-image {
  width: 19px;
  height: 15px;
  margin-top: 3px;
  transition: all 0.15s linear;
}
.advanced-page-slider-wrapper .advanced-page-slider .single-advanced-page-slide .single-advanced-page-slide-content .single-advanced-page-slide-read-more-wrapper .single-advanced-page-slide-read-more .single-advanced-page-slide-read-more-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .advanced-page-slider-wrapper .advanced-page-slider .slick-dots {
    bottom: 24px;
  }
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-dots li {
  line-height: 0;
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-dots li:not(:last-child) {
  margin-right: 21px;
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-dots li button {
  font-size: 0;
  height: 16px;
  width: 16px;
  background-color: #5b5b5b;
  border: none;
  border-radius: 100%;
  transition: all 0.15s linear;
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-dots li button:hover {
  background-color: #f0811b;
}
.advanced-page-slider-wrapper .advanced-page-slider .slick-dots li.slick-active button {
  background-color: #f0811b;
}

.home-page {
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-attachment: scroll;
}
.home-page .main-block .hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* Create the parallax scrolling effect */
  background-image: url("../../images/main-hero-background.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}
.home-page .main-block .bg-word-desktop {
  right: 0;
  bottom: 0;
  max-width: calc(100% - 150px);
}
.home-page .main-block .bg-word-mobile {
  display: none;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  max-width: calc(100% - 150px);
}
.home-page .main-block .content-wrapper {
  padding: 30px 0;
}
.home-page .main-block .info-side {
  width: calc(50% - 60px);
}
.home-page .main-block .info-side .mb-title {
  line-height: normal;
  font-size: 40px;
  margin-bottom: 30px;
  color: #3a3a3a;
}
.home-page .main-block .info-side .mb-title .highlighted {
  color: #fff;
  background-color: #f0801b;
  padding: 0 7px;
}
.home-page .main-block .info-side .mb-subtext {
  color: #3a3a3a;
  margin-bottom: 30px;
  font-size: 21px;
}
.home-page .main-block .image-side {
  width: 50%;
}
.home-page .main-block .image-side img {
  max-height: 500px;
}
.home-page .filters-home {
  margin-bottom: 73px;
}
.home-page .filters-home .fb-subtext {
  font-size: 15px;
  background-color: #f0801b;
  padding: 20px 15px 0;
}
.home-page .filters-home .fb-title {
  font-size: 34px;
  line-height: normal;
  background-color: #f0801b;
  padding: 0 15px;
  padding-bottom: 15px !important;
  margin-bottom: 0;
}
.home-page .home-gallery {
  padding: 45px 0 15px;
}
.home-page .home-gallery .gallery-title {
  color: #3a3a3a;
  margin-bottom: 10px;
  font-size: 34px;
}
.home-page .home-gallery .gallery-title .small-gallery-title {
  color: #f0801b;
  font-size: 22px;
}
.home-page .home-gallery .gallery-subtext {
  font-size: 15px;
  color: #3a3a3a;
}
.home-page .home-gallery .gallery-subtext a {
  color: #127cd7;
}
.home-page .home-gallery .gallery-subtext a:hover {
  color: #f0801b;
}
.home-page .home-info-block {
  max-width: 1700px;
  padding: 0 30px 15px;
}
.home-page .home-info-block .image-block {
  width: calc(30% - 20px);
}
.home-page .home-info-block .image-block img {
  max-height: 800px;
}
.home-page .home-info-block .title-block {
  width: 40%;
}
.home-page .home-info-block .title-block .title {
  font-size: 74px;
  color: #3a3a3a;
  margin-bottom: 50px;
}
.home-page .home-info-block .title-block .buttons-row .single-button {
  margin: 0 13px 13px 0;
}
.home-page .home-info-block .title-block .buttons-row .single-button:nth-last-of-type(1) {
  margin: 0 0 13px;
}
.home-page .home-info-block .points-block {
  width: calc(30% - 20px);
}
.home-page .home-info-block .points-block .single-point {
  padding-left: 25px;
  background-image: url("../../images/check-default.png");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: 0 5px;
  margin-bottom: 10px;
}
.home-page .home-info-block .points-block .single-point:nth-last-of-type(1) {
  margin-bottom: 0;
}

@media screen and (max-width: 1700px) {
  .home-page .main-block .bg-word {
    right: 30px;
    max-width: calc(100% - 60px);
  }
  .home-page .home-info-block {
    align-items: center;
    -webkit-align-items: center;
  }
  .home-page .home-info-block .title-block .title {
    font-size: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1366px) {
  .home-page .main-block .bg-word {
    right: 15px;
    max-width: calc(100% - 30px);
  }
  .home-page .main-block .info-side {
    width: calc(50% - 30px);
  }
  .home-page .main-block .info-side .mb-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .home-page .main-block .info-side .mb-subtext {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .home-page .filters-home .fb-title {
    font-size: 30px;
  }
  .home-page .home-gallery .gallery-title {
    font-size: 30px;
  }
  .home-page .home-gallery .gallery-title .small-gallery-title {
    font-size: 18px;
  }
  .home-page .home-gallery .gallery-subtext {
    margin-bottom: 0;
  }
  .home-page .home-info-block {
    padding: 0 15px 15px;
  }
  .home-page .home-info-block .title-block .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .home-page {
    background-size: 100% auto;
  }
}
@media screen and (max-width: 1024px) {
  .home-page {
    background-image: url("../../images/main-block-circle.png");
  }
  .home-page .main-block .bg-word-desktop {
    display: none;
  }
  .home-page .main-block .bg-word-mobile {
    display: block;
  }
  .home-page .main-block .content-wrapper {
    padding: 15px 0 30px;
  }
  .home-page .main-block .info-side {
    width: 55%;
  }
  .home-page .main-block .image-side {
    width: calc(45% - 30px);
  }
  .home-page .home-info-block .image-block {
    width: 300px;
    margin-bottom: 15px;
  }
  .home-page .home-info-block .title-block {
    width: calc(100% - 300px - 30px);
    margin-bottom: 15px;
  }
  .home-page .home-info-block .points-block {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .home-page .home-info-block .points-block .single-point {
    width: calc(50% - 7.5px);
  }
  .home-page .home-info-block .title-block .title {
    font-size: 40px;
  }
  .home-page .filters-home .fb-subtext {
    padding: 30px 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .home-page .main-block .info-side {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .home-page .main-block .info-side .mb-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .home-page .main-block .info-side .mb-subtext {
    margin-bottom: 0;
    font-size: 16px;
  }
  .home-page .main-block .info-side .mb-button {
    display: none;
  }
  .home-page .main-block .image-side {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .home-page .main-block .image-side img {
    max-width: 600px;
  }
  .home-page .main-block .mobile-mb-button {
    display: block !important;
  }
  .home-page .filters-home .fb-subtext {
    font-size: 14px;
  }
  .home-page .home-gallery .gallery-subtext {
    font-size: 14px;
  }
  .home-page .home-info-block {
    padding: 0 15px;
  }
  .home-page .home-info-block .image-block {
    width: 200px;
    margin-bottom: 0;
  }
  .home-page .home-info-block .image-block img {
    width: 300px !important;
    position: relative;
    left: -100px;
  }
  .home-page .home-info-block .title-block {
    width: calc(100% - 200px);
  }
  .home-page .home-info-block .points-block {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .home-page .home-info-block {
    padding: 0 15px 15px;
  }
  .home-page .home-info-block .image-block {
    display: none;
  }
  .home-page .home-info-block .title-block {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
  }
  .home-page .home-info-block .title-block .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .home-page .home-info-block .title-block .buttons-row {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .home-page .main-block .info-side {
    margin-bottom: 20px;
  }
  .home-page .home-info-block .title-block .buttons-row .single-button {
    width: 100%;
    margin: 0 0 13px;
  }
}
@media screen and (min-width: 1367px) {
  .fleet-page .cars-wrapper .single-car {
    width: calc((100% - 180px) / 4.001);
    margin: 0 30px 30px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(4n) {
    margin: 0 0 30px 30px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(4n+1) {
    margin: 0 30px 30px 0;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1366px) {
  .fleet-page .cars-wrapper .single-car {
    width: calc((100% - 90px) / 4.001);
    margin: 0 15px 30px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(4n) {
    margin: 0 0 30px 15px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(4n+1) {
    margin: 0 15px 30px 0;
  }
}
@media screen and (max-width: 1200px) {
  .fleet-page .cars-wrapper .single-car {
    width: calc((100% - 120px) / 3.001);
    margin: 0 30px 30px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(3n) {
    margin: 0 0 30px 30px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(3n+1) {
    margin: 0 30px 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .fleet-page .cars-wrapper .single-car {
    width: calc((100% - 60px) / 3.001);
    margin: 0 15px 45px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(3n) {
    margin: 0 0 45px 15px;
  }
  .fleet-page .cars-wrapper .single-car:nth-of-type(3n+1) {
    margin: 0 15px 45px 0;
  }
}
@media screen and (max-width: 767px) {
  .fleet-page .cars-wrapper {
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .fleet-page .cars-wrapper .single-car {
    width: calc(50% - 15px);
    margin: 0 0 45px !important;
  }
}
@media screen and (max-width: 600px) {
  .fleet-page .cars-wrapper .single-car {
    width: 100%;
  }
}
.advanced-page .main-block .content-wrapper {
  min-height: 565px;
  padding: 30px 0;
}
.advanced-page .main-block .mb-title {
  font-size: 58px;
  margin-bottom: 20px;
  line-height: normal;
}
.advanced-page .main-block .mb-subtext {
  margin-bottom: 50px;
  line-height: 30px;
}

@media screen and (max-width: 1600px) {
  .advanced-page .main-block .content-wrapper {
    min-height: 500px;
  }
}
@media screen and (max-width: 1366px) {
  .advanced-page .main-block .content-wrapper {
    min-height: 400px;
  }
  .advanced-page .main-block .mb-title {
    font-size: 40px;
  }
  .advanced-page .main-block .mb-subtext {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .advanced-page .main-block .mb-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .advanced-page .main-block .mb-subtext {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 20px;
  }
}
.page-404 .image-404 {
  margin-right: 30px;
}
.page-404 .image-404 img {
  width: 260px;
}
.page-404 .content-404 {
  max-width: calc(100% - 260px - 30px);
}
.page-404 .content-404 .title-404 {
  color: #3a3a3a;
  line-height: normal;
  margin-bottom: 20px;
  font-size: 37px;
}
.page-404 .content-404 .single-404-button {
  margin: 0 20px 20px 0;
}
.page-404 .content-404 .single-404-button:nth-last-of-type(1) {
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .page-404 .image-404 img {
    width: 200px;
  }
  .page-404 .content-404 {
    max-width: calc(100% - 200px - 30px);
  }
  .page-404 .content-404 .title-404 {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .page-404 .image-404 {
    width: 100%;
    text-align: center;
    margin: 0 0 15px;
  }
  .page-404 .image-404 img {
    width: 200px;
  }
  .page-404 .content-404 {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .page-404 .content-404 .title-404 {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .page-404 .content-404 .buttons-404 {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .page-404 .content-404 .single-404-button {
    width: 100%;
    margin: 0 0 20px;
  }
  .page-404 .content-404 .single-404-button:nth-last-of-type(1) {
    margin: 0;
  }
}
.options-page .options-list .single-option {
  max-width: 1015px;
  margin-bottom: 50px;
}
.options-page .options-list .option-image {
  width: 81px;
}
.options-page .options-list .option-image img {
  max-height: 94px;
}
.options-page .options-list .option-content-wrapper {
  width: calc(100% - 81px - 25px);
}
.options-page .options-list .option-title, .options-page .options-list .option-content {
  font-size: 15px;
  line-height: 25px;
}
.options-page .options-list .option-title {
  color: #58595b;
  margin-bottom: 10px;
}
.options-page .options-list .option-content {
  color: #3a3a3a;
}
.options-page .options-table-wrapper .options-table-title {
  font-size: 22px;
  line-height: normal;
  margin-bottom: 15px;
  color: #58595b;
}

@media screen and (max-width: 1024px) {
  .options-page .options-list .single-option {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .options-page .options-list .option-content {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .options-page .options-list .option-image {
    width: 70px;
  }
  .options-page .options-list .option-content-wrapper {
    width: calc(100% - 70px - 15px);
  }
}
.contacts-page .content-wrapper {
  margin-bottom: 60px;
}
.contacts-page .contact-form-wrapper {
  width: calc(45% - 30px);
}
.contacts-page .contact-form-wrapper .success-submit-wrapper {
  padding: 30px 0;
  max-width: 300px;
}
.contacts-page .contact-form-wrapper .success-submit-wrapper .success-image {
  margin-bottom: 35px;
}
.contacts-page .contact-form-wrapper .success-submit-wrapper .success-image img {
  max-width: 200px;
}
.contacts-page .contact-cards {
  padding-top: 23px;
  width: calc(55% - 30px);
}
.contacts-page .contact-cards .single-contact-card {
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 30px 50px;
  box-shadow: 0 7px 35px 0 rgba(0, 0, 0, 0.1), 0 7px 35px 0 rgba(240, 128, 27, 0.2);
  border-left: 9px solid #f0801b;
}
.contacts-page .contact-cards .single-contact-card:nth-last-of-type(1) {
  margin-bottom: 0;
}
.contacts-page .contact-cards .contacts-side {
  width: calc(100% - 150px - 15px);
}
.contacts-page .contact-cards .contacts-side .contact-card-title {
  margin-bottom: 15px;
  color: #3a3a3a;
  font-size: 25px;
}
.contacts-page .contact-cards .contacts-side .contacts {
  font-size: 0;
}
.contacts-page .contact-cards .contacts-side .contacts .contact {
  margin-right: 25px;
}
.contacts-page .contact-cards .contacts-side .contacts .contact a {
  white-space: nowrap;
  font-size: 16px;
  color: #5b5b5b;
}
.contacts-page .contact-cards .contacts-side .contacts .contact a:hover {
  color: #f0801b;
}
.contacts-page .contact-cards .contacts-side .contacts .contact a:hover img {
  -webkit-animation: bounce10 0.5s linear infinite;
  animation: bounce10 0.5s linear infinite;
}
.contacts-page .contact-cards .contacts-side .contacts .contact img {
  width: 25px;
  margin-right: 12px;
}
.contacts-page .contact-cards .contacts-side .contacts .contact:nth-last-of-type(1) {
  margin-right: 0;
}
.contacts-page .contact-cards .schedule-side {
  width: 150px;
}
.contacts-page .contact-cards .schedule-side .schedule-title {
  font-size: 16px;
  color: #3a3a3a;
}
.contacts-page .contact-cards .schedule-side .schedule-content {
  font-size: 14px;
}
.contacts-page .contact-cards .schedule-side .full-time-schedule {
  font-size: 40px;
}
.contacts-page .map-title {
  font-size: 25px;
  margin-bottom: 20px;
  color: #3a3a3a;
}
.contacts-page .map-wrapper {
  height: 620px;
}

@media screen and (max-width: 1366px) {
  .contacts-page .content-wrapper {
    margin-bottom: 30px;
  }
  .contacts-page .contact-form-wrapper {
    width: calc(45% - 15px);
  }
  .contacts-page .contact-cards {
    width: calc(55% - 15px);
  }
  .contacts-page .map-wrapper {
    height: 500px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1366px), (max-width: 767px) {
  .contacts-page .contact-cards .single-contact-card {
    padding: 15px 30px;
  }
  .contacts-page .contact-cards .contacts .contact {
    width: 100%;
    margin: 0 0 10px;
  }
  .contacts-page .contact-cards .contacts .contact:nth-last-of-type(1) {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .contacts-page .contact-form-wrapper {
    width: 100%;
  }
  .contacts-page .contact-cards {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contacts-page .contact-form-wrapper .success-submit-wrapper .success-image {
    margin-bottom: 25px;
  }
  .contacts-page .contact-form-wrapper .success-submit-wrapper .success-image img {
    max-width: 120px;
  }
  .contacts-page .map-wrapper {
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  .contacts-page .contact-cards .single-contact-card {
    text-align: center;
    border-bottom: 9px solid #f0801b;
    border-left: none;
  }
  .contacts-page .contact-cards .contacts-side {
    width: 100%;
    margin-bottom: 15px;
  }
  .contacts-page .contact-cards .schedule-side {
    width: 100%;
  }
  .contacts-page .contact-cards .schedule-side .full-time-schedule {
    font-size: 30px;
  }
}
.locations-new-page .map-wrapper {
  min-height: 615px;
  border-top: 2px solid #f0811b;
  border-bottom: 2px solid #f0811b;
}

@media screen and (max-width: 1366px) {
  .locations-new-page .map-wrapper {
    min-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .locations-new-page .map-wrapper {
    min-height: 400px;
  }
}
.about-us-new-page .about-us-common-title {
  font-size: 40px;
  margin-bottom: 45px;
  font-family: RobotoBlack;
  text-transform: uppercase;
  color: #3a3a3a;
}
.about-us-new-page .hero-block {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}
.about-us-new-page .hero-block .hero-common-title {
  color: #fff;
}
.about-us-new-page .hero-block .hero-block-content {
  min-height: 450px;
  padding: 30px 0;
}
.about-us-new-page .hero-block .hero-list {
  margin-bottom: 30px;
}
.about-us-new-page .hero-block .single-points-column {
  width: calc(50% - 45px);
}
.about-us-new-page .hero-block .single-point {
  padding-left: 20px;
  background-image: url("../../images/check-default.png");
  background-repeat: no-repeat;
  background-size: 12px 15px;
  background-position: 0 10px;
  font-size: 20px;
  line-height: 34px;
}
.about-us-new-page .advantages-block {
  padding: 120px 0 90px;
}
.about-us-new-page .advantages-block .single-advantage {
  margin: 0 calc((100% - 920px) / 3.001) 30px 0;
  width: 230px;
}
.about-us-new-page .advantages-block .single-advantage:nth-of-type(4n) {
  margin: 0 0 30px;
}
.about-us-new-page .advantages-block .advantage-image {
  margin-bottom: 15px;
  border-radius: 50%;
  width: 230px;
  height: 230px;
}
.about-us-new-page .advantages-block .advantage-image:hover img {
  -webkit-animation: bounce10 0.5s linear infinite;
  animation: bounce10 0.5s linear infinite;
}
.about-us-new-page .advantages-block .advantage-image img {
  width: 130px;
  height: 130px;
}
.about-us-new-page .advantages-block .advantage-title {
  font-size: 19px;
  line-height: 27px;
  color: #3a3a3a;
  margin-bottom: 0;
}
.about-us-new-page .why-us-block {
  max-width: 1130px;
  padding: 0 15px;
  margin: 0 auto;
}
.about-us-new-page .why-us-block .why-us-image {
  width: 505px;
}
.about-us-new-page .why-us-block .why-us-content {
  width: calc(100% - 505px - 50px);
}
.about-us-new-page .why-us-block .why-us-title {
  color: #3a3a3a;
  margin-bottom: 30px;
  font-size: 74px;
  line-height: 85px;
}
.about-us-new-page .why-us-block .why-us-list {
  margin-bottom: 45px;
}
.about-us-new-page .why-us-block .why-us-point {
  margin-bottom: 20px;
  font-size: 21px;
  padding-left: 25px;
  background-image: url("../../images/check-default.png");
  background-repeat: no-repeat;
  background-size: 12px 15px;
  background-position: 0 8px;
}
.about-us-new-page .why-us-block .why-us-point:nth-last-of-type(1) {
  margin-bottom: 0;
}

@media screen and (max-width: 1366px) {
  .about-us-new-page .about-us-common-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .about-us-new-page .hero-block .hero-block-content {
    min-height: 350px;
  }
  .about-us-new-page .hero-block .single-points-column {
    width: calc(50% - 15px);
  }
  .about-us-new-page .advantages-block {
    padding: 60px 0 30px;
  }
  .about-us-new-page .why-us-block .why-us-image {
    width: 400px;
  }
  .about-us-new-page .why-us-block .why-us-content {
    width: calc(100% - 400px - 30px);
  }
  .about-us-new-page .why-us-block .why-us-title {
    font-size: 50px;
    line-height: 60px;
  }
  .about-us-new-page .why-us-block .why-us-list {
    margin-bottom: 30px;
  }
  .about-us-new-page .why-us-block .why-us-point {
    margin-bottom: 15px;
    font-size: 18px;
    padding-left: 20px;
    background-position: 0 6px;
  }
}
@media screen and (max-width: 1024px) {
  .about-us-new-page .hero-block {
    background-attachment: scroll;
  }
  .about-us-new-page .hero-block .single-point {
    font-size: 18px;
    line-height: 32px;
    background-position: 0 8px;
  }
  .about-us-new-page .advantages-block {
    padding: 30px 0 0;
  }
  .about-us-new-page .advantages-block .advantages-common-title {
    text-align: center;
  }
  .about-us-new-page .advantages-block .advantages-list {
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .about-us-new-page .advantages-block .single-advantage {
    width: calc(50% - 15px);
    margin: 0 0 45px !important;
  }
  .about-us-new-page .advantages-block .advantage-image {
    margin: 0 auto 15px;
  }
  .about-us-new-page .why-us-block .why-us-image {
    width: 300px;
  }
  .about-us-new-page .why-us-block .why-us-content {
    width: calc(100% - 300px - 30px);
  }
  .about-us-new-page .why-us-block .why-us-title {
    font-size: 35px;
    line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  .about-us-new-page .about-us-common-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .about-us-new-page .hero-block .hero-block-content {
    min-height: 300px;
  }
  .about-us-new-page .hero-block .hero-list {
    margin-bottom: 15px;
  }
  .about-us-new-page .hero-block .single-points-column {
    width: 100%;
  }
  .about-us-new-page .hero-block .single-point {
    font-size: 16px;
    line-height: 30px;
    background-position: 0 7px;
  }
  .about-us-new-page .advantages-block .advantage-image {
    width: 200px;
    height: 200px;
  }
  .about-us-new-page .advantages-block .advantage-image img {
    width: 100px;
    height: 100px;
  }
  .about-us-new-page .why-us-block .why-us-image {
    display: none;
  }
  .about-us-new-page .why-us-block .why-us-content {
    width: 100%;
  }
  .about-us-new-page .why-us-block .why-us-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .about-us-new-page .why-us-block .why-us-list {
    margin-bottom: 15px;
  }
  .about-us-new-page .why-us-block .why-us-point {
    margin-bottom: 0;
    line-height: 30px;
    font-size: 16px;
    background-position: 0 7px;
  }
}
@media screen and (max-width: 500px) {
  .about-us-new-page .advantages-block .single-advantage {
    width: 100%;
  }
  .about-us-new-page .advantages-block .advantages-common-title {
    margin-bottom: 30px;
  }
}
#wheelsbook #bookingEngine {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  margin: 0 auto;
  max-width: 1410px;
  padding: 0 30px;
}
#wheelsbook #wheelsbookingEnginesearch, #wheelsbook #BookingSearch {
  width: 100%;
  padding: 0 0 45px;
}
#wheelsbook #wheelsbookingEnginesearch:before, #wheelsbook #BookingSearch:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #f0801b;
}
#wheelsbook #WheelsBookingEngineWrapper {
  background-color: transparent;
}
#wheelsbook #WheelsBookingEngineWrapper .wheelsprogressIndicator > .wheelsprogressindicatorspinner {
  margin: 60px auto;
}
#wheelsbook #wbeFiltersMenu {
  width: 255px;
  float: none;
}
#wheelsbook #responseResults {
  width: calc(100% - 255px - 35px);
}
#wheelsbook #BookingConfirmation {
  padding: 60px 0 !important;
  margin-top: 0 !important;
  height: auto !important;
}

@media screen and (max-width: 1366px) {
  #wheelsbook #bookingEngine {
    max-width: 1380px;
    padding: 0 15px;
  }
  #wheelsbook #wheelsbookingEnginesearch, #wheelsbook #BookingSearch {
    padding: 0 0 30px;
  }
  #wheelsbook #BookingConfirmation {
    padding: 30px 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  #wheelsbook #wbeFiltersMenu {
    width: 100%;
  }
  #wheelsbook #responseResults {
    width: 100%;
  }
}
#wheelsbook {
  margin: 0 !important;
}
#wheelsbook .navigation-bar {
  padding: 0 15px 45px;
  background-color: #f0801b;
}
#wheelsbook .navigation-bar .bookedli, #wheelsbook .navigation-bar .webBackToHomeContainer {
  margin-bottom: 0;
}
#wheelsbook .navigation-bar .bookedli:hover, #wheelsbook .navigation-bar .webBackToHomeContainer:hover {
  background-color: transparent !important;
}
#wheelsbook .navigation-bar #selection3, #wheelsbook .navigation-bar #selection4 {
  justify-content: center;
  -webkit-justify-content: center;
}
#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-size: 19px;
  color: #000000 !important;
  font-family: RobotoBold;
}
#wheelsbook .navigation-bar #selection3 .wbeButton, #wheelsbook .navigation-bar #selection4 .wbeButton {
  padding: 0 !important;
  background: transparent !important;
  margin-left: 12px !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 {
  font-size: 19px;
  color: #fff;
  text-decoration: underline;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer {
  width: calc(50% - 5px);
  flex-basis: calc(50% - 5px);
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .WebString_Text_PickupLocation {
  font-size: 17px;
  font-family: RobotoBold;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck {
  padding: 0;
  margin-bottom: 10px;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck .wbeInputElementCheck {
  margin: 0;
  height: 24px;
  width: 24px;
  background: #fff;
  border: 2px solid #fff;
  color: #fff;
  margin-right: 8px;
  border-radius: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck .wbeInputElementCheck:checked {
  background-color: #f0801b;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck .WebString_Text_Diffdropoff {
  margin-bottom: 0;
  line-height: 25px;
  color: #fff;
  font-family: RobotoRegular;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 0;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer .wbeInputIcon {
  border-radius: 5px 0 0 5px;
  padding: 21px 18px;
  background-color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer .wbeInputIcon i {
  font-size: 21px;
  object-fit: contain;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input {
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  padding: 0;
  height: auto;
  color: #3a3a3a;
  font-size: 16px;
  font-family: RobotoRegular;
  padding-right: 18px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input::-webkit-input-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input::-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:-ms-input-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input::-webkit-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input::-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer input:-ms-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 {
  transform: translate(0, 58px);
  -webkit-transform: translate(0, 58px);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 1px 1px 5px 1px #f0801b;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults::-webkit-scrollbar, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults::-webkit-scrollbar, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults::-webkit-scrollbar {
  width: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults::-webkit-scrollbar-track, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults::-webkit-scrollbar-track, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults::-webkit-scrollbar-thumb, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults::-webkit-scrollbar-thumb, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult {
  background-color: #fff !important;
  height: 58px;
  transition: all 0.2s linear;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult:hover, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult:hover, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult:hover, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult:hover, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult:hover, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult:hover {
  background-color: #f0801b !important;
  color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult i, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult i, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult i, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult i, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult i, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult i {
  display: none;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .stationResult span, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults #locationResults .locResult span, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .stationResult span, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults2 #locationResults .locResult span, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .stationResult span, #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainer #wbeaddressResults3 #locationResults .locResult span {
  line-height: 58px;
  padding-left: 57px;
  font-size: 15px;
  max-width: none;
}
#wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer:not(.wbeaddressOptionContainerActive) .wbeInputContainer {
  width: calc(200% + 10px);
}
#wheelsbook #wheelsbookingEnginesearch .wbeAddressSection {
  width: calc(50% - 20px);
  flex-basis: calc(50% - 20px);
  margin-right: 40px;
  margin-bottom: 25px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper {
  flex-basis: calc(25% - 10px);
  width: calc(25% - 10px);
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .WebString_Text_PickupDate, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .WebString_Text_DropoffDate {
  font-size: 17px;
  font-family: RobotoBold;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker1Container .wbeInputContainer:nth-of-type(1) .wbeInputIcon, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker2Container .wbeInputContainer:nth-of-type(1) .wbeInputIcon {
  border-radius: 5px 0 0 5px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker1Container .wbeInputContainer:nth-of-type(2) select, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker2Container .wbeInputContainer:nth-of-type(2) select {
  border-radius: 0 5px 5px 0;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker1Container {
  margin-right: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker2Container {
  margin-left: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer {
  width: 50%;
  margin-bottom: 25px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select {
  background-color: #fff;
  padding: 0;
  height: auto;
  color: #3a3a3a;
  font-size: 16px;
  font-family: RobotoRegular;
  text-align: left;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input::-webkit-input-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-input-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input::-moz-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:-moz-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:-ms-input-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:-ms-input-placeholder {
  font-size: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input::-webkit-input-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input::-moz-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:-moz-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer input:-ms-input-placeholder, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select:-ms-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select {
  min-height: 57px;
  background-color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  background-image: url("../../images/dropdown.svg");
  background-repeat: no-repeat;
  background-size: 15px 12px;
  background-position: calc(100% - 18px) 50%;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-scrollbar {
  width: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select::-ms-expand {
  display: none;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select option {
  background-color: #fff !important;
  transition: all 0.2s linear;
  line-height: 58px !important;
  height: 58px;
  font-size: 15px;
  padding: 15px;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select option:hover {
  background-color: #f0801b !important;
  color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer select option:checked {
  background-color: #f0801b !important;
  color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputIcon {
  padding: 21px 18px;
  background-color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputIcon i {
  font-size: 21px;
  object-fit: contain;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer {
  padding-right: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer {
  padding-left: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer {
  flex-basis: calc(25% - 10px);
  width: calc(25% - 10px);
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputContainer, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputContainer {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 5px;
  overflow: hidden;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer .WebString_Text_DriverAge, #wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer .WebString_Text_Coupon, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer .WebString_Text_DriverAge, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer .WebString_Text_Coupon {
  font-family: RobotoRegular;
  font-size: 15px;
  color: #3a3a3a;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputIcon, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputIcon {
  background-color: #fff;
  padding: 0;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputIcon i, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputIcon i {
  padding: 21px 18px;
  font-size: 21px;
  object-fit: contain;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer #selection2b, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer #selection2b {
  padding: 0 0 0 5px;
  background-color: #fff;
  min-height: 58px;
  font-family: RobotoBold;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../../images/dropdown.svg");
  background-repeat: no-repeat;
  background-size: 15px 12px;
  background-position: calc(100% - 18px) 50%;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer #selection2b::-webkit-scrollbar, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer #selection2b::-webkit-scrollbar {
  width: 5px;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer #selection2b::-webkit-scrollbar-track, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer #selection2b::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer #selection2b::-webkit-scrollbar-thumb, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer #selection2b::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer #selection2b::-ms-expand, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer #selection2b::-ms-expand {
  display: none;
}
#wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer .wbeInputElement, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer .wbeInputElement {
  padding: 0 5px 0 5px;
  background-color: #fff;
  min-height: 58px;
  font-family: RobotoBold;
}
#wheelsbook #wheelsbookingEnginesearch .searchClick {
  width: calc(50% - 20px);
  flex-basis: calc(50% - 20px);
  margin-left: 40px;
  margin-bottom: 25px;
  font-size: 21px;
  font-family: RobotoBold;
  padding: 10px 15px;
  border: 2px solid #fff;
  color: #fff;
  background-color: #464646;
  box-shadow: 0 7px 35px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
#wheelsbook #wheelsbookingEnginesearch .searchClick:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
#wheelsbook #wheelsbookingEnginesearch .searchClick:hover i {
  -webkit-animation: bounce10 0.5s linear infinite;
  animation: bounce10 0.5s linear infinite;
}
#wheelsbook #wheelsbookingEnginesearch .searchClick i {
  margin-right: 5px;
}
#wheelsbook #BookingSearch {
  box-shadow: none;
}
#wheelsbook #BookingSearch .WebString_Text_FindBooking {
  font-size: 23px;
  color: #fff !important;
  font-family: RobotoBold;
  padding: 0 0 15px;
  margin-top: -15px;
  position: relative;
}
#wheelsbook #BookingSearch .wbeInputContainer .wbeInputIcon {
  padding: 23px 18px 19px 18px;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
  width: 57px;
}
#wheelsbook #BookingSearch .wbeInputContainer .wbeInputIcon i {
  font-size: 21px;
  object-fit: contain;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb {
  border-radius: 0 5px 5px 0;
  background-color: #fff;
  padding: 0;
  height: auto;
  color: #3a3a3a;
  font-size: 16px;
  font-family: RobotoRegular;
  text-align: left;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail::-webkit-input-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb::-webkit-input-placeholder {
  font-size: 15px;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail::-moz-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb::-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail:-moz-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb:-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail:-ms-input-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb:-ms-input-placeholder {
  font-size: 15px;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail::-webkit-input-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb::-webkit-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail::-moz-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb::-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail:-moz-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb:-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingEmail:-ms-input-placeholder, #wheelsbook #BookingSearch .wbeInputContainer #wbefindbookingNumb:-ms-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #BookingSearch .wbeInputContainer .noValue {
  border: 2px solid red !important;
}
#wheelsbook #BookingSearch .wbeBookedButtonContainer .wbeBookedButton {
  font-size: 21px;
  font-family: RobotoBold;
  padding: 10px 15px;
  border: 2px solid #fff;
  color: #fff;
  background-color: #464646;
  box-shadow: 0 7px 35px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
#wheelsbook #BookingSearch .wbeBookedButtonContainer .wbeBookedButton:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

@media screen and (max-width: 1366px) {
  #wheelsbook .navigation-bar {
    padding: 0 15px 30px;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer {
    width: calc(50% - 7.5px);
    flex-basis: calc(50% - 7.5px);
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeAddressSection {
    width: 100%;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer:not(.wbeaddressOptionContainerActive) .wbeInputContainer {
    width: calc(200% + 15px);
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper {
    flex-basis: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker1Container {
    margin-right: 0;
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker2Container {
    margin-left: 0;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer {
    padding-right: 0;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer {
    padding-left: 0;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer {
    flex-basis: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
  }
  #wheelsbook #wheelsbookingEnginesearch .searchClick {
    width: 100%;
    flex-basis: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  #wheelsbook .navigation-bar #selection3 {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  #wheelsbook .navigation-bar #selection3 .WebString_Text_alreadybook {
    width: 100%;
    margin: 0 0 10px !important;
    text-align: center;
  }
  #wheelsbook .navigation-bar #selection3 .wbeButton {
    width: 100%;
    margin: 0 !important;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer:not(.wbeaddressOptionContainerActive) .wbeInputContainer {
    width: 100%;
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper {
    flex-basis: 100%;
    width: 100%;
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper .wbeInputContainer {
    width: 100%;
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker1Container .wbeInputContainer:nth-of-type(1) input, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker2Container .wbeInputContainer:nth-of-type(1) input {
    border-radius: 0 5px 5px 0;
  }
  #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker1Container .wbeInputContainer:nth-of-type(2) .wbeInputIcon, #wheelsbook #wheelsbookingEnginesearch .calendarWrapper #wbedatepicker2Container .wbeInputContainer:nth-of-type(2) .wbeInputIcon {
    border-radius: 5px 0 0 5px;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeDriverAgeContainer, #wheelsbook #wheelsbookingEnginesearch .wbeCouponContainer {
    flex-basis: 100%;
    width: 100%;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer {
    width: 100%;
    flex-basis: 100%;
  }
  #wheelsbook #wheelsbookingEnginesearch .wbeaddressOptionContainer .wbeInputContainerCheck {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    margin-top: 10px;
  }
}
#wheelsbook #wbeFiltersMenu {
  margin: 60px 0;
  background-color: #f0801b;
  padding: 25px;
}
#wheelsbook #wbeFiltersMenu > h4 {
  color: #f2f2f1;
  font-size: 16px;
  font-family: RobotoRegular;
  position: relative;
}
#wheelsbook #wbeFiltersMenu .wbeFiltersMenuHeading {
  width: 100%;
  padding: 5px 0;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 10px;
}
#wheelsbook #wbeFiltersMenu .wbeFiltersMenuHeading span {
  font-size: 24px;
  font-family: RobotoBold;
  color: #f2f2f1;
}
#wheelsbook #wbeFiltersMenu .wbeFiltersMenuHeading i {
  color: #f2f2f1;
  padding-top: 10px;
  position: relative;
  top: -2px;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > .filterButton {
  pointer-events: none;
  cursor: default;
  margin-bottom: 10px;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > .filterButton i {
  display: none;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > .filterButton span {
  color: #f2f2f1;
  font-size: 17px;
  font-family: RobotoMedium;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > div {
  border-bottom: 1px solid #fff;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer > div:nth-last-of-type(1) {
  border-bottom: none;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck {
  cursor: pointer;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #fff;
  width: 20px;
  height: 20px;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input:before {
  content: "✔";
  height: auto;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 14px;
  text-align: center;
  line-height: normal;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input:checked {
  background-color: #f0801b;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck input:checked:before {
  visibility: visible;
  opacity: 1;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck label {
  color: #f2f2f1;
  font-size: 17px;
  font-family: RobotoRegular;
  margin-bottom: 8px;
  line-height: normal;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck:hover input {
  background-color: #f0801b;
}
#wheelsbook #wbeFiltersMenu #FiltersContainer .wbeInputContainerCheck:hover input:before {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1366px) {
  #wheelsbook #wbeFiltersMenu {
    margin: 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  #wheelsbook #wbeFiltersMenu {
    padding: 15px;
    margin: 15px 0;
  }
  #wheelsbook #wbeFiltersMenu .wbeFiltersMenuHeading {
    margin-bottom: 0;
  }
  #wheelsbook #wbeFiltersMenu .wbeFiltersMenuHeading i {
    float: none;
  }
}
#wheelsbook #responseResults {
  margin: 0 0 0 auto;
}
#wheelsbook #responseResults .cardata {
  box-shadow: none;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  float: none;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
#wheelsbook #responseResults .cardata:nth-of-type(1) {
  margin-top: 60px;
}
#wheelsbook #responseResults .cardata .wbeDealImageContainer {
  float: none;
  width: 250px;
  max-width: 250px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  transform: none;
  margin-right: 60px;
}
#wheelsbook #responseResults .cardata .wbeDealImageContainer img {
  max-width: 100%;
}
#wheelsbook #responseResults .cardata .wbeDealInfoContainer {
  padding: 0;
  width: calc(100% - 250px - 228px - 60px);
  -ms-flex-preferred-size: calc(100% - 250px - 228px - 60px);
  flex-basis: calc(100% - 250px - 228px - 60px);
  max-width: calc(100% - 250px - 228px - 60px);
  transform: none;
  padding-right: 60px;
}
#wheelsbook #responseResults .cardata .wbeDealBook {
  padding: 0;
  margin: 0;
  width: 228px;
  -ms-flex-preferred-size: 228px;
  flex-basis: 228px;
  max-width: 228px;
  transform: none;
  text-align: right;
}
#wheelsbook #responseResults .cardata .wbeDealBook .wbeDaylyPrice {
  padding-bottom: 25px;
}
#wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook {
  width: auto;
  background-color: #f0801b;
  color: #fff;
  border: 2px solid #f0801b;
  display: inline-block;
  text-transform: uppercase;
  padding: 13px 50px;
  text-align: center;
  font-size: 16px;
  font-family: RobotoMedium;
  border-radius: 5px;
}
#wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook:hover {
  color: #f0801b;
  background-color: #fff;
  border: 2px solid #818181;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}
#wheelsbook #responseResults .warningIndicator {
  margin-top: 30px;
}

@media screen and (max-width: 1600px) {
  #wheelsbook #responseResults .wbeDealBook .DealInfoBook {
    padding: 11px 35px;
  }
}
@media screen and (max-width: 1366px) {
  #wheelsbook #responseResults .cardata:nth-of-type(1) {
    margin-top: 30px;
  }
  #wheelsbook #responseResults .cardata:nth-last-of-type(1) {
    margin-bottom: 30px;
  }
  #wheelsbook #responseResults .cardata .wbeDealImageContainer {
    margin-right: 30px;
    width: 220px;
  }
  #wheelsbook #responseResults .cardata .wbeDealInfoContainer {
    width: calc(100% - 220px - 180px - 30px);
    -ms-flex-preferred-size: calc(100% - 220px - 180px - 30px);
    flex-basis: calc(100% - 220px - 180px - 30px);
    max-width: calc(100% - 220px - 180px - 30px);
    padding-right: 30px;
  }
  #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: 25px;
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  #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-right: 30px;
  }
}
@media screen and (max-width: 600px) {
  #wheelsbook #responseResults .cardata .wbeDealInfoContainer {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-right: 0;
  }
  #wheelsbook #responseResults .cardata .wbeDealBook {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
  }
  #wheelsbook #responseResults .cardata .wbeDealBook .DealInfoBook {
    margin: 0;
  }
}
#wheelsbook #dealOptions {
  margin: 60px 0;
  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 - 60px);
  flex-basis: calc(100% - 500px - 60px);
  padding: 0;
}
#wheelsbook #dealOptions #RightSide {
  width: 500px;
  flex-basis: 500px;
  padding: 0;
  border: 1px var(--shadow-color) solid;
}
#wheelsbook #dealOptions #RightSide ~ div {
  display: none;
}
#wheelsbook #dealOptions .wbeDealOptionsGeneralInfoContainer {
  border-left: none;
}
#wheelsbook #dealOptions .wbeDealOptionsGeneralInfoContainer > h5 {
  background-color: #f0801b;
  color: #fff;
  padding: 12px 15px;
  font-size: 24px;
  font-family: RobotoBold;
}
#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;
  background-color: #f0801b !important;
  color: #fff !important;
  border: 2px solid #f0801b !important;
  text-transform: uppercase;
  padding: 6px 53px;
  text-align: center;
  font-size: 16px !important;
  font-family: RobotoMedium;
  border-radius: 5px;
}
#wheelsbook #dealOptions #next1:hover, #wheelsbook #dealOptions #next2:hover {
  color: #f0801b !important;
  background-color: #fff !important;
  border: 2px solid #818181 !important;
  transform: translateY(-5px) !important;
  -webkit-transform: translateY(-5px) !important;
}
#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: RobotoBold;
  background-color: #f0801b !important;
  border: 2px solid #f0801b !important;
  border-radius: 5px;
  float: none !important;
}
#wheelsbook #dealOptions .wbeNonInclusiveActions .wbeOptionBtns:hover {
  color: #f0801b !important;
  background-color: #fff !important;
  border: 2px solid #818181 !important;
}
#wheelsbook #dealOptions #DealPrice {
  margin: 0 0 10px !important;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #d7d7d7;
  font-size: 15px;
  color: #3a3a3a;
  padding: 18px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement::-webkit-input-placeholder {
  font-size: 15px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement::-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement:-moz-placeholder {
  font-size: 15px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement:-ms-input-placeholder {
  font-size: 15px;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement::-webkit-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement::-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement:-moz-placeholder {
  color: #3a3a3a;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement:-ms-input-placeholder {
  color: #3a3a3a;
}
#wheelsbook #dealOptions #clientInformation .wbeInputElement:invalid {
  border: 1px solid red;
}
#wheelsbook #dealOptions #clientInformation select.wbeInputElement {
  background-image: url("../../images/dd-orange-reserve.svg");
  background-repeat: no-repeat;
  background-size: 15px 12px;
  background-position: calc(100% - 24px) 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 18px 63px 18px 18px;
}
#wheelsbook #dealOptions #clientInformation select.wbeInputElement::-ms-expand {
  display: none;
}
#wheelsbook #dealOptions #clientInformation textarea.wbeInputElement {
  resize: none;
}
#wheelsbook #dealOptions #clientInformation textarea.wbeInputElement::-webkit-scrollbar {
  width: 5px;
}
#wheelsbook #dealOptions #clientInformation textarea.wbeInputElement::-webkit-scrollbar-track {
  background-color: #fff;
}
#wheelsbook #dealOptions #clientInformation textarea.wbeInputElement::-webkit-scrollbar-thumb {
  background-color: #f0801b;
}
#wheelsbook #dealOptions #clientInformation .calendar.beTranslateButtons {
  border-radius: 0;
}
#wheelsbook #dealOptions #clientInformation .calendar.beTranslateButtons:hover {
  background-color: #f0801b !important;
}
#wheelsbook #dealOptions .iti__flag-container {
  display: none !important;
}
#wheelsbook #dealOptions .wbeInputContainerCheck {
  cursor: pointer;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #d7d7d7;
  width: 20px;
  height: 20px;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input:before {
  content: "✔";
  height: auto;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 14px;
  text-align: center;
  line-height: normal;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input:checked {
  background-color: #f0801b;
  border: 1px solid #f0801b;
}
#wheelsbook #dealOptions .wbeInputContainerCheck input:checked:before {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1600px) {
  #wheelsbook #responseResults #dealOptions #next1, #wheelsbook #responseResults #dealOptions #next2 {
    padding: 6px 35px;
  }
}
@media screen and (max-width: 1366px) {
  #wheelsbook #dealOptions {
    margin: 30px 0;
  }
  #wheelsbook #dealOptions #LeftSide {
    width: calc(100% - 500px - 30px);
    flex-basis: calc(100% - 500px - 30px);
  }
}
@media screen and (max-width: 1024px) {
  #wheelsbook #dealOptions {
    margin: 30px 0;
  }
  #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 {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 15px !important;
  }
  #wheelsbook #dealOptions #DealPrice {
    padding-right: 15px;
    width: auto !important;
    float: none !important;
    margin: 0 !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%;
  }
}

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