/* Custom CSS */

:root {
  /* Fonts */
  --font-regular:
    "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-medium:
    "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-bold:
    "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Colors */
  --color-background: #f7f7f7;
  --color-primary: #bf1816;
  --color-hover: #356f5f;
  --color-text: #111111;
}

body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

body.home .site-logo a img {
  filter: brightness(0) invert(1);
}

header.site-header.sticky .site-logo a img {
  filter: none;
}

footer.site-footer .img-footer img {
  filter: brightness(0) invert(1);
}

.site-logo img {
  max-height: 80px;
  height: auto;
  width: auto;
}

header .site-logo a.custom-logo-link {
  display: block;
}

header .site-logo a.custom-logo-link img {
  height: 60px;
  object-fit: contain;
  object-position: left;
}

body {
  margin: 0;
  background: #f7f7f7;
}

.container {
  width: 1440px;
  margin: auto;
  max-width: 100%;
  padding: 0 16px;
}

header.site-header {
  padding: 15px 0;
  z-index: 99;
  width: 100%;
  position: relative;
}

/* Sticky state */
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* header.site-header.sticky .site-logo a img {
  height: 50px;
} */

header.site-header .site-logo a img {
  transition: transform 0.4s ease;
}

/* header.site-header.sticky .header-inner .menu ul a {
  font-size: 18px;
} */

header.site-header.sticky .header-inner .right-menu .account a span.icon {
  background: #bf1816;
}

header.site-header.sticky
  .header-inner
  .right-menu
  .account
  a
  span.icon
  svg
  path {
  fill: white;
  color: white;
}

/*  End Sticky state */

.single-car {
  margin-top: 50px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  width: 20%;
}

.header-inner .right-menu {
  width: 20%;
}

.header-inner .menu {
  width: 60%;
}

.header-inner .menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

body.home .header-inner .menu ul a {
  color: #fff;
}

header.site-header.sticky .header-inner .menu ul a {
  color: var(--color-text);
}

body:not(.home) .header-inner .menu ul li.current-menu-item a {
  color: #bf1816;
}

.header-inner .menu ul a {
  position: relative;
  text-decoration: none;
  font-size: 20px;
  color: var(--color-text);
  font-weight: 500;
  font-family: "Poppins";
}

.site-logo img {
  max-height: 80px;
}

.header-inner .menu ul a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  bottom: -8px;
  opacity: 0;
  transition: 300ms ease-out;
}

.header-inner .menu ul a:hover:before {
  transition: 300ms ease-in;
  opacity: 1;
}

.header-inner .right-menu .account a span.icon {
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text);
}

.header-inner .right-menu .account a span.icon svg {
  width: 25px;
  height: 25px;
}

.header-inner .right-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.first-section .wrapper {
  position: relative;
}

.first-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -97px;
}

.first-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.first-section .wrapper > div {
  position: relative;
  z-index: 2;
  padding-top: 95px;
}

.first-section .wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
}

.vrcdivsearchmodule {
  background: #fff;
  max-width: 1050px;
  border-radius: 20px !important;
  width: 100%;
  margin: auto;
}

.vrc-searchmod-section-categories {
  display: none;
}

.vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes {
  width: 90%;
  align-items: center;
}

.vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes > div {
  width: 45%;
  display: flex;
  align-items: center;
}

.vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes {
  margin-right: 0 !important;
}

.vrc-searchmod-wrap-horizontal .vrcsfentrycont > div > label,
.vrc-searchmod-wrap-horizontal .vrcsfentrycont > label,
.vrcdivsearch .vrcsfentrycont label {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 16px !important;
}

.vrc-searchmod-wrap-horizontal
  > form
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont {
  flex-direction: column;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  > div.return-wrapper
  > div:nth-child(2) {
  display: flex;
  flex-direction: row;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  border: 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  font-family: var(--font-medium) !important;
  color: var(--color-text) !important;
}

.select2-container--default .select2-selection--single {
  border: 0 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none !important;
}

.vrc-searchmod-wrap-horizontal
  form
  .vrcsfentrycont:first-child
  .vrcsfentryselect {
  border: 0 !important;
}

.time-flex {
  display: flex;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .vrcsfentrylabsel
  .vrcsfentrydate {
  padding: 0;
  border: 0;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .vrcsfentrylabsel
  .vrcsfentrydate
  i {
  display: none;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .vrcsfentrylabsel
  .vrcsfentrydate
  input {
  font-size: 18px;
  font-weight: 500;
  font-weight: 500;
  height: 30px !important;
}

.vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes > div > div {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  left: 0 !important;
}

.time-flex-2 {
  display: flex;
}

.vrc-searchmod-wrap-horizontal form .vrc-searchmod-section-sbmt {
  align-self: unset !important;
}

.vrc-searchmod-wrap-horizontal .vrcsfentrysubmit .vrcsearch {
  width: 48px !important;
  height: 48px;
  background: var(--color-primary);
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.vrc-searchmod-wrap-horizontal form .vrcsfentrycont {
  margin: 0 !important;
}

.vrc-searchmod-wrap-horizontal > form {
  align-items: center;
  gap: 5% !important;
}

.vrc-searchmod-wrap-horizontal > form .vrc-searchmod-section-datetimes {
  flex: 0 0 90%;
  width: 90%;
  gap: 10%;
  flex-wrap: wrap;
  position: relative;
}

.vrc-searchmod-wrap-horizontal
  > form
  .vrc-searchmod-section-sbmt
  .vrcsfentrycont {
  width: 100% !important;
}

.vrc-searchmod-wrap-horizontal > form .vrc-searchmod-section-sbmt {
  flex: 0 0 5%;
  width: 5%;
}

.vrc-searchmod-wrap-horizontal
  > form
  .vrc-searchmod-section-sbmt
  .vrcsfentrycont
  .vrcsfentrysubmit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .time-flex
  .vrcsfentrytime {
  position: relative;
}

.vrcdivsearch .return-wrapper .vrcsfentrycont label {
  margin-bottom: 0px;
  position: relative;
  top: -3px;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .time-flex
  .vrcsfentrytime:before {
  position: absolute;
  content: "Time";
  top: -26px;
  color: var(--color-primary);
  font-weight: 500;
  font-weight: 500;
  font-size: 16px;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  > div.pickup-wrapper {
  position: relative;
}

/* .vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  > div.pickup-wrapper:after {
  content: "";
  right: 4px;
  width: 2px;
  height: 49px;
  background: #ececec;
  position: absolute;
} */

.vrc-searchmod-wrap-horizontal .vrcsfentrycont > div {
  justify-content: space-between;
  align-items: center;
}

.vrc-searchmod-wrap-horizontal > form .vrc-searchmod-section-datetimes:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 100%;
  background: #999999;
  transform: translate(-50%, -50%);
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  > div.pickup-wrapper {
  position: relative;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .vrcsfentrylabsel
  .vrcsfentrydate
  input {
  letter-spacing: 0.5px;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .vrcsfentrytime
  .vrc-sf-time-container {
  gap: 3px;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  > div.return-wrapper {
  position: relative;
}

.vrcdivsearchmodule {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.first-section .wrapper {
  justify-content: center;
}

.bottom-hero {
  display: flex;
  justify-content: space-between;
  color: #fff;
  align-items: flex-end;
  z-index: 1;
  position: relative;
  bottom: 60px;
}

html .vrc-searchmod-wrap-horizontal form .vrcsfentrycont select {
  padding: 0 !important;
  border: 0 !important;
  font-size: 18px !important;
  appearance: none !important;
  background: unset !important;
  font-size: 18px;
  font-weight: 500;
  font-weight: 500;
  height: 30px !important;
}

.vrc-searchmod-wrap-horizontal
  .vrc-searchmod-section-datetimes
  .vrcsfentrycont
  .vrcsfentrytime
  .vrc-sf-time-container {
  align-items: center;
}

.section-book-search__reviews {
  background: #fff;
  display: flex;
  border-radius: 32px;
  align-items: center;
}

.section-book-search__reviews > a > div {
  display: flex;
  padding: 8px 12px 8px 8px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section-book-search__reviews > a {
  text-decoration: none;
}

.section-book-search__reviews div svg {
  width: 24px;
  height: 24px;
}

.section-book-search__reviews-google {
  display: flex;
}

.section-book-search__reviews-stars {
  color: #f6bc03;
}

.section-book-search__reviews-overall {
  color: var(--color-text);
  font-weight: 500;
  font-weight: 500;
}

.select2-results__option {
  font-size: 15px;
  font-weight: 500 !important;
  font-family: var(--font-medium);
}

.select2-container--default .select2-results > .select2-results__options {
  border: 0;
}

.select2-container--open .select2-dropdown {
  border: 0;
  padding: 10px;
  background: #fff;
  top: 30px;
  border-radius: 10px !important;
  width: 300px !important;
}

.ui-widget-header {
  color: var(--color-text) !important;
  font-family: var(--font-medium) !important;
}

.ui-widget-header .ui-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 16'%3E%3Cpath fill='%23var(--color-primary)' d='M8 15C7.71875 15 7.46875 14.9062 7.28125 14.7188L1.28125 8.71875C0.875 8.34375 0.875 7.6875 1.28125 7.3125L7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125C9.09375 1.6875 9.09375 2.34375 8.6875 2.71875L3.40625 8L8.6875 13.3125C9.09375 13.6875 9.09375 14.3438 8.6875 14.7188C8.5 14.9062 8.25 15 8 15Z'/%3E%3C/svg%3E")
    no-repeat center !important;
}

.ui-datepicker .ui-datepicker-next span {
  transform: rotate(180deg) !important;
}

.ui-datepicker.ui-widget td a {
  border: 0 !important;
  background: #0000000d !important;
  border-radius: 7px !important;
  font-size: 16px !important;
}

.ui-datepicker.ui-widget-content {
  margin-top: 30px;
}

.ui-datepicker.ui-widget-content .ui-state-default,
.ui-datepicker.ui-widget-content .ui-state-default,
.ui-datepicker.ui-widget-header .ui-state-default {
  font-size: 16px !important;
  font-weight: 500 !important;
  font-family: var(--font-medium) !important;
  color: var(--color-text);
}

.ui-widget-content {
  color: var(--color-text) !important;
  font-family: var(--font-medium) !important;
}

.ui-datepicker.ui-widget td {
  border: 0 !important;
}

.ui-datepicker.ui-widget td a.ui-state-default.ui-state-active {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.first-section .form-title {
  text-align: center;
  color: #fff;
  font-size: 64px;
  font-weight: 400;
  line-height: 72px;
}

.first-section .title-hero {
  text-align: center;
  color: white;
  font-weight: 400;
  margin-bottom: 40px;
}

.first-section .form-title {
  margin: 0;
}

.first-section .form-title b {
  display: block;
  font-weight: 600;
}

span.select2-dropdown.my-custom-dropdown {
  width: 90px !important;
}

.ui-datepicker.ui-widget > .ui-datepicker-header {
  font-weight: 400 !important;
}

.vrcdivsearchmodule .vrcsfentrycont .vrcsfentrydate input {
  border-radius: 0;
  padding: 0;
  height: 37px;
  float: left;
  margin: 0 10px 0 0;
  border: 0;
  box-shadow: none;
  flex: 1;
  background: #fff;
  font-family: var(--font-regular);
}

.third-section {
  padding: 100px 0;
}

.third-section .title {
  margin: 0;
  font-size: 60px;
  text-align: center;
  font-weight: 700;
  font-weight: 600;
  color: var(--color-primary);
}

.third-section .text {
  text-align: center;
  font-size: 18px;
  width: 800px;
  margin: 20px auto 0;
  font-weight: 400;
  max-width: 100%;
}

.image-box-wrapper {
  margin: 60px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.image-box-wrapper > div {
  width: 24%;
}

.image-box-wrapper > div img {
  width: 50%;
}

.image-box-wrapper .title-bottom {
  font-size: 22px;
  font-weight: 700;
  font-weight: 600;
  margin: 10px 0;
  min-height: 60px;
  color: var(--color-text);
}

.third-section .image-box-wrapper .text {
  text-align: left;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.blog-wrapper {
  display: flex;
  justify-content: space-between;
}

.blog-wrapper .swiper-wrapper {
  gap: 20px;
}

.blog-wrapper > div {
  width: 32%;
}

.blog-wrapper > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.blog-wrapper > div a {
  position: relative;
  display: block;
  height: 100%;
}

.blog-wrapper > div a h3 {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-size: 25px;
  padding: 0 20px;
  font-weight: 700;
  font-weight: 600;
  line-height: 40px;
}

.vrc-img-wrapper a {
  display: block;
  overflow: hidden;
}

.vrc-img-wrapper a img {
  transition: 300ms ease-in;
}

.vrc-img-wrapper a:hover img {
  transform: scale(1.1);
}

.blog-wrapper > div a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  border-radius: 25px;
}

.blog .blog-title {
  font-size: 40px;
  font-weight: 700;
  font-weight: 600;
}

.blog-wrapper > div a:hover img {
  transform: scale(1.1);
  transition: 300ms ease-in;
}

.blog-wrapper > div a {
  overflow: hidden;
  border-radius: 25px;
}

.blog-wrapper > div img {
  transition: 300ms ease-in;
  position: relative;
  z-index: -1;
}

.wrapper-third {
  display: flex;
}

.wrapper-third > div {
  width: 50%;
}

.wrapper-third > div > img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.wrapper-third > .right {
  background: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.wrapper-third > .right:before {
  background: var(--color-white);
  border-radius: 600px;
  content: "";
  height: 1200px;
  left: -75px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
  width: 1200px;
  z-index: 1;
}

.wrapper-third > .right {
  position: relative;
}

.wrapper-third {
  overflow: hidden;
}

.wrapper-third > .right * {
  z-index: 9;
  position: relative;
}

.third-section .title {
  font-size: 30px;
  color: var(--color-text) !important;
  z-index: 9;
  position: relative;
  text-align: left;
  font-weight: 400;
  font-weight: 600;
}

.third-section .title b {
  font-weight: 700;
  font-weight: 600;
}

.image-box-wrapper > div img {
  width: 40px;
}

.image-box-wrapper > div {
  width: 49%;
}

.image-box-wrapper .title-bottom {
  min-height: unset;
  margin: 0;
  font-size: 18px;
  color: #848484;
  font-weight: 400;
}

.image-box-wrapper > div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.wrapper-third {
  align-items: center;
}

.image-box-wrapper {
  row-gap: 18px;
  margin-top: 30px;
}

.wrapper-third {
  background: #fff;
  border-radius: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px hsla(0, 0%, 7%, 0.05);
}

.wrapper-third > div.left {
  height: 450px;
}

.image-box-wrapper > div .image {
  background: var(--color-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
}

.image-box-wrapper > div .image img {
  filter: brightness(0) invert(1);
  width: 25px;
}

.vrcmodcarsgridcont-items {
  display: block;
}

div#mod_vikrentcar_cars-2 {
  margin: 15px 0 0;
}

.heading {
  margin: 0;
}

.second-section .content {
  margin-top: 80px;
}

.second-section .subtitle .heading {
  color: #333;
  font-size: 18px;
  padding-top: 10px;
  font-weight: 400;
  text-transform: none;
}

.second-section .title .heading,
.blog .blog-title {
  font-weight: 600;
  font-size: 30px;
}

.blog {
  padding: 80px 0;
}

div#mod_vikrentcar_cars-2 > h3 {
  font-size: 50px;
  color: var(--color-text);
  font-weight: 600;
  font-weight: 700;
  margin-bottom: 20px;
}

.vrcmodcarsgridcont-items {
  overflow: unset !important;
}

.vrcmodcarsgridcont-item {
  padding: 0 !important;
}

body {
  overflow-x: hidden;
}

.vrcmodcarsgridboxdiv {
  border: 0 !important;
  position: relative;
  overflow: hidden;
  transform: unset !important;
  border-radius: 16px;
  box-shadow: 0px 0px 20px hsla(0, 0%, 7%, 0.05);
}

img.vrcmodcarsgridimg {
  width: 100%;
  position: relative;
  z-index: 9;
  width: 72%;
}

figure.vrcmodcarsgridcont-item {
  margin: 0;
  padding: 0;
  border: 0;
}

.unlimited-km {
  display: none;
}
.vrcmodcarsgridboxdiv:before {
  aspect-ratio: 1 / 1;
  background: linear-gradient(
    152deg,
    var(--color-neutral-40) 30%,
    var(--color-white)
  );
  border-radius: 1000px;
  content: "";
  left: -38%;
  pointer-events: none;
  position: absolute;
  top: -44%;
  transform: scale(1);
  transition: transform 0.5s;
  width: 115%;
  z-index: 1;
  left: -223px;
  top: -316px;
}

.vrcmodcarsgridboxdiv > a {
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: center;
  margin: 65px 0 20px 0;
}

.vrcmodcarsgrid-item_details {
  padding: 15px 30px !important;
  padding-bottom: 0 !important;
}

.vrcmodcarsgrid-item_title span {
  display: none;
}

.vrcmodcarsgrid-item-btm {
  border: 0 !important;
  padding: 0 !important;
}

figcaption.vrcmodcarsgrid-item_title {
  font-size: 20px;
  font-weight: 600;
  font-weight: 700;
  margin-bottom: 20px;
}

.vrccaratsdiv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 10px;
}

.vrccaratsdiv > div {
  /* width: 50%; */
  margin: 0 !important;
  margin-bottom: 5px !important;
}

.vrcmodcarsgrid-item_carat .vrccarcarat img {
  width: 25px;
}

span.vrc-carat-cont {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #848484;
  font-weight: 500;
  font-size: 16px !important;
}

.vrcmodcarsgridview {
  display: flex;
  padding: 0 30px;
  margin-bottom: 25px !important;
  margin-top: 0;
  justify-content: space-between;
  align-items: center;
}

span.vrcmodcarsgridcarcost {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  color: #848484;
}

span.vrcmodcarsgridcarcost .vrc_price,
span.vrcmodcarsgridcarcost .vrc_currency {
  color: var(--color-text);
  font-weight: 600;
  font-size: 24px;
}

.vrcmodcarsgrid-item-btm > div {
  display: block;
  width: 100%;
}

.vrcmodcarsgrid-item_carat .vrccarcarat:nth-child(n + 7) {
  display: none;
}

.vrcmodcarsgridview {
  margin-top: 22px !important;
}

.vrcmodcarsgridview a {
  padding: 0 !important;
  background: transparent !important;
}

.vrcmodcarsgridview a svg {
  width: 25px;
  height: 25px;
  fill: var(--color-primary);
}

.footer-top {
  margin-top: 80px;
}

.footer-in {
  display: flex;
  justify-content: space-between;
  background: var(--color-primary) 38;
  align-items: center;
  padding: 24px;
  border-radius: 20px;
}

.social-links {
  display: flex;
}

.social-links a {
  display: block;
}

.social-links svg {
  width: 30px;
  height: 30px;
}

.social-links a {
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links {
  gap: 15px;
}

.social-links svg {
  fill: var(--color-primary);
}

.main-foo-wrap {
  display: flex;
  margin-top: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  margin: 0 0 30px;
  font-weight: 700;
  font-weight: 600;
  font-size: 24px;
}

.footer-col {
  width: 33%;
}

.contacts svg {
  fill: #c0bcbc;
  width: 20px;
  height: 20px;
}

.contacts > div,
.contacts > div a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: #c0bcbc;
  text-decoration: none;
  font-weight: 500;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul a {
  color: #c0bcbc;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
  width: fit-content;
}

.footer-bottom {
  background-color: #1f1f1f;
}

.footer-bottom .left p {
  font-size: 14px;
}

.bottom-foo-wrap .right a {
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom .left a {
  color: #848484;
}

.main-foo-wrap .footer-col .img-footer img {
  width: 100%;
  height: 100%;
  max-width: 130px;
}

.footer-col h4 {
  color: white;
  font-weight: 400;
  font-size: 20px;
}

footer.site-footer .main-foo-wrap .footer-col:first-of-type h4 {
  display: none;
}

.footer-bottom p {
  font-size: 18px;
  font-weight: 400;
  color: #848484;
}

.footer-bottom p a {
  color: var(--color-text);
  text-decoration: underline;
}

.bottom-foo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-foo-wrap .right a {
  font-size: 14px;
  text-decoration: none;
  color: #848484;
}

.bottom-foo-wrap .right {
  display: flex;
  gap: 20px;
}

h3.vrc-main-title {
  display: none;
}

.vrcdivsearch.vrcdivsearch-noresults.test {
  padding: 0;
  box-sizing: border-box;
  background: #fff !important;
  padding: 20px !important;
  border: 0 !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px !important;
}

p.err {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

.search-page .container {
  padding: 0;
}

.vrcdivsearch-inner form {
  display: flex;
  justify-content: space-between;
}

.vrc-searchf-section-locations {
  display: none;
}

.vrcdivsearch .vrc-searchf-section-datetimes {
  width: 90%;
  justify-content: space-between;
}

.vrcdivsearch .vrc-searchf-section-datetimes > div {
  display: flex;
  justify-content: space-between;
  width: 48%;
}

.vrcdivsearch.vrcdivsearch-noresults.test {
  width: 100%;
  margin: auto;
}

.vrcdivsearch .vrc-searchf-section-sbmt {
  width: 9%;
}

.vrcdivsearch .vrcsfentrycont .vrcsfentryselect i {
  display: none;
}

.vrcdivsearch .vrc-searchf-section-datetimes .vrcsfentrycont {
  margin: 0;
}

.vrcdivsearch .vrc-searchf-section-datetimes .vrcsfentrycont .vrcsfentrylabsel {
  flex: unset;
  width: 45% !important;
  min-width: unset;
}

.vrcdivsearch .vrc-searchf-section-datetimes > div > div {
  width: 50%;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .pickup-section
  > div:nth-child(1) {
  width: 38% !important;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .pickup-section
  > div:nth-child(2) {
  width: 60%;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .pickup-section
  > div:nth-child(2)
  > div:nth-child(1) {
  width: 60% !important;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  > .return-section
  > div:nth-child(1) {
  width: 38% !important;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .return-section
  > div:nth-child(2) {
  width: 60%;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .return-section
  > div:nth-child(2)
  > div:nth-child(1) {
  width: 60% !important;
}

.vrcdivsearch .vrcsfentrycont {
  flex: unset !important;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .pickup-section
  > div:nth-child(2) {
  justify-content: space-between;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .return-section
  > div:nth-child(2) {
  justify-content: space-between;
}

.vrcdivsearch.vrcdivsearch-noresults.test .vrcsfentrylabsel .vrcsfentrydate {
  border-color: var(--color-text);
  position: relative;
  top: 4px;
}

.vrcdivsearch
  .vrc-searchf-section-datetimes
  .vrcsfentrycont
  .vrc-sf-time-container {
  position: relative;
  top: 4px;
}

.vrcdivsearch.vrcdivsearch-noresults.test .vrcsfentrycont .vrctimesep {
  position: relative;
  left: -6px;
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit {
  width: 48px;
  height: 48px;
  position: relative;
  background: var(--color-primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit i {
  color: #fff;
  font-size: 22px;
}

.vrcdivsearch .vrc-searchf-section-sbmt {
  justify-content: flex-end;
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit {
  width: 48px;
  height: 48px;
  position: relative;
  background: var(--color-primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit i {
  color: #fff;
  font-size: 22px;
}

.vrcdivsearch .vrc-searchf-section-sbmt {
  justify-content: flex-end;
}

.vrcdivsearch .vrc-searchf-section-datetimes .pickup-section {
  position: relative;
}

.vrcdivsearch .vrc-searchf-section-datetimes .pickup-section:before {
  content: "";
  width: 2px;
  height: 62px;
  position: absolute;
  right: -22px;
  background: #ececec;
  top: 0;
}

.custom-search .vrcdivsearch.test {
  background: #fff;
  border: 0;
  border-radius: 20px;
}

.custom-search {
  width: 67%;
  margin: auto;
}

.custom-search .vrcdivsearch .vrcsfentrylabsel .vrcsfentrydate {
  border: 0;
  font-size: 18px;
  font-weight: 400;
  padding: 0;
}

.custom-search .vrcdivsearch .vrcsfentrylabsel .vrcsfentrydate i {
  display: none;
}

.custom-search
  .vrcdivsearch
  .vrcsfentrycont
  .vrc-sf-time-container
  span:not(.vrctimesep) {
  flex: unset;
}

.custom-search .vrcsfentrycont .vrcsfentrydate .hasDatepicker {
  font-size: 18px;
}

.our-cars-wrapper .title {
  font-size: 30px;
  /* margin: 30px 0 100px; */
  font-weight: 600;
  position: relative;
  margin: 0 !important;
  padding: 60px 0;
  color: white !important;
}

/* .our-cars-wrapper h2.title:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #d7dadc;
  bottom: -40px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
} */

.our-cars-wrapper .title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: #448a75;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.our-cars-wrapper .vrc-search-results-block-grid {
  margin-top: 40px !important;
}

.second-section .title {
  margin: 0 !important;
}

.vrc-search-results-block.vrc-search-results-block-list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  width: 100%;
}

.vrc-car-result-left img {
  width: 80%;
  margin: 40px auto 0;
  display: block;
}

.vrc-car-result-left a img {
  transition: 300ms ease-in;
}

.vrc-car-result-left a:hover img {
  transform: scale(1.1);
}

body:not(.home) .header-inner .right-menu .account a span.icon {
  background: #bf1816;
}

body:not(.home) .header-inner .right-menu .account a span.icon svg path {
  fill: white;
}

.car_result {
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--color-neutral-10);
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow-20);
  padding: var(--spacing-50);
  transition: box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

h4.vrc-car-name span {
  display: none;
}

.car_result:before {
  aspect-ratio: 1 / 1;
  background: linear-gradient(
    152deg,
    var(--color-neutral-40) 30%,
    var(--color-white)
  );
  border-radius: 1000px;
  content: "";
  left: -38%;
  pointer-events: none;
  position: absolute;
  top: -44%;
  transform: scale(1);
  transition: transform 0.5s;
  width: 115%;
  z-index: 1;
  left: -150px;
  top: -230px;
}

.vrc-car-result-left {
  position: relative;
  z-index: 2;
}

.vrc-car-result-right {
  z-index: 2;
}

h4.vrc-car-name a {
  font-size: 20px;
  font-weight: 700;
  font-weight: 600;
  color: var(--color-text);
}

.vrc-car-result-inner .vrc-car-category {
  display: none;
}

.vrc-car-result-description {
  display: none;
}

.vrc-car-lastblock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px !important;
}

.vrc-carat-cont img {
  width: 20px;
  height: 20px;
}

.vrc-car-result-inner {
  min-height: unset !important;
  padding-bottom: 0;
  flex: unset;
}

.vrc-car-result-right {
  flex: unset;
}

.vrccaratsdiv .vrccarcarat:nth-child(n + 5) {
  display: none;
}

span.vrclistgoon {
  margin: 0 !important;
}

.vrclistgoon a,
.vrclistgoon a:visited,
.vrclistgoon a:link,
.vrclistgoon a:active,
.vrcconfnumbsubm input {
  margin: 0;
}

.vrc-car-lastblock span.car_cost {
  color: #848484;
  font-size: 18px;
  font-weight: 400;
}

.vrc-car-lastblock span.car_cost .vrc_price {
  font-size: 24px;
  color: var(--color-text);
  font-weight: 600;
}

.vrclistgoon a,
.vrclistgoon a:visited,
.vrclistgoon a:link,
.vrclistgoon a:active,
.vrcconfnumbsubm input {
  background: transparent;
  padding: 0;
}

.vrc-car-bookingbtn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.vrc-expl:before,
.vrc-expl:after {
  display: none;
}

footer.site-footer {
  padding: 19px 0 0px;
  background: var(--color-text);
}

.accordion__indicator {
  background-color: var(--color-brand-10);
  border-radius: var(--border-radius-20);
  height: 32px;
  position: absolute;
  right: 10px;
  top: calc(50% - 16px);
  width: 32px;
}

.accordion__indicator:after,
.accordion__indicator:before {
  background-color: var(--color-brand-60);
  content: "";
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.accordion__indicator:before {
  height: 10px;
  left: 16px;
  margin-left: -1px;
  top: 11px;
  width: 2px;
}

.accordion__indicator:after {
  height: 2px;
  left: 11px;
  margin-top: -1px;
  opacity: 1;
  top: 16px;
  width: 10px;
}

.accordion__indicator.-open:after {
  opacity: 0;
  transform: rotate(180deg);
}

.accordion__indicator.-open:before {
  transform: rotate(90deg);
}

.single-post article {
  width: 1000px;
  margin: auto;
  padding: 0 15px;
}

.single-post article img {
  width: 100%;
  object-fit: cover;
}

.vrcstepsbarcont {
  margin-top: 50px;
}

.vrcstepsbarcont .vrc-stepbar {
  border: 0;
  border-radius: 10px;
}

.vrcstepsbarcont .vrc-stepbar li:last-of-type:after,
.vrcstepsbarcont .vrc-stepbar li:last-of-type:before {
  display: none;
}

.vrcstepsbarcont .vrc-stepbar li a {
  font-size: 16px;
  font-weight: 400;
  color: white !important;
}

.vrcstepsbarcont .vrc-stepbar > li > * {
  font-size: 16px;
  color: var(--color-text);
}

.vrc-itinerary-summary .vrc-itinerary-pickup {
  border: 0;
}

.vrc-itinerary-summary {
  border: 0;
  background: #fff;
  border-radius: 10px;
}

.vrc-itinerary-summary i {
  color: var(--color-primary);
}

.vrc-itinerary-duration {
  color: var(--color-text);
}

.wrap.plugin-container p.vrcarsfound {
  margin-top: 70px;
  text-align: center;
  font-size: 30px;
  color: #468a75;
  font-weight: 600;
  border: 0;
}

.vrc-car-result-dailycost {
  display: none;
}

.vrc-car-result-characteristics .vrccarcarat span {
  font-size: 16px;
}

input.btn.booknow.vrc-pref-color-btn {
  margin: 0;
}

html .vrc-goback-block a {
  padding: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-weight: 600;
  text-decoration: underline !important;
}

.vrc-car-lastblock span.car_cost .vrc_currency {
  color: var(--color-text);
}

input.btn.booknow.vrc-pref-color-btn {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  padding: 0;
  opacity: 0;
}

.single-car h4.vrc-car-name {
  margin: 0;
  font-size: 45px;

  line-height: 45px;
}

.vrc-cdetails-cinfo {
  display: block;
}

span.vrcliststartfrom {
  color: #848484;
  font-size: 22px !important;
}

.vrc-cdetails-cost.vrc-pref-color-text .car_cost {
  color: #62a0bd;
  font-size: 30px;
}

.vrc-cdetails-cardesc {
  font-size: 20px;
}

.single-car .third-section .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.single-car .vrccaratsdiv .vrccarcarat:nth-child(n + 5) {
  display: block;
}

.single-car .third-section .top .title {
  font-size: 40px;

  line-height: 46px;
}

.single-car .vrc-car-carats {
  border: 0;
}

.single-car .third-section .top a {
  background: #62a0bd;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  display: block;
}

.single-car .third-section .bottom {
  display: flex;
  gap: 20px;
}

.single-car .third-section .bottom > div {
  width: 50%;
  margin: 0;
  padding: 0;
  border-radius: 10px;
}

.single-car .third-section .bottom .vrc-car-carats {
  background: #fff;
  padding: 20px;
}

.cardetails_moreimages {
  margin: 0;
  height: 100%;
  display: flex;
}

.single-car .third-section .bottom > div.image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.single-car .test.vrccaratsdiv {
  /* display: block; */
}

.single-car .vrccaratsdiv > div {
  /* width: 100%; */
  display: block !important;
}

.single-car span.vrc-carat-cont {
  float: unset;
  font-size: 19px;
  color: var(--color-text);
  line-height: 31px;
}

.single-car .vrc-carat-cont img {
  width: 30px;
  height: 30px;
}

.single-car span.vrc-carat-cont {
  font-size: 24px;
  line-height: 40px;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.single-car .vrc-cdetails-img > .cardetails_moreimages {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-car .vrc-cdetails-img > .cardetails_moreimages {
  height: auto;
}

.single-car .vrc-cdetails-img > .cardetails_moreimages a {
  display: block;
}

.single-car .vrc-cdetails-img > .cardetails_moreimages a img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.container .container {
  padding: 0;
}

.single-car .vrc-cardetails-book-wrap {
  font-size: 30px;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.single-car #form-car .vrcdivsearch {
  background: #fff;
  border: 0;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.single-car .vrcsfentrycont .vrcsfentrydate .hasDatepicker {
  font-size: 18px;
  font-family: var(--font-bold);
  font-weight: 500;
}

.single-car
  .vrcdivsearch
  .vrcsfentrycont
  .vrc-sf-time-container
  span:not(.vrctimesep) {
  flex: unset;
}

.single-car .fa-calendar-alt:before,
.single-car .fa-calendar-days:before {
  color: #62a0bd;
}

.single-car .vrcsfentrycont .vrctimesep {
  font-size: 16px;
}

.single-car .vrcdivsearch .vrcsfentrylabsel .vrcsfentrydate {
  border: 0;
  padding: 0;
}

.single-car .vrcdivsearch .vrcsfentrylabsel .vrcsfentrydate i {
  display: none;
}

.single-car
  .vrcdivsearch
  .vrc-searchf-section-datetimes
  .vrcsfentrycont
  .vrc-sf-time-container {
  top: -2px;
}

.single-car .vrcdivsearch .vrcsfentrycont label {
  font-size: 18px !important;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.single-car .vrc-searchf-section-locations {
  display: flex;
}

.single-car .vrcdivsearch .vrc-searchf-section-datetimes {
  width: 60%;
  justify-content: space-around;
}

.single-car .vrc-searchf-section-locations {
  width: 28%;
  justify-content: space-between;
}

.single-car .vrcdivsearch .vrc-searchf-section-datetimes .vrcsfentrycont {
  flex-wrap: nowrap;
}

.single-car .vrcdivsearch .vrc-searchf-section-sbmt {
  width: 45px;
}

.single-car .vrc-cardetails-book-wrap {
  margin-bottom: 100px;
}

.single-car
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 20px !important;
}

.single-car .vrcsfentrycont .vrcsfentrydate .hasDatepicker {
  font-size: 20px;
  position: relative;
  top: 2px;
}

.single-car .vrc-searchf-section-locations {
  position: relative;
}

.single-car .vrc-searchf-section-locations:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 72px;
  background: #e5e5e5;
  right: -36px;
}

.single-car
  .vrcdivsearch
  .vrc-searchf-section-datetimes
  .vrcsfentrycont:first-of-type {
  position: relative;
}

.single-car
  .vrcdivsearch
  .vrc-searchf-section-datetimes
  .vrcsfentrycont:first-of-type:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 72px;
  background: #e5e5e5;
  right: 37px;
}

.single-car .vrccaratsdiv > div {
  margin-bottom: 12px !important;
}

.vrc-car-bookingbtn form {
  position: relative;
  width: 24px;
  height: 24px;
}

.wrapper-header {
  display: flex;
  gap: 90px;
}

.wrapper-header > div {
  width: 50%;
}

.wrapper-header .title {
  font-size: 64px;
  font-weight: 600;
  line-height: 74px;
  margin-bottom: 40px;
}

.wrapper-header .content {
  font-size: 24px;
}

.wrapper-header img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.page-header .container {
  width: 1200px;
}

.page-header {
  padding: 40px 0 120px 0;
}

body:not(.home) header.site-header {
  background: #fff;
  box-shadow: 0px 0px 20px hsla(0, 0%, 7%, 0.05);
  border-bottom: 2px solid #bf1816;
}

.faq-wrapper .container {
  width: 1200px;
}

.faq-group .title {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.single-question .question {
  position: relative;
  padding: 16px 64px 16px 24px;
  margin: 0;
  display: flex;
  font-size: 20px;
  align-items: center;
  line-height: 32px;
}

.single-question {
  background-color: var(--color-white);
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow-20);
  margin-top: var(--spacing-50);
  position: relative;
  cursor: pointer;
}

.single-question .question-content {
  padding: 16px 24px;
  font-size: 18px;
  position: relative;
}

.single-question .question-content:before {
  background-color: var(--color-neutral-10);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.faq-wrapper .container .faq-group:not(:first-of-type) {
  margin-top: 80px;
}

.single-question .question-content p {
  margin: 0;
}

.contact-bottom .container {
  width: 1200px;
}

.bottom-contact-wrapper {
  padding: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-10);
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow-20);
  transition: box-shadow 0.25s;
}

.bottom-contact-wrapper .title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-form .input-group p {
  margin: 0;
}

.contact-form .input-group p label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

input {
  background-color: var(--color-neutral-10);
  border-radius: var(--border-radius-20);
  font-weight: 400;
  font-size: var(--font-size-20);
  height: 48px;
  padding: var(--spacing-40) var(--spacing-50);
  transition: background-color 0.2s ease-out;
  width: 100%;
  border: 0;
}

.contact-form .input-group p br {
  display: none;
}

.contact-form .input-group {
  margin-bottom: 25px;
}

.input-group.row-2 {
  display: flex;
  justify-content: space-between;
}

.input-group.row-2 > div {
  width: 48%;
}

textarea {
  background-color: var(--color-neutral-10);
  border-radius: var(--border-radius-20);
  font-weight: 400;
  font-size: var(--font-size-20);
  height: 148px;
  line-height: var(--line-height-30);
  padding: var(--spacing-40) var(--spacing-50);
  resize: vertical;
  transition: background-color 0.2s ease-out;
  width: 100%;
  border: 0;
}

.contact-form > p {
  margin: 0;
}

.contact-form > p input[type="submit"] {
  width: auto;
  padding-left: 35px;
  padding-right: 35px;
  background: var(--color-text);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.page-template-default main#primary .container {
  /* margin-top: 50px; */
  margin-bottom: 50px;
}

.page-template-default main#primary .container .page-title {
  font-size: 48px;
  font-weight: 600;
}

.page-template-default main#primary .container .page-content {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
}

.bottom-sections .about-section {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

.bottom-sections .about-section > div {
  width: 50%;
}

.bottom-sections .about-section > div .title {
  font-size: 36px;
}

.bottom-sections .about-section > div .content {
  font-size: 20px;
}

.bottom-sections .about-section:nth-child(2) {
  flex-direction: row-reverse;
}

.header-inner .menu ul li.current-menu-item a {
  font-weight: 600;
}

.page-template-about .bottom-sections .container {
  width: 1200px;
}

.bottom-sections .about-section:nth-child(3) {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px hsla(0, 0%, 7%, 0.05);
}

.bottom-sections .about-section > div img {
  border-radius: 20px;
  display: block;
  margin-right: auto;
}

.bottom-sections .about-section:nth-child(2) > div img {
  margin-left: auto;
  margin-right: 0;
}

button.header__hamburger {
  display: none;
}

.first-section-car {
  display: flex;
  gap: 90px;
  padding: 80px 0 0;
}

.first-section-car > div {
  width: 50%;
  margin: 0;
  float: unset;
}

.vrc-cdetails-cost.vrc-pref-color-text {
  border: 0;
  text-align: left;
  padding: 0;
  margin: 30px 0;
}

.vrc-showprc-options-wrap .vrc-showprc-option-row {
  width: 100%;
  padding: 20px 0;
}

.vrc-showprc-options-wrap .vrc-showprc-options-inner {
  flex-wrap: wrap;
}

.vrc-showprc-option-row .vrc-showprc-option-img img {
  width: 70px;
}

.vrc-showprc-option-row .vrc-showprc-option-cell-info {
  gap: 10px;
}

.vrc-showprc-options-wrap .vrc-showprc-title {
  margin-bottom: 0;
}

.vrc-showprc-options-wrap .vrc-showprc-option-row:not(:last-of-type) {
  border-bottom: 1px solid #828287;
}

.vrc-showprc-option-row .vrc-showprc-option-cell-descr {
  margin-top: 14px;
}

.price-box-item,
.price-box-info,
.price-box-item-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-box svg {
  width: 16px;
  fill: var(--color-text);
}

.no-included .price-box-item-text,
.no-included .icon svg {
  color: rgb(201, 201, 207);
  fill: rgb(201, 201, 207);
}

.price-box-info {
  position: relative;
}

.info-text {
  position: absolute;
  background-color: var(--color-text);
  color: white;
  visibility: hidden;
  opacity: 0;
  padding: 8px;
  width: 200px;
  right: calc(100% + 10px);
  border-radius: 8px;
  z-index: 1;
  font-size: 13px;
  line-height: 18px;
}

.info-text:after {
  content: "";
  top: 50%;
  right: 0;
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: inherit;
  visibility: visible;
  transform: rotate(45deg) translate3d(0, -50%, 0);
}

.custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 32%;
  border-radius: 12px;
  border: 1px solid rgb(201, 201, 207);
  padding: 15px;
  position: relative;
}

.custom-insurance .vrc-showprc-option-row .vrc-showprc-option-cell-price {
  margin-left: 0;
}

.custom-insurance .vrc-showprc-option-cell-price-sel {
  position: absolute;
  top: 15px;
  right: 15px;
}

.price-box-item {
  justify-content: space-between;
  margin-bottom: 4px;
}

.custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row > div {
  width: 100%;
}

.custom-insurance .vrc-showprc-option-row .vrc-showprc-option-cell-descr {
  margin: 30px 0;
}

.custom-insurance .vrc-showprc-option-row .vrc-showprc-option-name-descr {
  margin: 0;
}

.custom-insurance
  .vrc-showprc-option-row
  .vrc-showprc-option-cell-price
  .vrc-showprc-option-cell-price-descr {
  font-size: 26px;
}

.custom-insurance .vrc-showprc-option-cell-price-sel input {
  width: 20px;
  height: 20px;
  position: relative;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-insurance .vrc-showprc-option-cell-price-sel input:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid #448a75;
  background: #fff;
  border-radius: 50%;
  visibility: visible;
}

.custom-insurance .vrc-showprc-option-cell-price-sel input:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.custom-insurance .vrc-showprc-option-cell-price-sel input:checked:after {
  visibility: visible;
}

.custom-insurance .vrc-showprc-option-cell-price-sel input:checked:before {
  background: #448a75;
}
.custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row {
  flex: 0 0 31%;
  width: 31%;
}
.custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row.active {
  border-color: var(--color-text);
}

.second-option-prc .vrc-showprc-option-cell-price-sel input {
  width: 20px;
  height: 20px;
  position: relative;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.second-option-prc .vrc-showprc-option-cell-price-sel input:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid;
  visibility: visible;
}
.price-box-info:hover .info-text {
  visibility: visible;
  opacity: 1;
}
.custom-insurance
  .vrc-showprc-option-row
  .vrc-showprc-option-cell-price
  .vrc-showprc-option-cell-price-descr {
  color: #bf1816;
}

.custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row.active {
  border-color: #bf1816;
}
.second-option-prc .vrc-showprc-option-cell-price-sel input:after {
  content: "";
  width: 13px;
  height: 13px;
  background: #000;
}

.second-option-prc .vrc-showprc-option-cell-price-sel input:checked:after {
  visibility: visible;
}

.car_buttons_box > input.btn.booknow.vrc-pref-color-btn {
  background: #bf1816 !important;
  border: 0 !important;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row-cell-last input {
  width: 20px;
  height: 20px;
  position: relative;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -2px;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row-cell-last input:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid;
  visibility: visible;
  border-radius: 50%;
  background: #fff;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row-cell-last input:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.vrc-showprc-right.car_img_box img {
  width: 100%;
}

.car_buttons_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 40px;
}

.car_buttons_box .vrc-goback-block {
  margin: 0;
}

.continue-btn input.btn.booknow.vrc-pref-color-btn {
  position: unset;
  width: auto;
  height: auto;
  opacity: 1;
  padding: 10px 45px 10px 30px;
  font-size: 19px;
  font-weight: 500;
  border: 0;
  background: #bf1816;
  border-radius: 30px;
}

.continue-btn input.btn.booknow.vrc-pref-color-btn:hover {
  background: var(--color-hover);
}

.vrc-showprc-prices-inner
  .vrc-showprc-priceinfo
  span.vrc-showprc-pricecost
  span.vrc_currency {
  color: #548873;
}

.vrc-showprc-prices-inner
  .vrc-showprc-priceinfo
  span.vrc-showprc-pricecost
  span.vrc_price {
  color: #548873;
}

.continue-btn {
  position: relative;
}

.continue-btn svg {
  position: absolute;
  right: 11px;
  top: 14px;
  fill: #fff;
}

.vrc-showprc-container {
  justify-content: space-between;
}

.vrc-showprc-container > div {
  width: 49% !important;
  flex: 0 0 49%;
  margin: 0 !important;
  background: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 20px;
}

.vrc-showprc-container .vrc-showprc-right.car_img_box img {
  width: 100%;
}

.vrc-showprc-container .vrc-showprc-car-carats {
  border: 0;
  margin-top: 30px;
}

.vrc-showprc-container .vrccaratsdiv {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 30px;
}

.vrc-showprc-container .vrccaratsdiv > div {
  width: 24%;
  margin: 0 !important;
}

.vrc-showprc-container .vrc-car-carats .vrccarcarat span,
.vrc-showprc-container .vrc-showprc-car-carats .vrccarcarat span {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.vrc-showprc-container .vrc-showprc-car-carats .vrccarcarat span img {
  width: 40px;
}

.vrc-showprc-container span.vrhword {
  font-size: 24px;
}

.vrc-showprc-container .car_description_box {
  line-height: 27px;
  font-size: 18px;
  padding: 0 !important;
}

.vrc-showprc-container .vrc-showprc-left .vrc-cdetails-infocar {
  padding: 0;
}

.vrc-showprc-prices-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row:hover,
.vrc-showprc-prices-inner .vrc-showprc-price-row.vrc-showprc-price-selected {
  border-color: #bf1816;
}

.vrc-showprc-prices-wrap .vrc-showprc-title {
  font-size: 22px;
}

.vrc-showprc-options-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.vrc-showprc-options-wrap .vrc-showprc-title {
  font-size: 22px;
  margin-bottom: 30px;
}

.car_buttons_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.car_buttons_box .vrc-goback-block {
  margin: 0;
}

.vrc-showprc-options-wrap .vrc-showprc-options-inner {
  border-color: #bf1816;
  border: 0;
  padding: 0;
}

.vrc-showprc-options-inner {
  display: flex;
  justify-content: space-between;
}

.vrc-showprc-options-wrap .vrc-showprc-option-row {
  border: 0;
  align-items: center;
}

.vrc-showprc-option-row .vrc-showprc-option-cell-info {
  align-items: center;
}

.vrc-showprc-option-row .vrc-showprc-option-cell-price {
  align-items: center;
}

.checkout-page {
  padding: 70px 0;
  background: #f4f4f9;
}

.vrc-oconfirm-middlep {
  display: none;
}

.vrc-oconfirm-footer {
  margin-top: 30px;
  align-items: center;
}

.vrcinfocarcontainer > div {
  width: 45%;
  flex: 0 0 45%;
  background: #fff;
  border: 0;
  margin: 0;
  border-radius: 20px;
}

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

.vrc-itinerary-confirmation .vrc-itinerary-pickup:before,
.vrc-itinerary-confirmation .vrc-itinerary-dropoff::after {
  background: #bf1816;
  border-color: #bf1816;
}

.vrc-itinerary-confirmation .vrc-itinerary-pickup::after {
  border-color: #bf1816;
  left: -17px;
}

.vrc-itinerary-confirmation > div > div > i {
  color: #bf1816;
  font-size: 20px;
}

.vrc-itinerary-confirmation > div > div {
  align-items: center;
}

.vrc-oconfirm-summary-car-wrapper {
  background: #fff;
  border-color: #bf1816;
}

.vrc-oconfirm-summary-car-wrapper > div > div,
.vrc-oconfirm-summary-total-wrapper > div > div {
  color: var(--color-text);
}

.vrc-oconfirm-summary-total-wrapper {
  background: #fff;
  border-color: #bf1816;
}

.vrccustomfields {
  background: #fff;
  border: 0;
  border-radius: 20px;
}

.vrccustomfields .vrcseparatorcf {
  color: #bf1816;
}

.single-car .vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit:hover {
  background: none !important;
}

html
  .single-car
  .vrcdivsearch
  .vrc-searchf-section-sbmt
  .vrcsfentrysubmit
  input:hover {
  background: var(--color-hover) !important;
}

.vrc-showprc-container .car_moreimages {
  display: none;
}

.vrc-showprc-car-carats {
  display: none;
}

.vrc-showprc-prices-wrap {
  padding: 0;
  margin-top: 40px;
}

h4.vrc-showprc-title {
  display: none;
}

.vrc-showprc-container span.vrhword {
  font-weight: 600;
  font-size: 29px;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row:hover,
.vrc-showprc-prices-inner .vrc-showprc-price-row.vrc-showprc-price-selected {
  border-color: var(--color-primary);
}

.vrc-showprc-prices-inner .vrc-showprc-priceinfo .vrc-showprc-pricecost {
  font-weight: 600;
}

.vrc-showprc-prices-inner .vrc-showprc-priceinfo .vrc-showprc-pricecost small {
  font-weight: 400;
}

.option-first-section {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 50px;
}

.search-bar-full.option-page-full {
  padding: 30px 0 30px 0;
}

.vrc-showprc-container {
  width: 30%;
  background: var(--color-primary) 78;
  border-radius: 20px;
}

.vrc-showprc-options-wrap.custom-insurance {
  width: 68%;
  margin: 0;
  padding: 20px;
}

.vrc-showprc-container > div {
  width: 100% !important;
  flex: 0 0 100%;
  background: transparent;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row:first-child {
  border: 0;
}

h4.vrc-showprc-title {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 26px !important;
  font-weight: 600;
}

.vrc-showprc-prices-wrap h4 {
  display: none;
}

.vrc-showprc-prices-wrap {
  border-radius: 10px;
}

.vrc-showprc-prices-inner .vrc-showprc-price-row-cell-last {
  display: none;
}

.single-car .third-section {
  padding-bottom: 50px;
}

.vrc-showprc-options-wrap .vrc-showprc-option-row {
  width: 32%;
  border: 0 !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.vrc-showprc-options-wrap .vrc-showprc-options-inner {
  row-gap: 30px;
}

.vrc-showprc-option-row .vrc-showprc-option-img img {
  height: 40px;
  object-fit: contain;
}

.vrc-showprc-option-cell-price-sel {
  position: absolute;
  right: 0;
  top: 0;
}

.vrc-showprc-option-row .vrc-showprc-option-name-descr {
  position: relative;
}

.second-option-prc .vrc-showprc-option-cell-price-sel input:before {
  border-radius: 50%;
}

.second-option-prc .vrc-showprc-option-cell-price-sel input:after {
  border-radius: 50%;
  background: var(--color-primary);
}

.second-option-prc .vrc-showprc-option-cell-price-sel input:checked:before {
  border-color: var(--color-primary);
}

.custom-information {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-information > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-information > div:nth-child(2) {
  border-bottom: 2px solid rgba(0, 151, 220, 0.4);
  padding-bottom: 10px;
}

.custom-information > div i {
  color: var(--color-primary);
}

.bottom-sections .about-section > div img {
  width: 100%;
}

.page-template-about .wrapper-header .content {
  font-size: 20px;
}

.price-box-info svg {
  width: 20px;
  fill: var(--color-text);
}

.vrc-showprc-option-row .vrc-showprc-option-name {
  display: flex;
  gap: 10px;
}

html .custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row.active {
  border-color: red !important;
  border: 3px solid #448a75 !important;
}

span.vrclistgoon a:hover {
  background: var(--color-hover) !important;
}

.single-car .vrc-cardetails-book-wrap {
  font-size: 16px !important;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.vrc-showprc-option-row .vrc-showprc-option-cell-info {
  row-gap: 10px;
}

.checkout-page {
  background: transparent;
  padding: 0;
}

.vrcrentforlocs {
  width: 30% !important;
  flex: 0 0 30% !important;
  padding: 15px;
}

.vrcinfocarcontainer > form {
  width: 68%;
}

.vrccustomfields {
  margin: 0;
}

.vrcinfocarcontainer {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.vrc-oconfirm-summary-car-head-cell.vrc-oconfirm-summary-car-cell-net {
  display: none;
}

.vrc-oconfirm-summary-car-head-cell.vrc-oconfirm-summary-car-cell-tax {
  display: none;
}

.vrc-oconfirm-summary-car-wrapper {
  padding: 0;
  border: 0;
  padding: 0;
}

.vrc-oconfirm-summary-car-cell-net {
  display: none !important;
}

.vrc-oconfirm-summary-car-cell-tax {
  display: none !important;
}

.vrc-oconfirm-summary-car-cell-descr .vrc-oconfirm-carname {
  font-size: 16px;
}

.vrc-oconfirm-summary-car-wrapper > div > div,
.vrc-oconfirm-summary-total-wrapper > div > div {
  font-size: 16px;
  text-transform: none;
}

.vrc-oconfirm-summary-car-head {
  justify-content: space-between;
}

.vrc-oconfirm-summary-car-row {
  justify-content: space-between;
}

.checkout-notice {
  display: none;
}

.custom-input-check {
  display: none;
}

.vrc-oconfirm-summary-total-wrapper {
  border: 0;
  padding: 0;
  box-shadow: unset;
}

.vrc-oconfirm-summary-total-wrapper
  .vrc-oconfirm-summary-total-row
  .vrc-oconfirm-summary-car-cell-tot {
  width: 100%;
  color: #548873;
  font-weight: 600;
}

.vrc-oconfirm-summary-container {
  margin-bottom: 0;
}

.vrc-oconfirm-summary-total-wrapper .vrc-oconfirm-summary-total-row,
.vrc-oconfirm-summary-total-wrapper
  .vrc-oconfirm-summary-total-row
  .vrc-oconfirm-total-block {
  color: #548873;
  font-weight: 600;
}

.booknow {
  background: #548873;
}

.booknow:hover {
  background: var(--color-hover);
}

.vrc-oconfirm-summary-car-head {
  justify-content: space-between;
}

.vrcrentforlocs {
  background: var(--color-primary) 78 !important;
}

.vrcrentalfor .vrcrentalforone {
  font-weight: 600;
}

.vrc-oconfirm-summary-car-cell-tot {
  width: 100%;
}

.vrc-oconfirm-summary-car-row.vrc-oconfirm-summary-total-row {
  padding: 10px 0;
}

.vrc-oconfirm-footer input {
  position: unset !important;
  opacity: 1 !important;
  width: auto !important;
  padding: 15px 40px !important;
  height: auto !important;
  font-weight: 600;
  border-radius: 10px;
}

.custom-insurance.vrc-showprc-options-wrap .vrc-showprc-option-row > div {
  flex-direction: column;
  align-items: flex-start;
}

.vrc-customfield-label {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}

.vrc-customfield-label label {
  font-size: 16px;
  font-weight: 500;
}

.vrcdivcustomfield input[type="text"],
.vrcdivcustomfield input[type="tel"],
.vrcdivcustomfield select {
  background: #f7f7f7 !important;
  border-radius: 30px;
  height: 48px;
  border: 1px solid #d7dadc !important;
}

.vrctextarea {
  background: #f7f7f7 !important;
  border: 0;
  border-radius: 6px;
}

.vrc-searchsuggestions-list .vrc-searchsuggestions-solution {
  background: #fff;
  border: 0;
  padding: 20px 0;
  border-radius: 15px;
}

.vrc-searchsuggestions-solution-booknow a {
  display: block;
  background: var(--color-primary);
  width: max-content;
  margin: 20px auto;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 18px !important;
  font-weight: 600;
}

.vrc-searchsuggestions-inner h4 {
  font-weight: 600;
  font-size: 24px;
}

.custom-insurance .vrc-showprc-option-name {
  position: absolute;
  top: -54px;
  left: 46px;
}

.vrc-showprc-option-row .vrc-showprc-option-img img {
  object-position: left;
}

.custom-insurance .vrc-showprc-option-row .vrc-showprc-option-cell-descr {
  margin-top: 0;
  margin-bottom: 10px;
}

.vrc-oconfirm-summary-car-cell-descr .vrc-oconfirm-priceinfo {
  display: none;
}

.vrcdivcustomfield.vrc-oconfirm-cfield-entry-checkbox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
}

.vrcdivcustomfield.vrc-oconfirm-cfield-entry-checkbox .vrc-customfield-label {
  position: relative;
  top: 10px;
  margin-left: 13px;
  display: flex;
}

.no-included .price-box-info {
  opacity: 0.2;
}

.vrc-order-details-top-order > div,
.vrc-order-details-top-car {
  background: #fff;
  border: 0;
  margin: 0;
}

.vrc-order-details-top-order {
  gap: 20px;
}

.vrc-order-details-top-wrap .vrcvordudatatitle {
  color: var(--color-text);
  font-weight: 600;
}

/* span.vrc-order-details-info-val.vrc-order-details-info-val-upload-docs a {
  color: #61a1bd;
  text-decoration: none;
  font-weight: 600;
} */

.vrc-order-details-info-inner a {
  background: #548873 !important;
  border: 0 !important;
}

html .vrc-docsupload-container .vrc-oconfirm-footer input {
  background: #548873 !important;
  border: 0 !important;
}

.notice.is-dismissible.notice-success {
  margin-top: 50px !important;
}

.vrc-order-details-info-inner a:hover {
  background: var(--color-hover) !important;
  color: white !important;
}

.vrc-order-details-top-car {
  margin-top: 20px;
}

.vrcprintdiv {
  display: none;
}

.vrc-order-details-costs-wrap {
  margin: 0;
  margin-top: 20px;
  background: #fff;
  border: 0;
}

.vrcdownloadpdf a {
  background: #61a1bd;
  color: #fff;
  padding: 14px 30px;
  display: block;
  width: max-content;
  border-radius: 10px;
  font-weight: 600;
  margin: 30px 0 0;
}

.vrcordcancbox {
  background: #fff;
  border: 0;
}

.vrcordcancbox #vrcopencancform {
  background: transparent !important;
  color: var(--color-text);
  padding: 0;
  font-weight: 600;
}

.vrcordcancbox {
  padding: 30px;
}

.vrcordcancbox .vrcinput {
  width: 100%;
  background: #f7f7f7;
  border: 0;
}

#vrcformcancemail,
#vrcformcancreason {
  font-weight: 500;
}

.vrcordcancbox .vrctextarea {
  width: 100%;
}

.vrcordcancform-entry-submit input {
  width: max-content;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  background: #448a75;
  color: #fff;
  cursor: pointer;
}

.vrcordcancform-entry-submit input {
  background: var(--color-hover);
}

.vrc-docsupload-wrap > div {
  background: #fff;
  border: 0;
}

.vrc-docsupload-wrap .vrcvordudatatitle {
  font-weight: 600;
  color: var(--color-text);
}

.vrc-save-order-block.vrc-docsupload-submit input {
  background: #61a1bd;
  color: #fff;
}

button.btn.vrc-pref-color-btn-secondary.vrc-docsupload-uploadfile:after {
  content: " Document";
}

button.btn.vrc-pref-color-btn-secondary.vrc-docsupload-uploadfile {
  background: #3385b8;
  border: 0;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.vrccurconv-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  z-index: 999;
}

.vrccurconv-dropdown .flag-option {
  cursor: pointer;
  margin: 4px 0;
}

.vrccurconv-dropdown .flag-option img {
  width: 24px;
  height: auto;
  display: block;
}

span#vrccurconv-flag-symb {
  display: none;
}

div#flag-trigger .custom-open {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text);
  object-fit: contain;
}

.vrccurconv-dropdown {
  border-color: #ececec;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  margin-left: -6px;
}

.vrccurconv-dropdown > div:not(:last-of-type) {
  margin: 0 0 10px 0 !important;
}

.page-id-98 .site-main .container {
  width: 1200px;
}

.vrcsearchconfnumb {
  background: #fff;
  border: 0;
  padding: 30px;
}

label {
}

.vrcconfnumbinp label {
  font-weight: 600;
}

.vrcconfnumbinp input {
  margin-top: 10px;
  border: 0;
  border-radius: 10px;
}

.vrcconfnumbsubm input {
  background: #61a1bd;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  margin-left: 20px;
  border-radius: 9px;
}

.vrc-orders-list-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.vrc-orders-list-table-row.vrc-orders-list-table-head-row {
  margin-bottom: 10px;
}

.vrc-orders-list-table-body .vrc-orders-list-table-row {
  box-shadow: unset;
}

.vrc-orders-list-table-body .vrc-orders-list-table-row a {
  color: #61a2bd;
}

.vrcsearchconfnumb + h4 {
  font-weight: 600;
  font-size: 24px;
}

.single-post .post-acf-image {
  margin: 50px 0;
}

.single-post .post-acf-image img {
  border-radius: 20px;
}

.single-post-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.single-post-wrapper a {
  font-weight: 600;
  color: var(--color-text);
}

.single-post-wrapper .entry-title {
  font-weight: 600;
}

.single-post .entry-content {
  font-size: 18px;
}

.page-id-98 .page-content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.wrapper-header > div .btn {
  background: #61a1bd;
  color: #fff;
  padding: 13px 30px;
  display: block;
  width: max-content;
  border-radius: 10px;
  margin-top: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.vrc-oconfirm-summary-car-cell-descr {
  width: 100%;
}

.thanks-page .last-text {
  font-size: 20px;
}

.thanks-page .last-text a {
  color: #61a1bd;
}

.vrc-order-details-car-photo + h4 {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
}

.vrc-searchmod-wrap-horizontal > form {
  justify-content: space-between !important;
}

.vrcdivsearchmodule {
  padding: 30px !important;
}

.button-rpivate-driver {
  margin-top: 30px;
}

.button-rpivate-driver a.button-servi {
  background: var(--color-primary);
  padding: 15px 20px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  font-weight: 600;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button-rpivate-driver a.button-servi:hover {
  background: var(--color-hover);
  color: white;
}

/* New Notice Bar */
.notice.is-dismissible.notice-error {
  padding: 10px 0;
  color: #ffffff;
  position: relative;
}

.notice.is-dismissible.notice-error:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: #721c24;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.vrc-alert-container-confirm {
  background: #721c24 !important;
}
/* End New Notice Bar */

/* New Avaibility wrapper */
.vrc-availability-wrapper
  .vrc-availability-car-monthcal
  td.vrc-availability-month-day {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.vrc-availability-wrapper .vrc-availability-car-monthdays td {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}

.vrc-availability-wrapper .vrc-availability-car-avdays td {
  padding: 0;
}

.vrc-availability-car-avdays .vrc-gav-cell {
  font-size: 0;
}

.vrc-availability-wrapper .vrc-availability-car-details-last-inner > .btn {
  border-radius: 30px;
  padding: 10px 35px;
}

.vrc-availability-wrapper .vrc-availability-car-details h4 {
  font-weight: 500;
  color: #448a75;
}

.vrc-availability-wrapper .vrccaratsdiv span.vrc-expl {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #448a75;
  border-radius: 30px;
}

.vrc-availability-wrapper .vrccaratsdiv span.vrc-expl img {
  filter: brightness(0) invert(1);
}

.vrclegendediv .vrclegenda-lbl {
  font-weight: 400;
}

.aval-page > div > h3 {
  color: #448a75;
  margin-top: 50px;
}

.vrc-availability-car-details-last-pickup {
  margin-top: 0;
  color: #448a75;
}

.vrc-availability-car-details-last-pickup
  i.fas.fa-sign-in-alt.vrc-pref-color-element {
  background: #448a75;
}

.vrc-availability-car-details-last-pickup span {
  font-weight: 600;
  font-size: 16px;
}
/* End New Avaibility wrapper */

/* New Filter */
.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default
  .select2-selection--single {
  background-color: #fff;
  border: none !important;
  border-radius: 50px !important;
  height: 40px !important;
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: background-color 0.2s ease;
  border: 1px solid #d7dadc !important;
  width: max-content !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #1a1a1a !important;
  font-weight: 500 !important;
  line-height: 44px !important;
  font-size: 15px !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default.select2-container--open
  .select2-selection--single {
  background-color: #448a75 !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__rendered {
  color: #ffffff !important;
}

.page-id-123 .vrc-dropdown-common-filter.select2-dropdown {
  margin-left: 0 !important;
  width: 220px !important;
}

.page-id-123 .select2-dropdown {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  margin-top: 0px !important;
  overflow: hidden;
  padding: 8px;
}

.page-id-123 .select2-results__option {
  border-radius: 12px !important;
  margin-bottom: 4px;
  padding: 10px 20px !important;
  transition: all 0.2s ease;
}

.page-id-123 .select2-results__option--highlighted[aria-selected],
.page-id-123 .select2-results__option--selected {
  background-color: #438973 !important;
  color: white !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-selection__arrow {
  display: none !important;
}

.page-id-123 .select2-search--dropdown {
  display: none !important;
}

.page-id-123 .vrc-searchfilter-characteristics-container {
  border: 0;
}

.page-id-123 .vrc-searchfilter-characteristics-container label {
  display: none !important;
}

.page-id-123 .vrc-searchfilter-characteristics-container {
  max-width: 50%;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .vrc-searchfilter-category,
.page-id-123 .vrc-searchfilter-characteristics-container .vrc-searchfilter-fuel,
.page-id-123
  .vrc-searchfilter-characteristics-container
  .vrc-searchfilter-transmission {
  flex: 1 !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: max-content !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--open
  .select2-dropdown {
  margin-left: 0 !important;
  width: 230px !important;
}

.page-id-123 .vrc-searchfilter-characteristics-container {
  margin-top: 60px !important;
  margin-bottom: 0 !important;
}

.page-id-123 .vrc-searchfilter-characteristics-container .select2-container {
  width: max-content !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default
  .select2-selection--single {
  position: relative;
  padding-right: 30px !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none !important;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default
  .select2-selection--single::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231a1a1a' d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.page-id-123
  .vrc-searchfilter-characteristics-container
  .select2-container--default.select2-container--open
  .select2-selection--single::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z'/%3E%3C/svg%3E");
}

html
  .single-car
  .vrc-cardetails-book-wrap
  .vrcdivsearch
  .vrcsfentrycont
  div.vrcsfentryselect {
  background: #f1f3f4;
  border: 1px solid #d7dadc !important;
}

html
  .single-car
  .vrc-cardetails-book-wrap
  .vrcdivsearch
  .vrcsfentrylabsel
  .vrcsfentrydate {
  background: #f1f3f4 !important;
  border: 1px solid #d7dadc !important;
}

html
  .single-car
  .vrc-cardetails-book-wrap
  .vrcdivsearch
  .vrc-searchf-section-datetimes
  .vrcsfentrycont
  .vrc-sf-time-container {
  background: #f1f3f4 !important;
  border: 1px solid #d7dadc !important;
}

#ui-datepicker-div {
  background: #ffffff;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  padding: 12px;
  font-family: inherit;
}

.page-id-123 .ui-datepicker-title {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}

.page-id-123 .ui-datepicker.ui-widget td a.ui-state-default.ui-state-active {
  background: #438973 !important;
}

.page-id-123 .ui-widget-header .ui-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 16'%3E%3Cpath fill='%23000000' d='M8 15C7.71875 15 7.46875 14.9062 7.28125 14.7188L1.28125 8.71875C0.875 8.34375 0.875 7.6875 1.28125 7.3125L7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125C9.09375 1.6875 9.09375 2.34375 8.6875 2.71875L3.40625 8L8.6875 13.3125C9.09375 13.6875 9.09375 14.3438 8.6875 14.7188C8.5 14.9062 8.25 15 8 15Z'/%3E%3C/svg%3E")
    no-repeat center !important;
}

.page-id-123 .ui-datepicker.ui-widget td a.ui-state-default:hover {
  background: #438973 !important;
}

.page-id-123 .my-custom-dropdown {
  margin-left: 0 !important;
}

.page-id-123
  .vrc-cardetails-book-wrap
  .vrcsfentrytime
  .select2-container
  .select2-selection--single {
  padding-left: 25px;
}

html
  .single-car
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-top: 4px !important;
  font-size: 16px !important;
}
html
  .single-car
  .vrcdivsearch
  .vrc-searchf-section-sbmt
  .vrcsfentrysubmit
  input {
  font-size: 16px;
}

html .single-car .vrcdivsearch .vrcsfentrylabsel .vrcsfentrydate input {
  font-size: 16px;
}
/* End New Filter */

/* New Search Full */
.search-bar-full {
  padding: 30px 0 10px 0;
  position: relative;
}

.search-bar-full:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  /* border-top: 2px solid #bf1816; */
}

.search-bar-full .vrc-itinerary-summary {
  margin-bottom: 0;
}

.search-bar-full .vrcstepsbarcont .vrc-stepbar > li {
  background: #f7f7f7;
  font-weight: 600;
  color: #888 !important;
}

.search-bar-full .vrcstepsbarcont .vrc-stepbar li:after,
.vrcstepsbarcont .vrc-stepbar li:before {
  display: none;
}

.search-bar-full .vrcstepsbarcont .vrc-stepbar > li > *:before {
  border: transparent;
  font-weight: 600;
  font-family: "Poppins";
  margin: 0;
  background: none;
  color: #888;
}

.search-bar-full p.vrcarsfound {
  margin-top: 70px;
  text-align: center;
  font-size: 30px;
  color: #468a75;
  font-weight: 600;
}

.search-bar-full span.vrc-itinerary-pickup-locaddr {
  display: none !important;
}

.search-bar-full span.vrc-itinerary-dropoff-locaddr {
  display: none !important;
}

.search-bar-full .vrcstepsbarcont {
  margin: 0;
}

.search-bar-full .vrcstepsbarcont .vrc-stepbar {
  margin-bottom: 0;
}

.search-bar-full .vrcstepsbarcont li.vrc-step.vrc-step-complete {
  height: 30px;
  line-height: 30px;
  background: #448a75;
}

.search-bar-full .vrcstepsbarcont .vrc-stepbar {
  background: none;
  gap: 20px;
}

.search-bar-full .vrcstepsbarcont .vrc-stepbar > li {
  border-radius: 30px;
  height: 30px;
  line-height: 30px;
}

.vrcstepsbarcont .vrc-stepbar > li > * {
  color: #888;
}

.search-bar-full .vrcstepsbarcont li.vrc-step.vrc-step-complete a::before {
  color: white;
  font-family: "Poppins";
}
/* End New Search Full */

.vrcstepsbarcont .vrc-stepbar li:after {
  border-left-color: #5f8875;
}

html .vrc-itinerary-summary .vrc-itinerary-pickup-locdet span,
.vrc-itinerary-summary .vrc-itinerary-dropfff-locdet span,
.vrc-itinerary-pickup-date span {
  font-size: 16px !important;
}

.vrc-itinerary-summary .vrc-itinerary-dropoff-date {
  font-size: 16px !important;
}

.vrc-car-bookingbtn form {
  transition: 0.3s;
}

.vrc-car-bookingbtn form:hover {
  background: var(--color-hover);
}

.vrc-car-bookingbtn form:hover svg path {
  fill: white;
}

.search-wrapper .car_result {
  cursor: pointer;
}

html
  .vrc-showprc-options-wrap
  .vrc-showprc-options-inner
  .vrc-showprc-option-cell-price-descr
  span.vrc_currency {
  color: #548975;
}

html
  .vrc-showprc-options-wrap
  .vrc-showprc-options-inner
  .vrc-showprc-option-cell-price-descr
  span.vrc_price {
  color: #548975;
}

html .option-first-section .vrc-showprc-option-row,
html .second-option-prc .vrc-showprc-option-row {
  cursor: pointer;
}

/* End New Step */

/* New Home Search */
.select2-dropdown {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  margin-top: 0px !important;
  overflow: hidden;
  padding: 8px;
}

.select2-results__option {
  border-radius: 12px !important;
  margin-bottom: 4px;
  padding: 10px 20px !important;
  transition: all 0.2s ease;
}

.select2-results__option--highlighted[aria-selected],
.select2-results__option--selected {
  background-color: #438973 !important;
  color: white !important;
}

.select2-search--dropdown {
  display: none !important;
}

#ui-datepicker-div {
  background: #ffffff;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  padding: 12px;
  font-family: inherit;
}

.ui-datepicker-title {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}

.ui-datepicker.ui-widget td a.ui-state-default.ui-state-active {
  background: #438973 !important;
}

.ui-widget-header .ui-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 16'%3E%3Cpath fill='%23000000' d='M8 15C7.71875 15 7.46875 14.9062 7.28125 14.7188L1.28125 8.71875C0.875 8.34375 0.875 7.6875 1.28125 7.3125L7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125C9.09375 1.6875 9.09375 2.34375 8.6875 2.71875L3.40625 8L8.6875 13.3125C9.09375 13.6875 9.09375 14.3438 8.6875 14.7188C8.5 14.9062 8.25 15 8 15Z'/%3E%3C/svg%3E")
    no-repeat center !important;
}

.ui-datepicker.ui-widget td a.ui-state-default:hover {
  background: #438973 !important;
}

.vrc-cardetails-book-wrap
  .vrcsfentrytime
  .select2-container
  .select2-selection--single {
  padding-left: 22px;
}

.home .select2-container--open .select2-dropdown {
  margin-left: -21px;
  margin-top: 5px !important;
}

.home #ui-datepicker-div {
  margin-top: 33px !important;
}

.vrcsfentrycont .vrcsfentrydate .hasDatepicker {
  font-size: 18px;
  font-weight: 500;
  height: 30px !important;
  font-family: "Poppins";
}

.vrcdivsearch.vrcdivsearch-noresults.test .vrcsfentrylabsel .vrcsfentrydate {
  border: 0 !important;
}

.vrcdivsearch.vrcdivsearch-noresults.test .vrcsfentrydate i {
  display: none;
}

.search-page .vrc-searchf-section-sbmt .vrcsfentrycont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.search-page .vrcsfentrycont .vrcsfentrysubmit {
  background: var(--color-primary);
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit:hover {
  background: var(--color-hover);
}

.vrcdivsearch .vrc-searchf-section-sbmt .vrcsfentrysubmit input {
  cursor: pointer;
}

.custom-search .vrc-searchf-section-sbmt .vrcsfentrycont {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
/* End New Home Search */

/* New Info Grid */
.info-grid .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  color: white;
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.column-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-booking {
  padding: 40px 30px;
  min-height: 280px;
  background-image: url(/wp-content/uploads/2026/01/33247.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.icon-box {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 25px;
}

.card-booking .title {
  font-size: 28px;
  margin: 0 0 10px 0;
  line-height: 1.2;
  font-weight: 400;
}

.card-booking:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111111d6;
}

.card-booking .card-content {
  z-index: 1;
  position: relative;
}

.card-booking p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.btn-booking {
  display: inline-block;
  background: #548873;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.btn-booking:hover {
  background: var(--color-hover);
  color: #fff;
}

.card-stats {
  height: 288px;
}

.stats-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.stats-label {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}
.stats-value {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.card-hero {
  height: 100%;
  overflow: hidden;
}

.card.card-booking {
  overflow: hidden;
}

.card.card-stats {
  height: 288px;
  overflow: hidden;
}

.card-hero img,
.card.card-stats img {
  transition: 0.3s ease-in-out;
}

.card-hero:hover img,
.card.card-stats:hover img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card-hero h2 {
  font-size: 32px;
  text-align: center;
  max-width: 500px;
  line-height: 1.3;
}

section.info-grid {
  background: white;
  padding: 80px 0;
}

/* End New Info Grid */

/* New Key Features */
.features-section {
  margin: 0 auto;
  background: white;
  padding: 80px 0 0px 0px;
}

.features-grid.swiper .swiper-wrapper {
  gap: 20px;
}

.feature-card:hover .icon-circle {
  background: #bf1816 !important;
}

.feature-card:hover .icon-circle img {
  filter: brightness(0) invert(1);
}

.feature-card .icon-circle {
  transition: 0.3s ease-in-out;
}

.feature-card img {
  transition: 0.3s ease-in-out;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
}

section.features-section .title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.description {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* Grid Layout */
.features-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Card Styling */
.feature-card {
  flex: 1;
  min-width: 220px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* Icon Circles */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon {
  font-size: 24px;
}

.vrc-showprc-container span.vrhword {
  font-size: 21px !important;
}

.checkout-page .vrc-rental-summary-title {
  margin-top: 70px;
  font-size: 30px;
  color: #468a75;
  font-weight: 600;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .feature-card {
    flex: 1 1 100%;
  }
}
/* End New Key Features */
/* New Arrows */
.second-section .arrows {
  position: absolute;
  left: auto;
  right: 0;
  width: 140px;
  display: flex;
  gap: 15px;
  top: -40px;
}

.second-section .arrows .swiper-button-prev,
.second-section .arrows .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.second-section .arrows i {
  display: none;
}

.second-section .arrows .swiper-button-prev:after,
.second-section .arrows .swiper-button-next:after {
  font-size: 20px;
  color: var(--color-text);
}

.second-section .arrows .swiper-button-prev:hover,
.second-section .arrows .swiper-button-next:hover {
  background: var(--color-primary);
}

.second-section .arrows .swiper-button-prev:hover:after,
.second-section .arrows .swiper-button-next:hover:after {
  color: white;
}
/* End New Arrows */

/* New card  */
.vrc-card-container {
  background: #fff;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vrc-badge-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #bf1816;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
}

.vrc-img-wrapper {
  margin: 40px 0 20px 0;
  text-align: center;
}

.vrc-img-wrapper img {
  max-width: 100%;
  height: 250px;
  padding: 20px;
  object-fit: contain;
}

.vrc-car-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--color-text);
  font-weight: 600;
}

.vrc-car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #666;
  font-size: 15px;
}

.vrc-divider {
  border: 0;
  border-top: 1px solid #f0f0f0;
  margin: 20px 0;
}

.vrc-footer-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.vrc-label {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.vrc-price-amount {
  font-size: 25px;
  color: var(--color-text);
  line-height: 1;
  font-weight: 600;
}

.vrc-unit {
  font-size: 16px;
  color: #888;
  font-weight: 400;
}

.vrc-action-btn {
  background: #468a75;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s;
}

.vrc-action-btn:hover {
  background: var(--color-hover);
  color: #fff;
}

.img-badge {
  background: #e1e1e1;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vrc-details-section {
  padding: 0 20px;
}

.vrc-footer-section {
  padding: 0 20px 20px;
}

.features-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.features-items .icon img {
  height: 20px;
  width: 20px;
}

.features-items .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-items .feature-item .text {
  font-weight: 500;
}
/* End New Card */

/* New Luxury Fleet */
.vrc-chauffeur-section {
  background-color: #3d5245;
  margin: 80px 0;
  overflow: hidden;
  position: relative;
}

.vrc-chauffeur-wrapper .container {
  display: flex;
  align-items: center;
  min-height: 450px;
  position: relative;
  padding: 60px 0;
}

.vrc-chauffeur-content {
  flex: 0 0 45%;
  padding: 60px;
  color: #ffffff;
  z-index: 2;
}

.vrc-chauffeur-top-title {
  font-family: var(--font-bold), sans-serif;
  font-size: 56px;
  margin-bottom: 30px;
  line-height: 1;
}

.vrc-chauffeur-car {
  font-size: 28px;
  margin-bottom: 5px;
}

.vrc-chauffeur-pricing {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.vrc-chauffeur-pricing span {
  color: #ffffff;
  font-weight: bold;
}

.vrc-chauffeur-btn {
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-text);
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-bold), sans-serif;
  transition: transform 0.3s ease;
}

.vrc-chauffeur-btn:hover {
  transform: translateY(-3px);
}

.vrc-chauffeur-visual {
  flex: 0 0 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vrc-chauffeur-visual img {
  width: 120%;
  max-width: none;
  object-fit: contain;
  transform: translateX(10%);
}

.vrc-chauffeur-section:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 50vw;
  height: 100%;
  background: #2f3b35;
  z-index: 1;
  top: 0;
}

.vrc-chauffeur-section .vrc-chauffeur-visual {
  z-index: 9;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .vrc-chauffeur-wrapper {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }
  .vrc-chauffeur-content {
    flex: 0 0 100%;
    padding: 40px 20px;
  }
  .vrc-chauffeur-visual img {
    width: 100%;
    transform: none;
  }
}
/* End New Luxury Fleet */

@media (max-width: 992px) {
  .header__hamburger {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .header__hamburger-box {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 24px;
  }

  .header__hamburger-inner {
    display: block;
    margin-top: -2px;
    top: 50%;
    transition:
      transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
      background-color 0.3s;
  }

  .header__hamburger-inner,
  .header__hamburger-inner:after,
  .header__hamburger-inner:before {
    background-color: var(--color-neutral-100);
    border-radius: 2px;
    height: 2px;
    position: absolute;
    width: 24px;
  }

  .header__hamburger-inner:after,
  .header__hamburger-inner:before {
    content: "";
    display: block;
  }

  .header__hamburger-inner:before {
    top: -8px;
    transition:
      top 0.1s ease-in 0.25s,
      opacity 0.1s ease-in,
      background-color 0.3s;
  }

  .header__hamburger-inner:after {
    bottom: -8px;
    transition:
      bottom 0.1s ease-in 0.25s,
      transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
      background-color 0.3s;
  }

  .header__hamburger.-active .header__hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .header__hamburger.-active .header__hamburger-inner:before {
    opacity: 0;
    top: 0;
    transition:
      top 0.1s ease-out,
      opacity 0.1s ease-out 0.12s,
      background-color 0.3s;
  }

  .header__hamburger.-active .header__hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition:
      bottom 0.1s ease-out,
      transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
      background-color 0.3s;
  }

  .header-inner .menu nav {
    display: none;
  }

  .vrcmodcarsgridcont-items .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  html #wpadminbar {
    top: 0;
  }

  html {
    margin: 0 !important;
  }

  div#wpadminbar {
    display: none;
  }

  .vrc-curconv-wrap {
    display: none;
  }

  button.header__hamburger {
    display: block;
    border: 0;
    background: transparent;
  }

  .site-logo {
    width: 45%;
  }

  .header-inner .right-menu {
    order: 1;
    width: auto;
  }

  .header-inner .menu {
    width: auto;
    order: 2;
    display: none;
  }

  .first-section .wrapper {
    padding: 15px;
    border-radius: 0;
  }

  .first-section .form-title {
    font-size: 34px;
    line-height: 45px;
    margin: 20px 0 40px;
  }

  .vrcdivsearchmodule {
    width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .vrc-searchmod-wrap-horizontal > form {
    flex-direction: column;
    gap: 20px;
  }

  .vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes {
    flex-direction: column;
    gap: 20px;
    margin: 0 !important;
  }

  .vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes > div {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .vrc-searchmod-wrap-horizontal .vrc-searchmod-section-datetimes > div > div {
    width: 100% !important;
  }

  .vrc-searchmod-wrap-horizontal
    .vrc-searchmod-section-datetimes
    > div.pickup-wrapper:after {
    display: none;
  }

  .vrc-searchmod-wrap-horizontal
    .vrc-searchmod-section-datetimes
    > div.return-wrapper {
    left: 0;
    border-top: 1px solid #ececec;
    padding-top: 20px;
  }

  .vrc-searchmod-wrap-horizontal
    form
    .vrc-searchmod-section-sbmt
    .vrcsfentrysubmit
    > button:after {
    content: "Search";
    font-size: 20px;
  }

  .vrc-searchmod-wrap-horizontal
    form
    .vrc-searchmod-section-sbmt
    .vrcsfentrysubmit
    > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .bottom-hero {
    align-items: center;
  }

  .home .first-section .container {
    padding: 0;
  }

  .first-section .wrapper:before {
    border-radius: 0;
  }

  span.select2-dropdown.my-custom-dropdown {
    margin-left: -50px;
  }
}

.about .inner {
    display: flex;
    justify-content: space-between;
}

.about .inner > div {
    width: 40%;
}

.about .inner > div img {
    width: 100%;
}

.about .inner > div .title {
    font-size: 50px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 600;
}

.about .inner > div .content {
    color: #000;
    font-size: 20px;
    line-height: 30px;
}
h4.right-title {
    margin-top: 0;
}
.about .inner > div .content a {
    color: #000;
    font-weight: 700;
}

.about .inner > div.right {
    width: 52%;
    display: flex;
    gap: 30px;
}

.about .inner > div.right img {
    border-radius: 20px;
}.about .inner > div .title {
    margin-top: 0;
}
h4.right-title {
    background: #222224;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 50px;
    line-height: 41px;
    margin-bottom: 30px;
}

h4.right-title span {
    font-size: 32px;
}
.about .inner > div.right .right-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about .inner > div.right .left-image img {
    height: 100%;
    object-fit: cover;
}

.about .inner > div.right .left-image {
    width: 48%;
}

.about .inner > div.right .right-image {
    width: 48%;
}
