@charset "UTF-8";
/*
 * >>> GLOBAL VARIABLES <<<
 ************************************************************/
/* 
    > Note: If you want to apply a color to the template (like for buttons or backgrounds), don't forget to
            add the variable of the color to the "$theme-colors" map.
*/
/*
 * >>> UTILITIY VARIABLES <<<
 ************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*, ::before, ::after {
  box-sizing: border-box;
}

html, body {
  width: 100vw;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes notifCenter {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

@keyframes notifCenter {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes growTransp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    height: 20px;
    width: 20px;
  }
}
@keyframes growTransp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    height: 20px;
    width: 20px;
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: scale(1.3);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: scale(1.3);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
*::-moz-selection {
  background-color: #00a09c;
  color: #fff;
}
*::selection {
  background-color: #00a09c;
  color: #fff;
}

html {
  color: #333;
  font-size: 62.5%;
  width: 100%;
}

body {
  color: #34495e;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  width: 100%;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: color 0.5s;
}
a:hover {
  text-decoration: none;
}

img {
  display: inline-block;
  max-width: 100%;
}

p {
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#wrapper {
  overflow: hidden;
  width: 100%;
}

@media (min-width: 1450px) {
  .container {
    max-width: 1400px;
  }
}
select.driver-select {
  display: none;
}

.btn-checkbox {
  display: inline-block;
}
.btn-checkbox input {
  display: none;
}
.btn-checkbox label {
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  padding: 1rem 1.5rem 1rem 4rem;
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.5s, border-color 0.5s, color 0.5s;
}
.btn-checkbox label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  height: 2rem;
  width: 2rem;
  transition: background-color 0.5s;
}
.btn-checkbox label::after {
  content: "\e876";
  font-family: "Material Icons Outlined";
  font-size: 2rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  transition: color 0.5s, opacity 0.5s;
}
.btn-checkbox input:checked + label::after {
  opacity: 1;
}

.btn-checkbox.btn-checkbox-tertiary label {
  border-color: #00a09c;
  color: #00a09c;
}
.btn-checkbox.btn-checkbox-tertiary label::before {
  background-color: rgba(0, 160, 156, 0.2);
}
.btn-checkbox.btn-checkbox-tertiary label::after {
  color: #00a09c;
}
.btn-checkbox.btn-checkbox-tertiary input:checked + label {
  background-color: #00a09c;
  color: #fff;
}
.btn-checkbox.btn-checkbox-tertiary input:checked + label::before {
  background-color: #fff;
}

.driver-save-new {
  display: block;
}
.driver-save-new.inactive {
  display: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input.is-valid + .notif {
  display: none !important;
}

.input-group-1 {
  margin-bottom: 1rem;
}
.input-group-1 .input-item {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  position: relative;
}
.input-group-1 .input-item .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
}
.input-group-1 .input-item .icon i {
  color: #d72b2b;
  font-size: 1.8rem;
}
.input-group-1 .input-item input {
  background-color: transparent;
  border: none;
  color: #2c3e50;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
}
.input-group-1 .input-item input::-moz-placeholder {
  color: #8aa4be;
}
.input-group-1 .input-item input:-ms-input-placeholder {
  color: #8aa4be;
}
.input-group-1 .input-item input::placeholder {
  color: #8aa4be;
}
.input-group-1 .input-item .nice-select {
  background: transparent;
  border: transparent;
  float: none;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 0;
  height: auto;
}
.input-group-1 .input-item .nice-select::after {
  margin-top: -6px;
  height: 10px;
  width: 10px;
}
.input-group-1 .input-item .nice-select .current {
  color: #2c3e50;
  display: block;
  overflow: hidden;
  width: 100%;
}
.input-group-1 .input-item .nice-select .list {
  font-size: 1.5rem;
  left: -49px;
  top: 45px;
  overflow-y: scroll;
  max-height: 250px;
  width: 430px;
  z-index: 999999;
}
@media screen and (max-width: 450px) {
  .input-group-1 .input-item .nice-select .list {
    left: -35px;
  }
}
@media screen and (max-width: 575px) {
  .input-group-1 .input-item .nice-select .option {
    font-size: 13px;
  }
}
.input-group-1 .fake-input {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.65rem 0.65rem 3rem;
  position: relative;
  height: 35px;
}
.input-group-1 .fake-input .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
}
.input-group-1 .fake-input .icon i {
  color: #d72b2b !important;
  font-size: 1.8rem;
}
.input-group-1 .fake-input .input {
  color: #2c3e50;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}
.input-group-1 .fake-input-2 {
  background-color: transparent;
  padding: 0 0 0 2.5rem;
  height: auto;
}
.input-group-1 .fake-input-2 .icon {
  left: 0;
}
.input-group-1 .fake-input-2 .input {
  line-height: 1.3;
  white-space: normal;
}

.input-password-toggle {
  position: relative;
}
.input-password-toggle i {
  cursor: pointer;
  font-size: 2rem;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: 0.5s;
}
.input-password-toggle i.active {
  color: #00a09c;
}

.label {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.label-lg {
  font-size: 1.6rem;
  font-weight: normal;
}

.label-1 .label-content > * {
  display: inline-block;
  margin-top: 2px;
  transition: color 0.5s;
}
.label-1 .label-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 5px;
}
.label-1 .label-note {
  color: #547698;
  font-size: 14px;
  font-weight: bold;
}
.label-1 .label-desc {
  font-size: 1.2rem;
  display: block;
}

.label-1.label-lg .label-title {
  font-size: 1.6rem;
}
.label-1.label-lg .label-desc {
  font-size: 1.3rem;
}

.label-title {
  display: inline-block;
}

.input-style-1 {
  background-color: #e6ebf1;
  border: 2px solid #e6ebf1;
  border-radius: 5px;
  font-weight: bold;
  display: block;
  padding: 0.6rem 1.5rem;
  width: 100%;
  transition: background-color 0.25s, border-color 0.25s;
}
.input-style-1:focus {
  background-color: #fff;
  border-color: #00a09c;
  box-shadow: none;
  outline: none;
}

.input-size-md {
  font-size: 1.8rem;
  padding: 1rem 2rem;
}

.input-icon {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
}
.input-icon input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
  width: calc(100% - 50px);
}
.input-icon input:focus {
  border-color: #d72b2b;
}
.input-icon .icon {
  background-color: #d72b2b;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #fff;
  position: relative;
  width: 50px;
}
.input-icon .icon i {
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-wrap input {
  display: none;
}
.checkbox-wrap input + label {
  color: #2c3e50;
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  line-height: 1.3;
  align-items: flex-start;
}
.checkbox-wrap input + label::before {
  content: "";
  border: 0.1em solid #2c3e50;
  border-radius: 0.2em;
  color: #fff;
  display: inline-block;
  flex-shrink: 0;
  line-height: 0;
  margin-right: 0.75em;
  margin-top: 0.1em;
  padding: 7px;
  vertical-align: bottom;
  color: #fff;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.checkbox-wrap input + label:active::before {
  transform: scale(0);
}
.checkbox-wrap input:checked + label::before {
  content: "✓";
  padding: 7px 2px;
  background-color: #d72b2b;
  border-color: #d72b2b;
}

.checkbox-wrap.checkbox-wrap-secondary input:checked + label, .checkbox-wrap.checkbox-wrap-secondary input:checked + label * {
  color: #fab245 !important;
}
.checkbox-wrap.checkbox-wrap-secondary input:checked + label::before {
  background-color: #fab245;
  border-color: #fab245;
}

.checkbox-wrap.checkbox-wrap--radio input + label::before {
  border-radius: 100px;
  margin-top: -1px;
  padding: 9px;
}
.checkbox-wrap.checkbox-wrap--radio input:checked + label::before {
  padding: 9px 4px;
}

.outcome .error {
  display: none;
}

.notif,
.invalid-feedback,
.outcome .error.visible {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 0;
  overflow: hidden;
  padding-left: 25px;
  position: relative;
}
.notif::before, .notif::after,
.invalid-feedback::before,
.invalid-feedback::after,
.outcome .error.visible::before,
.outcome .error.visible::after {
  content: "";
  border-radius: 100px;
  position: absolute;
  left: 10px;
  top: 11px;
  height: 6px;
  width: 6px;
  transform: translate(-50%, -50%);
}
.notif::after,
.invalid-feedback::after,
.outcome .error.visible::after {
  -webkit-animation: growTransp 1s infinite backwards;
  animation: growTransp 1s infinite backwards;
}

.notif-success {
  color: #05b75e;
}
.notif-success::before, .notif-success::after {
  background-color: #05b75e;
}

.notif-danger,
.invalid-feedback,
.outcome .error.visible {
  color: #ef475b;
}
.notif-danger::before, .notif-danger::after,
.invalid-feedback::before,
.invalid-feedback::after,
.outcome .error.visible::before,
.outcome .error.visible::after {
  background-color: #ef475b;
}

.notif-main {
  margin-bottom: 15px;
  margin-left: 1rem;
}

.notif--success {
  color: #05b75e;
}
.notif--success::before, .notif--success::after {
  background-color: #05b75e;
}

.notif--danger {
  color: #ef475b;
}
.notif--danger::before, .notif--danger::after {
  background-color: #ef475b;
}

.notif--main {
  margin-bottom: 15px;
  margin-left: 1rem;
}

.checkout-wrapper .list-group-item {
  border: none;
}

.checkout-wrapper .stripe-input {
  background-color: #e6ebf1;
  border: 2px solid #e6ebf1;
  border-radius: 5px;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
}

.checkout-wrapper .magic-radio + label:before {
  background-color: #f6f8fa;
  border-color: transparent;
}

.checkout-wrapper .magic-radio:checked + label:before {
  background-color: #d72b2b;
  border-color: transparent;
}

.checkout-wrapper .magic-radio + label:after {
  content: "✓";
  background-color: transparent;
  color: #fff;
  font-size: 1.4rem;
  top: 50%;
  left: 5px;
  width: auto;
  height: auto;
  transform: translateY(-25%);
}

.aloe-video {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.aloe-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-normal {
  font-size: 1.8rem;
  line-height: 0;
  transform: translateY(3px);
}

.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.5s;
}
.img-grayscale-hover:hover {
  filter: none;
}

.img-placeholder {
  opacity: 0.3;
}

.img-placeholder-2 {
  opacity: 0.6;
}

.lg-backdrop {
  background-color: #222;
}
.lg-backdrop.in {
  opacity: 0.7;
}

.lg-toolbar .lg-close:after {
  content: "\e5cd";
  font-family: "Material Icons Outlined";
}

.list-group-item-content-logos {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 25px;
}
.list-group-item-content-logos img {
  height: 40px;
}

.list-group-item {
  margin-bottom: 20px;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #00a09c;
  border-color: #00a09c;
}

.fixed-scroll-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.pos-fixed-scroll {
  position: fixed !important;
  top: 25px !important;
  max-width: 100%;
}

.section-gmaps {
  transform: translateY(-3px);
  position: relative !important;
}

.hr-style-1 {
  border: none;
  border-top: 2px solid #8aa4be;
  margin: 25px 0;
}

.select-message-target {
  display: none !important;
}
.select-message-target.active {
  display: block !important;
}

.show-scroll-element {
  display: none;
}

.socials {
  display: flex;
  align-items: center;
}
.socials li:not(:last-child) {
  margin-right: 10px;
}
.socials li > a {
  background-color: #00a09c;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  transition: background-color 0.3s;
}
.socials li > a svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.socials li > a:hover {
  background-color: #d72b2b;
}

.stroke-primary {
  stroke: #d72b2b !important;
}

.text-body-color {
  color: #34495e !important;
}

.text-dark-light {
  color: #547698 !important;
}

.text-dark-light-2 {
  color: #8aa4be !important;
}

.text-neutral {
  color: #95a5a6 !important;
}

.text-normal {
  font-weight: normal !important;
}

.text-right {
  text-align: right !important;
}

.text-size-1 {
  font-size: 17px;
  line-height: 1.5;
}

.text-loading {
  color: #34495e;
  display: flex;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.text-loading .loading-icon {
  display: inline-block;
  margin-right: 1rem;
  width: 20px;
  -webkit-animation: spin 2.5s linear infinite;
          animation: spin 2.5s linear infinite;
}
.text-loading .loading-icon > * {
  fill: #34495e;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.fade-leave-to {
  transform: translateY(-15px);
}

.fade-enter-to,
.fade-leave-from {
  opacity: 1;
}

.route-enter-active,
.route-leave-active {
  transition: opacity 0.3s ease;
}

.route-enter-from,
.route-leave-to {
  opacity: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .section-title .title, .h3, .h4, .h5, .card-icon-2 .title, .h6 {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2, .section-title .title {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.8rem;
}

h4, .h4 {
  font-size: 1.6rem;
}

h5, .h5, .card-icon-2 .title {
  font-size: 1.4rem;
}

h6, .h6 {
  font-size: 1.4rem;
}

.section-title {
  position: relative;
  margin: 1.75rem 0 3.5rem 0;
}
.section-title::before {
  content: "";
  border: 4px solid #00a09c;
  border-radius: 10px;
  display: block;
  opacity: 0.1;
  padding: 3rem;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}
.section-title > * {
  position: relative;
  z-index: 1;
}
.section-title .sup, .section-title .sub {
  color: #00a09c;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.section-title .sub {
  color: #547698;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.section-title.text-center::before {
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-title.st-white::before {
  border-color: #fff;
}
.section-title.st-white .sup, .section-title.st-white .title {
  color: #fff;
}

.section-title-2::before {
  display: none;
}

.para, .para > * {
  color: #8aa4be;
  font-size: 1.5rem;
  line-height: 1.6;
}

.para > *:not(:last-child):not(a) {
  margin-bottom: 1.5rem;
}

.para-lg, .para-lg > * {
  font-size: 1.7rem;
}

.para-sm, .para-sm > * {
  font-size: 1.3rem;
}

.para-xs, .para-xs > * {
  font-size: 1.3rem;
  line-height: 1.3;
}

.link {
  cursor: pointer;
  display: inline-block;
  color: #00a09c;
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.25rem;
  position: relative;
}
.link::before {
  content: "";
  background-color: #fab245;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  transition: opacity 0.5s, width 0.5s;
}
.link:hover {
  color: #fab245;
}
.link:hover::before {
  opacity: 1;
  width: 100%;
}

.link-primary {
  color: #d72b2b;
}
.link-primary::before {
  background-color: #d72b2b;
}
.link-primary:hover {
  color: #d72b2b;
}

.link-danger {
  color: #e74c3c;
}
.link-danger::before {
  background-color: #e74c3c;
}
.link-danger:hover {
  color: #e74c3c;
}

.link-icon {
  margin-left: 2.25rem;
}
.link-icon i {
  font-size: 1.1em;
  margin-right: 0.5rem;
  position: absolute;
  top: 0;
  left: -2.25rem;
}

.link-sm {
  font-size: 1.3rem;
  font-weight: normal;
}

.text-title {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }

  h2, .h2, .section-title .title {
    font-size: 2.5rem;
  }

  h3, .h3 {
    font-size: 2rem;
  }

  h4, .h4 {
    font-size: 1.8rem;
  }

  h5, .h5, .card-icon-2 .title {
    font-size: 1.6rem;
  }

  h6, .h6 {
    font-size: 1.4rem;
  }

  .para, .para > * {
    font-size: 1.6rem;
  }

  .para-lg, .para-lg > * {
    font-size: 2rem;
  }

  .para-sm, .para-sm > * {
    font-size: 1.4rem;
  }

  .para-xs, .para-xs > * {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .section-title {
    margin-left: 1.75rem;
    margin-bottom: 4rem;
  }
  .section-title .sub {
    font-size: 1.6rem;
  }
}
.adding-item-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
}
.adding-item-wrap .adding-item {
  border: 4px solid rgba(44, 62, 80, 0.08);
  border-radius: 5px;
  color: #95a5a6;
  margin: 1rem;
  padding: 1.5rem;
  position: relative;
  text-align: center;
  width: 225px;
}
.adding-item-wrap .adding-item .ai-qty {
  background-color: #95a5a6;
  border-radius: 99rem;
  padding: 2.4rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transform: translate(50%, -50%);
}
.adding-item-wrap .adding-item .ai-qty span {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adding-item-wrap .adding-item .ai-icon {
  margin-bottom: 1rem;
}
.adding-item-wrap .adding-item .ai-icon svg {
  height: 60px;
  width: 60px;
}
.adding-item-wrap .adding-item .ai-icon svg * {
  fill: rgba(149, 165, 166, 0.5);
}
.adding-item-wrap .adding-item .ai-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.adding-item-wrap .adding-item .ai-content {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.adding-item-wrap .adding-item .ai-price {
  border-radius: 5px;
  color: #95a5a6;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.adding-item-wrap .adding-item .ai-actions .btn, .adding-item-wrap .adding-item .ai-actions .btn-lg, .adding-item-wrap .adding-item .ai-actions .btn-sm, .adding-item-wrap .adding-item .ai-actions .btn-xs {
  border-radius: 0;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
}
.adding-item-wrap .adding-item .ai-actions .btn.disabled, .adding-item-wrap .adding-item .ai-actions .disabled.btn-lg, .adding-item-wrap .adding-item .ai-actions .disabled.btn-sm, .adding-item-wrap .adding-item .ai-actions .disabled.btn-xs {
  background-color: #95a5a6;
  cursor: default;
}
.adding-item-wrap .adding-item .ai-actions .btn-add {
  background-color: #fab245;
}
.adding-item-wrap .adding-item .ai-actions .btn-remove {
  background-color: #d72b2b;
}
.adding-item-wrap .adding-item.active {
  border-color: #fab245;
}
.adding-item-wrap .adding-item.active .ai-icon svg * {
  fill: #fab245;
}
.adding-item-wrap .adding-item.active .ai-qty {
  background-color: #fab245;
}
.adding-item-wrap .adding-item.active .ai-title, .adding-item-wrap .adding-item.active .ai-content, .adding-item-wrap .adding-item.active .ai-price {
  color: #fab245;
}

.home-banner {
  background-position: center center;
  background-size: cover;
  margin-top: -3rem;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}
.home-banner .banner-content {
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 3rem 2.5rem 1.5rem 2.5rem;
  position: relative;
}
.home-banner .banner-side {
  background-color: #fff;
  padding: 5px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.home-banner .banner-side img {
  margin: 5px;
}
.home-banner .banner-title {
  margin-bottom: 1.5rem;
  text-align: center;
}
.home-banner .banner-title .sup {
  color: #00a09c;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.home-banner .banner-title .title {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}
.home-banner .banner-mentions {
  margin-bottom: 2rem;
  text-align: center;
}
.home-banner .banner-icon {
  background-color: #fab245;
  border-radius: 5rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 10rem;
  width: 10rem;
}
.home-banner .banner-icon span {
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 4.2rem;
  width: 6rem;
  transform: translate(-50%, -50%);
}
.home-banner .banner-announce {
  background-color: #e6ebf1;
  padding: 2rem 3rem;
}
.home-banner .banner-announce .ba-title {
  color: #d72b2b;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.home-banner .banner-announce .ba-desc p {
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .home-banner {
    padding-bottom: 0;
  }
  .home-banner .banner-wrapper {
    display: flex;
    align-items: flex-start;
  }
  .home-banner .banner-content {
    padding: 2.5rem;
    width: 100%;
  }
  .home-banner .banner-side {
    padding: 5px;
    flex-flow: column nowrap;
    max-width: 80px;
  }
  .home-banner .banner-side img:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 1450px) {
  .home-banner .overlay1 {
    background-position: center 130%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 105%;
    border-radius: 30rem;
    padding: 22rem;
    position: absolute;
    bottom: 0;
    right: 3rem;
    transform: translateY(33%);
  }
}
.booking-option-item {
  border: 2px solid #f6f8fa;
  background-color: #f6f8fa;
  border-radius: 10px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1.5rem;
  position: relative;
  transition: background-color 0.25s, border-color 0.25s;
}

.booking-option-input {
  margin-bottom: 1rem;
}

.booking-option-infos {
  margin-bottom: 1rem;
}
.booking-option-infos .title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.booking-option-infos .desc {
  margin-top: 0.5rem;
}
.booking-option-infos .desc p {
  margin-bottom: 0;
}
.booking-option-infos .unchecked {
  color: #e74c3c;
  font-weight: bold;
}

.booking-option-price {
  color: #00a09c;
  font-size: 2rem;
}
.booking-option-price .price {
  display: inline-block;
  font-weight: bold;
}
.booking-option-price .price-sup {
  display: inline-block;
  font-size: 0.5em;
  margin-left: -0.3em;
  transform: translateY(-0.5em);
}

.booking-option-item.option-added .booking-option-infos .unchecked {
  display: none;
}

@media screen and (min-width: 768px) {
  .booking-option-item {
    flex-flow: row nowrap;
  }

  .booking-option-input {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 1rem;
    text-align: center;
    width: 90px;
  }

  .booking-option-infos {
    flex-grow: 1;
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .booking-option-infos .title {
    text-align: left;
  }

  .booking-option-price {
    flex-shrink: 0;
    text-align: right;
    width: 90px;
  }
}
.btn, .btn-lg, .btn-sm, .btn-xs {
  border-width: 2px;
  border-style: solid;
  border-radius: 6px;
  color: #d72b2b;
  cursor: pointer;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 0.75rem 2rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.5s, border-color 0.5s, color 0.5s;
  /*&::before {
      content: "";
      border-radius: 999rem;
      position: absolute;
      top: 50%;
      left: 50%;
      height: 0;
      width: 0;
      z-index: 0;
      transform: translate(-50%,-50%);
      transition: width .5s, height .5s;
  }*/
  /*span { position: relative; z-index: 1; }*/
  /*&:hover { background-color: inherit; }
  &:hover::before { width: 30rem; height: 30rem; }*/
}

.btn-xs {
  font-size: 1.2rem;
  padding: 0.25rem 1rem;
}

.btn-sm {
  font-size: 1.4rem;
  padding: 0.5rem 1.5rem;
}

.btn-lg {
  font-size: 1.6rem;
  padding: 1.5rem 4rem;
}

.btn-primary {
  background-color: #d72b2b;
  border-color: #d72b2b;
  color: #fff;
  /*&::before { background-color: map-get($theme-colors, primary-light); }*/
}
.btn-primary:hover {
  background-color: #dd4949;
  border-color: #dd4949;
  color: #fff;
}

.btn-primary-outline {
  background-color: transparent;
  border-color: #d72b2b;
  color: #d72b2b;
}
.btn-primary-outline:hover {
  background-color: #8c1a1a;
  border-color: #8c1a1a;
  color: #fff;
}

.btn-primary-dark {
  background-color: #8c1a1a;
  border-color: #8c1a1a;
  color: #fff;
}
.btn-primary-dark:hover {
  background-color: #dd4949;
  border-color: #dd4949;
  color: #fff;
}

.btn-secondary {
  background-color: #fab245;
  border-color: #fab245;
  color: #fff;
}
.btn-secondary:hover {
  background-color: #f9a422;
  border-color: #f9a422;
  color: #fff;
}

.btn-secondary-outline {
  background-color: transparent;
  border-color: #fab245;
  color: #fab245;
}
.btn-secondary-outline:hover {
  background-color: #f9a422;
  border-color: #f9a422;
  color: #fff;
}

.btn-secondary-dark {
  background-color: #f9a422;
  border-color: #f9a422;
  color: #fff;
}
.btn-secondary-dark:hover {
  background-color: #fbc068;
  border-color: #fbc068;
  color: #fff;
}

.btn-tertiary {
  background-color: #00a09c;
  border-color: #00a09c;
  color: #fff;
}
.btn-tertiary:hover {
  background-color: #006d6a;
  border-color: #006d6a;
  color: #fff;
}

.btn-tertiary-outline {
  background-color: transparent;
  border-color: #00a09c;
  color: #00a09c;
}
.btn-tertiary-outline:hover {
  background-color: #006d6a;
  border-color: #006d6a;
  color: #fff;
}

.btn-tertiary-blank {
  background-color: transparent;
  border-color: transparent;
  color: #00a09c;
}
.btn-tertiary-blank:hover {
  background-color: #00a09c;
  color: #fff;
}

.btn-tertiary-dark {
  background-color: #006d6a;
  border-color: #006d6a;
  color: #fff;
}
.btn-tertiary-dark:hover {
  background-color: #00c4bf;
  border-color: #00c4bf;
  color: #fff;
}

.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #2c3e50;
}
.btn-white:hover {
  background-color: transparent;
  color: #fff;
}

.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #fff;
}
.btn-white-outline:hover {
  background-color: #fff;
  color: #2c3e50;
}

.btn-gradient {
  background-image: linear-gradient(90deg, #dd4949, #fbc068, #dd4949, #fbc068);
  background-size: 300% 100%;
  border: none;
  color: #fff;
  line-height: 2;
  transition: background-position 0.5s;
}
.btn-gradient:hover {
  background-position: 100% 0;
  color: #fff;
}

.btn-icon i {
  font-size: 1.3em;
  transform: translateY(0.2em);
}

.btn-wrap a, .btn-wrap button {
  margin: 0.5rem;
  width: 100%;
}

.btn-open-select {
  display: inline-block;
  position: relative;
}
.btn-open-select .nice-select {
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  height: 0;
}
.btn-open-select .nice-select::after, .btn-open-select .nice-select .current {
  display: none;
}

.btn-loading .loading-icon {
  display: inline-block;
  margin-right: 1rem;
  width: 25px;
  -webkit-animation: spin 2.5s linear infinite;
          animation: spin 2.5s linear infinite;
}
.btn-loading .loading-icon > * {
  fill: #fff;
}
.btn-loading.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .btn-wrap a, .btn-wrap button {
    width: auto;
  }
}
.card {
  background-color: #fff;
  border: none;
  border-radius: 5px;
}
.card .card-body {
  padding: 2rem;
}

.card-title {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.card-title::before {
  content: "";
  border: 4px solid #00a09c;
  border-radius: 10px;
  display: block;
  opacity: 0.1;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}
.card-title > * {
  position: relative;
  z-index: 1;
}

.card-map {
  border-radius: 10px;
  overflow: hidden;
}
.card-map .cm-content {
  background-color: #fff;
  padding: 3rem;
}

.card-style-1 {
  margin-top: 2.5rem;
  margin-bottom: 4.5rem;
  position: relative;
}
.card-style-1 > .card-title {
  background-color: #f9dfdf;
  border-radius: 10px;
  color: #d72b2b;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 2.5rem 1.5rem 4rem;
  position: absolute;
  top: 0;
  left: 2rem;
  transform: translateY(-50%);
}
.card-style-1 > .card-title::before {
  content: "\e5cc";
  background-color: #d72b2b;
  border-radius: 99rem;
  color: #fff;
  font-family: "Material Icons Outlined";
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(-50%, -50%);
}
.card-style-1 .card-title-2 {
  background-color: #d72b2b;
  color: #fff;
}
.card-style-1 .card-title-2::before {
  background-color: #fff;
  color: #d72b2b;
}
.card-style-1 .card-body {
  background-color: #fff;
  border-radius: 10px;
  padding: 4rem 2rem 2rem 2rem;
}
.card-style-1 .card-body .card-section:not(:last-child) {
  border-bottom: 2px solid #e6ebf1;
  padding-bottom: 1.5rem;
}
.card-style-1 .card-body .card-section:not(:first-child) {
  padding-top: 1.5rem;
}

.card-style-2 {
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.card-style-2 > .card-title {
  background-color: #d72b2b;
  border-radius: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-50%);
}
.card-style-2 .card-body {
  background-color: #e6ebf1;
  border-radius: 10px;
  padding: 4rem 2rem 2rem 2rem;
}

.card-transparent {
  background-color: transparent;
}

.card-icon {
  display: inline-block;
  margin-left: 1.5rem;
  position: relative;
}
.card-icon .icon {
  background: linear-gradient(0, #dd4949, #fbc068);
  border-radius: 4rem;
  color: #fff;
  padding: 2.2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.card-icon .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-icon .content {
  background-color: #f9dfdf;
  border-radius: 5px;
  padding: 1rem 2rem 1rem 3.5rem;
}
.card-icon .content .title {
  color: #547698;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.card-icon .content .value {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.card-icon.ci-content-transp .content {
  background-color: transparent;
}

.card-icon-2 {
  background-color: #fff;
  border-radius: 5px;
  border-bottom: 6px solid #00a09c;
  padding: 3rem;
  height: 100%;
  transition: background-color 0.5s;
}
.card-icon-2 .icon {
  margin-bottom: 3rem;
}
.card-icon-2 .title {
  color: #2c3e50;
  margin-bottom: 2rem;
}
.card-icon-2:hover {
  background-color: #e7fffe;
}

.card-icon-wrap > * {
  margin-bottom: 0.5rem;
}
.card-icon-wrap > *:not(:first-child), .card-icon-wrap > *:not(:last-child) {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.card-icon-3 {
  border-radius: 5px;
  display: inline-flex;
  font-size: 1.4rem;
  align-items: center;
  padding: 0.5rem;
}
.card-icon-3 .icon {
  margin-right: 0.75rem;
}
.card-icon-3 .icon i {
  font-size: 1.2em;
}
.card-icon-3 .title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.card-icon-3 .value {
  font-size: 1.4rem;
}
.card-icon-3.ci-style-1 {
  background-color: #e6ebf1;
}
.card-icon-3.ci-style-1 .icon {
  color: #00a09c;
}
.card-icon-3.ci-style-1 .title {
  color: #00a09c;
}
.card-icon-3.ci-style-2 {
  background-color: #fef0da;
}
.card-icon-3.ci-style-2 .icon {
  color: #fab245;
}
.card-icon-3.ci-style-2 .title {
  color: #fab245;
}
.card-icon-3.ci-style-3 {
  background-color: #f9dfdf;
}
.card-icon-3.ci-style-3 .icon {
  color: #d72b2b;
}
.card-icon-3.ci-style-3 .title {
  color: #d72b2b;
}
.card-icon-3.ci-style-4 {
  background-color: #e6ebf1;
}
.card-icon-3.ci-style-4 .icon {
  color: #00a09c;
}
.card-icon-3.ci-style-4 .title {
  color: #00a09c;
}

.card-left-img {
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .card-left-img {
    display: block;
  }
}
.card-left-img .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .card-left-img .image {
    max-width: none;
  }
}
.card-left-img .card-body {
  background-color: #fff;
  padding: 25px;
}

.posts-card {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
}
.posts-card img {
  border-radius: 8px;
}

.card-contact {
  display: flex;
  align-items: stretch;
}
.card-contact .card {
  padding: 15px;
  border-radius: 8px;
  justify-content: center;
  width: 100%;
}

.login-card {
  margin: 0 auto;
  max-width: 1050px;
}
.login-card .image {
  background-image: url("/storage/beach-landscape-illustration-tertiary-w400x555.png");
}
@media screen and (max-width: 992px) {
  .login-card .image {
    background-image: url("/storage/beach-landscape-illustration-tertiary-w690x335.png");
  }
}

.testi-card {
  margin-top: 5rem;
  position: relative;
}
.testi-card .testi-avatar {
  background: url("/storage/icones/quote-holiday-hat.svg") center center no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.5rem;
  top: 0;
  transform: translateY(-50%);
  height: 9rem;
  width: 9rem;
}
.testi-card .testi-content {
  background-color: #f6f8fa;
  border-bottom: 6px solid #00a09c;
  border-radius: 5px;
  overflow: hidden;
  padding: 2.5rem 2rem;
}
.testi-card .testi-meta {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 1.5rem;
  padding-bottom: 2.25rem;
  position: relative;
}
.testi-card .testi-meta::before {
  content: "";
  background-color: rgba(230, 235, 241, 0.8);
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
}
.testi-card .testi-meta .author {
  color: #d72b2b;
  font-size: 2rem;
  font-weight: 900;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.testi-card .testi-meta .rating .filled {
  color: #FABB05;
}
.testi-card .testi-text {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media (min-width: 576px) {
  .testi-card .testi-avatar {
    height: 12.5rem;
    width: 12.5rem;
  }
}
@media (min-width: 768px) {
  .card-style-1 .card-body {
    padding: 4rem 3rem 2rem 3rem;
  }

  .card-title {
    font-size: 2.5rem;
  }

  .testi-card .testi-content {
    padding: 2.5rem 3.5rem;
  }
  .testi-card .testi-meta {
    flex-flow: row nowrap;
    align-items: center;
  }
  .testi-card .testi-meta .author {
    margin-bottom: 0;
  }
  .testi-card .testi-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .card-map {
    display: flex;
    align-items: stretch;
  }
  .card-map .cm-map {
    min-width: 500px;
  }
  .card-map .cm-content {
    padding: 5rem;
  }
}
.slick-slider-1 .slick-dots {
  bottom: -35px;
}
.slick-slider-1 .slick-dots li button::before {
  color: #d72b2b;
  font-size: 6rem;
}

@media (min-width: 768px) {
  .testimonial-carousel .slick-slide {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.google-maps-1 {
  height: 400px;
  width: 100%;
}

.icon-text {
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.4rem;
}
.icon-text .icon {
  margin-right: 0.75rem;
}
.icon-text .icon i {
  color: #00a09c;
  font-size: 1.4em;
}
.icon-text .text {
  font-weight: bold;
  margin-top: 0.25em;
}

.icon-text.ic-primary-full .icon i, .icon-text.ic-primary-full .text {
  color: #d72b2b;
}

.icon-text.ic-tertiary .icon i {
  color: #00a09c;
}

.icon-text-2 {
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.4rem;
}
.icon-text-2 .icon {
  margin-right: 1rem;
}
.icon-text-2 .icon i {
  color: #d72b2b;
  font-size: 2.5rem;
}
.icon-text-2 .text .title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.icon-text-2 .text .value {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.icon-text-2 .text .sub {
  color: #95a5a6;
  font-size: 1.3rem;
  font-weight: bold;
}

.icon-round-text {
  display: flex;
  align-items: center;
}
.icon-round-text .icon {
  background: linear-gradient(0, #dd4949, #fbc068);
  border-radius: 4rem;
  color: #fff;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 1.5rem;
  overflow: hidden;
  position: relative;
  height: 4.5rem;
  width: 4.5rem;
}
.icon-round-text .icon > * {
  font-size: 1.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-round-text .text .title {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0;
}
.icon-round-text .text .value {
  color: #547698;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0;
}
.icon-round-text .text .value-sm {
  font-size: 1.3rem;
}
.icon-round-text .text .value-lg {
  font-size: 2rem;
}

.izy-date > * {
  flex: 1 1 0;
}
.izy-date > .izy-date-wrapper {
  display: flex;
  align-items: center;
}
.izy-date .izy-input-final {
  opacity: 0;
  overflow: hidden !important;
  padding: 0;
  margin: 0;
  height: 0 !important;
  visibility: hidden;
}
.izy-date .izy-input-month {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.label-value .lv-label {
  color: #2c3e50;
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.label-value .lv-value {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
}

.check-list li {
  color: #34495e;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  padding-left: 2.25rem;
  position: relative;
}
.check-list li::before {
  content: "\e876";
  color: #00a09c;
  font-family: "Material Icons Outlined";
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.check-list-2 li {
  color: #34495e;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 3.5rem;
  position: relative;
}
.check-list-2 li::before {
  content: "\e2e6";
  color: #00a09c;
  font-family: "Material Icons Outlined";
  font-size: 1.5em;
  position: absolute;
  top: -0.25em;
  left: 0;
}

.check-list-3 li {
  color: #34495e;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  padding-left: 2.25rem;
  position: relative;
}
.check-list-3 li::before {
  content: "\e614";
  color: #fab245;
  font-family: "Material Icons Outlined";
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.check-list-doodle li {
  color: #00a09c;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 5rem;
  position: relative;
  margin-bottom: 2.5rem;
  text-align: left;
}
.check-list-doodle li::before {
  content: "";
  background: url("/storage/icones/check-doodle-tertiary.svg") center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  height: 3.5rem;
  width: 3.5rem;
  transform: translateY(-50%);
}

.car-loader {
  text-align: center;
}
.car-loader .car {
  margin-bottom: 1.5rem;
  transform: translateX(-15px);
}
.car-loader .car__body {
  -webkit-animation: shake 0.2s ease-in-out infinite alternate;
          animation: shake 0.2s ease-in-out infinite alternate;
}
.car-loader .car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  -webkit-animation: line 0.8s ease-in-out infinite;
          animation: line 0.8s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.car-loader .car__line--top {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.car-loader .car__line--middle {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.car-loader .car__line--bottom {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.car-loader .label {
  color: #547698;
  font-size: 1.6rem;
  line-height: 1.4;
}

@-webkit-keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}

@keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}
@-webkit-keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}
@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}
.menu li {
  margin-bottom: 1.5rem;
}
.menu li a {
  color: #2c3e50;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  padding-left: 2.5rem;
  position: relative;
  transition: color 0.5s;
}
.menu li a::before {
  content: "\e5c8";
  color: #00a09c;
  font-family: "Material Icons Outlined";
  position: absolute;
  top: 0.05em;
  left: 0;
}
.menu li a:hover {
  color: #00a09c;
}

button.dropdown-toggle + .dropdown-menu {
  border: 1px solid #dedede;
  box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
}
button.dropdown-toggle + .dropdown-menu .dropdown-item {
  color: #34495e;
  font-size: 1.4rem;
  padding: 0.75rem 2rem;
  transition: background-color 0.5s;
}
button.dropdown-toggle + .dropdown-menu .dropdown-item:hover, button.dropdown-toggle + .dropdown-menu .dropdown-item:active {
  background-color: #e6ebf1;
  color: #34495e;
}

.modal-simple .modal-header, .modal-simple .modal-body {
  padding: 2rem;
}
.modal-simple .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
.modal-simple .modal-body {
  position: relative;
  z-index: 1;
}
.modal-simple .close {
  background-color: transparent;
  border-color: transparent;
  color: #d72b2b;
  font-size: 40px;
}
.modal-simple .modal-content {
  border: none;
  border-radius: 15px;
}

@media screen and (min-width: 768px) {
  .modal-simple .modal-dialog {
    max-width: 700px;
  }

  .modal-simple .modal-header,
.modal-simple .modal-body {
    padding: 3rem;
  }

  .modal-simple .modal-header {
    padding-bottom: 0;
  }
}
.modal-style-1 {
  z-index: 99999999;
}
.modal-style-1 .modal-dialog {
  margin: 5rem auto;
}
.modal-style-1 .modal-content {
  border: none;
  border-radius: 0;
}
.modal-style-1 .modal-header {
  border-bottom: 0;
  padding-bottom: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 1;
}
.modal-style-1 .modal-header .close {
  background: transparent;
  border: none;
  font-size: 50px;
  line-height: 1;
  opacity: 0.2;
  padding: 15px;
  transition: 0.25s;
}
.modal-style-1 .modal-header .close:hover {
  opacity: 0.4;
}
.modal-style-1 .modal-body {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.modal-style-1 .modal-icon {
  background-color: #fef0da;
  border-radius: 999px;
  color: #aaa;
  display: inline-block;
  padding: 20px;
}
.modal-style-1 .modal-icon svg {
  fill: #fab245;
}
.modal-style-1 .modal-footer {
  background-color: #fab245;
  border-top: none;
  border-radius: 0;
  justify-content: center;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal-style-1 .modal-footer::before {
  content: "";
  border: 10px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.modal-style-1.modal-color-2 .modal-icon {
  background-color: #e6ebf1;
}
.modal-style-1.modal-color-2 .modal-icon svg {
  fill: #00a09c;
}
.modal-style-1.modal-color-2 .modal-footer {
  background-color: #00a09c;
}

.onoffswitcher {
  display: inline-flex;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitcher-checkbox {
  display: none;
}

.onoffswitcher-wrap {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  flex-shrink: 0;
  margin-bottom: 0;
  position: relative;
  width: 52px;
}

.onoffswitcher-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitcher-inner:before, .onoffswitcher-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 22px;
  padding: 0;
  line-height: 22px;
  font-size: 12px;
  color: black;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitcher-inner:before {
  content: "";
  font-size: 11px;
  padding-left: 6px;
  background-color: #fab245;
  color: #FFFFFF;
}

.onoffswitcher-inner:after {
  content: "";
  font-size: 10px;
  padding-right: 6px;
  background-color: #95a5a6;
  color: #FFFFFF;
  text-align: right;
}

.onoffswitcher-switch {
  display: block;
  width: 16px;
  height: 16px;
  margin: 5px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 24px;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  transform: translateY(-81%);
  transition: all 0.3s ease-in 0s;
}

.onoffswitcher-label {
  color: #95a5a6;
  display: inline-block;
  font-weight: bold;
  flex-grow: 1;
  margin-bottom: 0;
  transition: color 0.3s;
}

.onoffswitcher-checkbox:checked + .onoffswitcher-wrap > .onoffswitcher-inner {
  margin-left: 0;
}
.onoffswitcher-checkbox:checked + .onoffswitcher-wrap > .onoffswitcher-switch {
  right: -2px;
}
.onoffswitcher-checkbox:checked ~ .onoffswitcher-label {
  color: #fab245;
}

.pellet {
  color: #fff;
  display: inline-block;
  padding: 1rem 1.5rem;
}

.pellet-btn {
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 0.75rem 2rem;
  text-align: center;
  text-transform: uppercase;
}

.pellet-danger {
  background-color: #e74c3c;
}

.pellet-neutral {
  background-color: #95a5a6;
}

.pellet-warning {
  background-color: #f39c12;
}

.pellet-md {
  font-size: 1.8rem;
}

.pellet-google-rate {
  background-color: #1266f1;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 15px 20px;
  transition: background-color 0.3s;
  max-width: 365px;
}
.pellet-google-rate .pgr-icon {
  margin-right: 10px;
}
.pellet-google-rate .pgr-title {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}
.pellet-google-rate .pgr-total {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 5px;
}
.pellet-google-rate .pgr-total-sup {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}
.pellet-google-rate .pgr-rates {
  display: flex;
  align-items: center;
}
.pellet-google-rate .pgr-stars {
  display: inline-flex;
  margin-right: 5px;
}
.pellet-google-rate .pgr-stars > .filled {
  color: #FABB05;
}
.pellet-google-rate:hover, .pellet-google-rate:focus {
  background-color: #4285f4;
}

.play-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.play-btn .pb-btn {
  background: linear-gradient(0, #dd4949, #fbc068);
  border-radius: 999rem;
  margin-right: 1.5rem;
  padding: 2.5rem;
  position: relative;
}
.play-btn .pb-btn::after {
  content: "\e037";
  color: #fff;
  font-family: "Material Icons Outlined";
  font-size: 3.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.play-btn .pb-btn::before {
  content: "";
  background-color: #d72b2b;
  border-radius: 999rem;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 5rem;
  width: 5rem;
  -webkit-animation: notifCenter 1s forwards ease-out infinite;
          animation: notifCenter 1s forwards ease-out infinite;
  z-index: -1;
}
.play-btn .pb-text {
  color: #d72b2b;
  font-size: 2rem;
  font-weight: 700;
}

.post-header {
  background-color: #ffffff;
  margin-top: -70px;
  width: calc(100% - 100px);
  padding: 30px 0 0 0;
  position: relative;
  border-radius: 0 8px 0 0;
}

.post-img img {
  border-radius: 8px;
  width: 100%;
}

.post-content a {
  color: #d72b2b;
}
.post-content a:hover {
  color: #dd4949;
}
.post-content h2 {
  font-size: 2rem;
  color: #2c3e50;
}
.post-content h3 {
  font-size: 1.6rem;
  color: #00a09c;
}
.post-content strong {
  font-weight: 600;
}

.post-link-articles a {
  color: #333333;
}
.post-link-articles a:hover {
  color: #547698;
}

.services-block .sbi-image {
  background-size: cover;
  background-position: center center;
  height: 30rem;
}
.services-block .sbi-content {
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .services-block .service-block-item {
    margin: 0 auto;
  }
  .services-block .sbi-image {
    height: 35rem;
  }
  .services-block .sbi-content {
    padding: 3rem 4rem;
  }
}
@media (min-width: 1200px) {
  .services-block .service-block-item {
    display: flex;
    align-items: stretch;
    position: relative;
    max-width: none;
  }
  .services-block .sbi-image {
    flex-shrink: 0;
    height: auto;
    width: 40%;
  }
  .services-block .sbi-content {
    padding: 8rem 6rem;
    max-width: 90rem;
  }
  .services-block .sbi-content .title {
    font-size: 3rem;
  }
  .services-block .service-block-item:nth-child(even) {
    justify-content: flex-end;
  }
  .services-block .service-block-item:nth-child(even) .sbi-image {
    order: 2;
  }
  .services-block .service-block-item:nth-child(even) .sbi-text {
    order: 1;
  }
}
.home-slider .splide__slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
}
.home-slider .splide__slide::after {
  content: "";
  background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
}
.home-slider .splide__slide > * {
  position: relative;
  z-index: 1;
}
.home-slider img {
  width: 100%;
}
.home-slider .hs-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  line-height: 1.4;
  padding: 5rem 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .home-slider .hs-text {
    font-size: 3rem;
  }
}
/*.steps-wizard {
    margin-bottom: 1.5rem;
    .step-item {
        background-color: map-get($theme-colors, 'dark-white-2');
        color: map-get($theme-colors, 'dark-light-2');
        display: block;
        font-size: 1.6rem;
        padding: .75rem 1.5rem;

        &.active {
            background-color: $primary-color;
            color: #fff;
            font-weight: bold;
        }

        .step-item-number {
            font-weight: bold;
            display: inline-block;
            margin-right: .25rem;
            padding-right: 1.5rem;
            position: relative;
            &::after {
                content: "\ea50";
                font-family: "Material Icons Outlined";
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
            }
        }
    }
    a.step-item {
        background-color: #fff;
        color: $body-color;
    }
}

@include mq(md) {
    .steps-wizard {
        display: flex;
        flex-flow: row wrap;
        .step-item {
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            flex-grow: 1;
        }
    }
}

@include mq(xl) {
    .steps-wizard {
        flex-flow: row nowrap;
        .step-item {
            flex: 1 1 0;
        }
    }
}*/
.steps-wizard .step-item {
  display: none;
  align-items: center;
  margin-bottom: 10px;
}
.steps-wizard .step-item .step-item-number {
  background-color: #e6ebf1;
  border-radius: 20px;
  display: inline-block;
  line-height: 1;
  margin-right: 10px;
  padding: 20px;
  position: relative;
}
.steps-wizard .step-item .step-item-number > * {
  color: #8aa4be;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.steps-wizard .step-item .step-item-title {
  font-size: 18px;
}
.steps-wizard a.step-item .step-item-number {
  background-color: #00a09c;
  position: relative;
}
.steps-wizard a.step-item .step-item-number::before {
  content: "\e876";
  color: #fff;
  font-family: "Material Icons Outlined";
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.steps-wizard a.step-item .step-item-number > * {
  display: none;
}
.steps-wizard a.step-item .step-item-title {
  color: #00a09c;
}
.steps-wizard .step-item.active .step-item-number {
  background-color: #d72b2b;
  font-weight: bold;
}
.steps-wizard .step-item.active .step-item-number > * {
  color: #fff;
}
.steps-wizard .step-item.active .step-item-title {
  color: #d72b2b;
  font-weight: bold;
}

@media (min-width: 768px) {
  .steps-wizard {
    display: flex;
    align-items: flex-start;
  }
  .steps-wizard .step-item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    flex: 1 1 0;
    position: relative;
    text-align: center;
  }
  .steps-wizard .step-item:not(:last-child)::before {
    content: "";
    background-color: #e6ebf1;
    border-radius: 3px;
    position: absolute;
    top: 1.9rem;
    left: calc(50% + 3rem);
    width: calc(100% - 6rem);
    height: 3px;
  }
  .steps-wizard .step-item .step-item-number {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .steps-wizard .step-item .step-item-title {
    font-size: 16px;
  }
  .steps-wizard a.step-item:not(.active):not(:last-child)::before {
    background-color: rgba(0, 160, 156, 0.5);
  }
}
.table > :not(:first-child) {
  border-top: none;
}

.table-style-1 thead th {
  background-color: #f6f8fa;
  border-bottom-color: #00c4bf;
  color: #00a09c;
  text-align: center;
}
.table-style-1 thead tr > th:first-child {
  text-align: left;
}
.table-style-1 tbody td {
  text-align: center;
  vertical-align: middle;
}
.table-style-1 tbody tr > td.col-option {
  color: #547698;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}
.table-style-1 tbody tr > td.col-price-total {
  color: #2c3e50;
  font-size: 1.6rem;
  font-weight: bold;
}

.table-style-2 {
  width: 100%;
}
.table-style-2 thead th {
  background-color: #e6ebf1;
  border-bottom-color: #00c4bf;
  color: #00a09c;
  font-size: 1.4rem;
  padding: 1rem 1rem;
  text-align: center;
}
.table-style-2 tbody td {
  padding: 1rem;
  text-align: center;
}

.table td, .table th {
  border: none;
}

.table-options tr > td {
  padding: 0.5rem;
}
.table-options tr > td:nth-child(1) {
  color: #00a09c;
  font-size: 1.6rem;
  font-weight: bold;
  width: 10%;
}
.table-options tr > td:nth-child(2) {
  color: #547698;
  font-size: 1.4rem;
  vertical-align: top;
  width: 70%;
}
.table-options tr > td:nth-child(3) {
  color: #00a09c;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  width: 20%;
}

.table-options-summary {
  min-width: 500px;
}
.table-options-summary .col-options {
  width: 45%;
}
.table-options-summary .col-qty {
  width: 15%;
}
.table-options-summary .col-price-u {
  width: 10%;
}
.table-options-summary .col-price-total {
  width: 15%;
}
.table-options-summary .col-actions {
  width: 15%;
}

.table-booking-total tr > td {
  padding: 0.5rem;
}
.table-booking-total tr > td:nth-child(1) {
  color: #547698;
  font-size: 1.5rem;
  font-weight: bold;
  width: 70%;
}
.table-booking-total tr > td:nth-child(2) {
  color: #d72b2b;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  width: 30%;
}
.table-booking-total tr:last-child > td:nth-child(2) {
  font-size: 2.4rem;
}

.table-final-summary th, .table-final-summary td {
  padding: 0.4rem;
}
.table-final-summary tr > td:first-child {
  color: #547698;
  font-size: 1.4rem;
  font-weight: bold;
  width: 40%;
}
.table-final-summary tr > td:last-child {
  color: #00a09c;
  font-size: 1.4rem;
  font-weight: bold;
  width: 60%;
}

.table-booking-list {
  min-width: 650px;
}
.table-booking-list thead th.col-cat {
  text-align: left;
}
.table-booking-list tbody td.col-ref,
.table-booking-list tbody td.col-total {
  font-size: 1.5rem;
  font-weight: bold;
}
.table-booking-list tbody td.col-cat {
  text-align: left;
}
.table-booking-list tbody td.col-actions {
  text-align: right;
}

.table-driver-list {
  min-width: 600px;
}
.table-driver-list tbody td.col-actions {
  text-align: right;
}

.table-simple-label {
  width: 100%;
}
.table-simple-label tbody td {
  padding: 0.5rem;
  vertical-align: top;
  width: 50%;
}
.table-simple-label tbody td:first-child {
  font-weight: bold;
}
.table-simple-label tbody td:last-child {
  text-align: right;
}

.table-summary-1 tbody td:first-child {
  color: #547698;
  font-size: 1.5rem;
  font-weight: bold;
  width: 70%;
}
.table-summary-1 tbody td:last-child {
  color: #00a09c;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  width: 30%;
}

.col-novalues {
  font-style: italic;
  padding: 2rem !important;
  text-align: center;
}

.tooltip-custom {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.2rem;
  z-index: 99999;
}
.tooltip-custom .tooltip-icon {
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}
.tooltip-custom .tooltip-icon i {
  color: #d72b2b;
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
}
.tooltip-custom .tooltip-icon, .tooltip-custom .tooltip-icon i {
  width: 2.2rem;
}
.tooltip-custom .tooltip-icon:hover, .tooltip-custom .tooltip-icon:focus {
  color: #00a09c;
}
.tooltip-custom .tooltip-icon:hover + .tooltip-content, .tooltip-custom .tooltip-icon:focus + .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-75%, 0);
}
.tooltip-custom .tooltip-content {
  background-color: #2c3e50;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.2;
  opacity: 0;
  padding: 10px;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 35px;
  text-align: center;
  transform: translate(-75%, 1rem);
  visibility: hidden;
  width: 25rem;
  transition: 0.3s ease-in-out;
  white-space: normal;
}
.tooltip-custom .tooltip-content::before {
  content: "";
  background-color: #2c3e50;
  position: absolute;
  bottom: 0;
  left: 66%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, 50%) rotate(45deg);
}

.tooltip-wrap {
  padding-right: 3rem;
  position: relative;
}
.tooltip-wrap.tooltip-align-center .tooltip-custom {
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 576px) {
  .tooltip-wrap.tooltip-break-sm {
    padding-right: 0;
    padding-bottom: 3rem;
  }
  .tooltip-wrap.tooltip-break-sm .tooltip-custom {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
  .tooltip-wrap.tooltip-break-sm.tooltip-align-center .tooltip-custom {
    transform: translateX(-50%);
  }
  .tooltip-wrap.tooltip-break-sm.tooltip-align-center .tooltip-custom .tooltip-content {
    left: 50%;
    transform: translate(-50%, 1rem);
  }
  .tooltip-wrap.tooltip-break-sm.tooltip-align-center .tooltip-custom .tooltip-content::before {
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
  }
  .tooltip-wrap.tooltip-break-sm.tooltip-align-center .tooltip-custom:hover .tooltip-content, .tooltip-wrap.tooltip-break-sm.tooltip-align-center .tooltip-custom:focus .tooltip-content {
    transform: translate(-50%, 0);
  }
}
.updown-qty {
  display: inline-flex !important;
  flex-flow: row nowrap;
  align-items: center;
}
.updown-qty .uq-up, .updown-qty .uq-down {
  border: 2px solid #fab245;
  background-color: #fab245;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  padding: 20px;
  position: relative;
  transition: background-color 0.5s, border-color 0.5s;
}
.updown-qty .uq-up:hover, .updown-qty .uq-down:hover {
  background-color: transparent;
  border-color: #fab245;
}
.updown-qty .uq-up:hover::before, .updown-qty .uq-down:hover::before {
  color: #fab245;
}
.updown-qty .uq-up::before,
.updown-qty .uq-down::before {
  color: #fff;
  font-family: "Material Icons Outlined";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.5s;
}
.updown-qty .uq-up::before {
  content: "\e145";
}
.updown-qty .uq-down::before {
  content: "\e15b";
}
.updown-qty input {
  font-size: 1.4rem;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
  height: auto;
  width: 50px;
}

.updown-qty.size-sm .uq-up, .updown-qty.size-sm .uq-down {
  padding: 10px;
}
.updown-qty.size-sm input {
  margin-left: 5px;
  margin-right: 5px;
  padding: 2px;
  width: 30px;
}

.vehicle-card {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.vehicle-card .vc-header {
  background-color: #f9dfdf;
  border-radius: 10px;
  padding: 1rem 2rem;
  position: absolute;
  top: 0;
  left: 2rem;
  transform: translateY(-60%);
}
.vehicle-card .vc-header .title {
  color: #d72b2b;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.vehicle-card .vc-header .sub {
  color: #547698;
  font-size: 1.3rem;
  font-weight: bold;
}
.vehicle-card .vc-body {
  background-color: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
}
.vehicle-card .vc-image {
  margin: 0 auto 0.5rem auto;
  text-align: center;
}
.vehicle-card .vc-image__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.vehicle-card .vc-image img {
  display: inline-block;
  margin: 0 auto 1rem auto;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.vehicle-card .vc-infos {
  margin-bottom: 2rem;
}
.vehicle-card .vc-desc {
  margin-bottom: 1rem;
}
.vehicle-card .vc-price {
  position: relative;
}
.vehicle-card .vc-price .vc-price-wrap {
  background-color: #e6ebf1;
  border-radius: 5px;
  padding: 1.5rem;
  position: relative;
  text-align: center;
}
.vehicle-card .vc-price .vc-price-overlay {
  background-color: #e6ebf1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.vehicle-card .vc-price .vc-price-top {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.vehicle-card .vc-price .vc-price-price {
  color: #d72b2b;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.vehicle-card .vc-price .vc-price-text {
  margin-bottom: 1rem;
}
.vehicle-card .vc-price .vc-price-button {
  width: 100%;
}
.vehicle-card .vc-price .vc-actions {
  position: relative;
}
.vehicle-card .vc-price .vc-loader {
  background-color: #e6ebf1;
  border-radius: 5px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.vehicle-card .vc-price .vc-loader .vc-loader-icon {
  margin-right: 15px;
  width: 30px;
  -webkit-animation: bounce 1s infinite;
          animation: bounce 1s infinite;
}
.vehicle-card .vc-price .vc-loader .vc-loader-label {
  color: #00a09c;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}
.vehicle-card .vc-divider {
  border: none;
  border-top: 6px solid #f6f8fa;
}

.vehicle-card.unavailable .vc-header {
  background-color: #f6f8fa;
}
.vehicle-card.unavailable .vc-image img {
  opacity: 0.4;
}

.vehicle-card:not(.is-loading) .vc-loader {
  display: none;
}

.rental-vehicues .rental-card {
  background: #ffffff;
  border-radius: 8px;
  padding-bottom: 20px;
}
.rental-vehicues img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .vehicle-card .vc-body {
    display: flex;
  }
  .vehicle-card .vc-body > * {
    flex: 1 1 0;
  }
  .vehicle-card .vc-body > *:first-child {
    margin-right: 2.5rem;
  }
  .vehicle-card .vc-body > *:last-child {
    margin-left: 2.5rem;
  }
  .vehicle-card .vc-image {
    max-width: 250px;
  }
  .vehicle-card .vc-image img {
    max-width: 100%;
  }
  .vehicle-card .vc-infos {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .vehicle-card .vc-stats {
    margin-bottom: 15px;
    width: 100%;
  }
  .vehicle-card .vc-desc, .vehicle-card .vc-price {
    width: 50%;
  }
}
#booking_summary_aside {
  margin: 0 auto;
  position: relative;
  max-width: 400px;
  z-index: 5;
}

.widget-title {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3rem;
  position: relative;
}
.widget-title::before {
  content: "";
  border: 4px solid #00a09c;
  border-radius: 10px;
  display: block;
  opacity: 0.1;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}
.widget-title > * {
  position: relative;
  z-index: 1;
}

.widget-card {
  background-color: #fff;
  border-radius: 10px;
}
.widget-card .widget-body {
  padding: 2rem;
}
.widget-card .widget-section {
  border-bottom: 4px solid #f6f8fa;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.widget-card .widget-section:first-child {
  padding-top: 0;
}
.widget-card .widget-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-card .widget-section-title {
  color: #2c3e50;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.widget-card-2 {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
}
.widget-card-2 .widget-title-2 {
  color: #2c3e50;
  font-size: 2rem;
  padding-left: 3rem;
  position: relative;
}
.widget-card-2 .widget-title-2::before {
  content: "\e5cc";
  color: #00a09c;
  font-family: "Material Icons Outlined";
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.widget-card-2 .widget-image-1 {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}

.widget-account-infos {
  margin-bottom: 2rem;
  text-align: center;
}
.widget-account-infos .account-avatar {
  margin-bottom: 1rem;
}
.widget-account-infos .account-infos {
  margin-bottom: 1rem;
}
.widget-account-infos .account-infos .ai-sup {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.widget-account-infos .account-infos .ai-main {
  font-size: 2.5rem;
  font-weight: bold;
}

.widget-menu {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  overflow: hidden;
}
.widget-menu li a {
  color: #34495e;
  font-size: 1.6rem;
  display: block;
  padding: 1.5rem 3rem;
  transition: background-color 0.5s;
}
.widget-menu li a i {
  color: #00a09c;
  margin-right: 1rem;
}
.widget-menu li a:hover {
  background-color: #e6ebf1;
}

.header {
  position: relative;
  z-index: 10;
}

.header-top {
  background-color: #e6ebf1;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.header-main {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-main .header-logo {
  display: block;
  margin-right: 10px;
}
.header-main .header-logo-text {
  display: flex;
  align-items: center;
}
.header-main .header-cards {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-main .section-title .sup {
  font-size: 1.2rem;
}
.header-main .section-title .title {
  font-size: 1.6rem;
}

@media (min-width: 1200px) {
  .header-main .header-logo {
    margin-right: 20px;
  }
  .header-main .section-title .sup {
    font-size: 1.8rem;
  }
  .header-main .section-title .title {
    font-size: 2.5rem;
  }
}
.header-menu-wrap {
  background-color: #e6ebf1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-right: 1.5rem;
}
.header-menu-wrap .nav-toggle {
  display: none;
}

.header-menu-btn {
  background-color: #2c3e50;
  display: block;
  padding: 3rem;
  position: relative;
  transition: background-color 0.5s;
}
.header-menu-btn i {
  color: #fff;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-menu-btn:hover {
  background-color: #dd4949;
}

.header-menu-menu {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  margin-right: auto;
}
.header-menu-menu li.menu-item-btn {
  text-align: center;
}
.header-menu-menu a:not(.btn):not(.btn-xs):not(.btn-sm):not(.btn-lg) {
  color: #34495e;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  margin: 0 2rem;
}
.header-menu-menu a:not(.btn):not(.btn-xs):not(.btn-sm):not(.btn-lg):hover, .header-menu-menu a:not(.btn):not(.btn-xs):not(.btn-sm):not(.btn-lg).active {
  color: #d72b2b;
}

.header-menu-right {
  display: flex;
  align-items: center;
}

.language-switcher {
  border-radius: 5px;
  list-style: none;
  padding: 1rem 1.5rem;
  position: relative;
}
.language-switcher .language-dropdown-active {
  color: #2c3e50;
  font-weight: bold;
}
.language-switcher .language-dropdown-active img {
  display: inline-block;
  margin-right: 5px;
}
.language-switcher .language-dropdown-active i.fa-chevron-down {
  font-size: 8px;
  margin-left: 5px;
}
.language-switcher .language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  min-width: 200px;
  background: #fff;
  border-radius: 5px;
  transform: translateY(20px);
  box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
  visibility: hidden;
  opacity: 0;
  padding: 20px;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.language-switcher .language-dropdown a {
  color: #34495e;
  font-weight: bold;
}
.language-switcher:hover .language-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1200px) {
  .header-main .header-cards > *:not(:last-child) {
    margin-right: 3.5rem;
  }
}
.header.is-mobile {
  z-index: 999999;
}
.header.is-mobile .header-nav > *:not(.nav-toggle):not(.header-menu) {
  display: none;
}
.header.is-mobile .header-menu-menu-wrap {
  background-color: rgba(44, 62, 80, 0.7);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
}
.header.is-mobile .header-menu-menu {
  background-color: #fff;
  display: block;
  overflow-y: scroll;
  padding-top: 6rem;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 320px;
  transform: translateX(100%);
}
.header.is-mobile .header-menu-menu .header-mobile-logo {
  padding: 2rem;
}
.header.is-mobile .header-menu-menu > li {
  border-bottom: 1px solid #f9dfdf;
}
.header.is-mobile .header-menu-menu > li > a:not(.btn):not(.btn-xs):not(.btn-sm):not(.btn-lg) {
  color: #d72b2b;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 2rem;
  transition: background-color 0.5s, color 0.5s;
}
.header.is-mobile .header-menu-menu > li:hover > a:not(.btn):not(.btn-xs):not(.btn-sm):not(.btn-lg) {
  background-color: #f9dfdf;
}
.header.is-mobile .header-menu-menu > li:last-child {
  margin-top: 1rem;
}
.header.is-mobile .header-menu-menu > li.menu-item-btn {
  border-bottom: none;
}
.header.is-mobile .header-menu-menu > li.has-children > a {
  position: relative;
}
.header.is-mobile .header-menu-menu > li.has-children > a::after {
  content: "\e313";
  color: inherit;
  font-family: "Material Icons";
  font-size: 2rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.header.is-mobile .header-menu-menu > li.has-children > .menu-dropdown {
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s;
}
.header.is-mobile .header-menu-menu > li.has-children > .menu-dropdown li:first-child {
  margin-top: 1.5rem;
}
.header.is-mobile .header-menu-menu > li.has-children > .menu-dropdown li:last-child {
  margin-bottom: 1.5rem;
}
.header.is-mobile .header-menu-menu > li.has-children > .menu-dropdown a {
  color: #34495e;
  display: block;
  font-size: 1.4rem;
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  position: relative;
  transition: color 0.5s;
}
.header.is-mobile .header-menu-menu > li.has-children > .menu-dropdown a::before {
  content: "\e315";
  color: #d72b2b;
  font-family: "Material Icons";
  font-size: 1.6rem;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.header.is-mobile .header-menu-menu > li.has-children > .menu-dropdown li:hover a {
  color: #d72b2b;
}
.header.is-mobile .header-menu-menu > li.has-children.active > .menu-dropdown {
  overflow-y: scroll;
  max-height: 18rem;
}
.header.is-mobile .nav-toggle {
  display: block;
  padding: 2rem 2rem 2rem 1.2rem;
  width: 20px;
  height: 2px;
  border: 0;
  box-sizing: content-box;
  background-clip: content-box;
  transition: background-color 500ms ease-in-out 0.25s, transform 0.5s;
  background-color: #d72b2b;
}
.header.is-mobile .nav-toggle:hover {
  cursor: pointer;
}
.header.is-mobile .nav-toggle:before, .header.is-mobile .nav-toggle:after {
  position: relative;
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #d72b2b;
  transition: transform 500ms ease-in-out;
}
.header.is-mobile .nav-toggle:before {
  top: -7px;
}
.header.is-mobile .nav-toggle:after {
  bottom: -4px;
}
.header.is-mobile .nav-toggle.active {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 2rem;
  right: 2rem;
  transition-delay: 0s;
  z-index: 99999999;
}
.header.is-mobile .nav-toggle.active:before {
  transform: translateY(6px) rotate(-225deg);
}
.header.is-mobile .nav-toggle.active:after {
  transform: translateY(-6px) rotate(225deg);
}

.header.is-mobile.menu-open .header-menu-menu-wrap {
  opacity: 1;
  visibility: visible;
}
.header.is-mobile.menu-open .header-menu-menu-wrap > .header-menu-menu {
  transform: translateX(0);
}
.header.is-mobile.menu-open .nav-toggle.active::before, .header.is-mobile.menu-open .nav-toggle.active::after {
  background-color: #d72b2b;
}

body.is-ready .header.is-mobile .header-menu-menu {
  transition: transform 0.5s;
}

body.is-ready .header.is-mobile .header-menu-menu-wrap {
  transition: opacity 0.5s, visibility 0.5s;
}

.footer {
  overflow: hidden;
}
.footer .footer-main {
  background-color: #e6ebf1;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}
.footer .footer-main::before {
  content: "";
  background: url("/storage/arriere-plan/beach-car-tourist-holidays-car-shadow.svg") center center no-repeat;
  background-size: cover;
  opacity: 0.06;
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 60rem;
  height: 40rem;
}
.footer .footer-main > * {
  position: relative;
  z-index: 1;
}
.footer .footer-bottom {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section.section-cta-1 {
  padding-bottom: 10rem;
  position: relative;
  text-align: center;
}
.section.section-cta-1::before {
  content: "";
  background: url("/storage/arriere-plan/beach-car-tourist-holidays.svg") center right no-repeat;
  background-size: cover;
  opacity: 0.08;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60rem;
  width: 100%;
  z-index: 0;
}
.section.section-cta-1 > * {
  position: relative;
  z-index: 1;
}
.section.section-cta-1 .section-title::before {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .section.section-cta-1 {
    padding-bottom: 20rem;
    position: relative;
    text-align: left;
  }
  .section.section-cta-1::before {
    opacity: 1;
  }
  .section.section-cta-1 .section-title::before {
    left: -2rem;
    transform: translateY(-50%);
  }
}
.page-header {
  background: url("/storage/arriere-plan/palm-tree-on-sandy-beach-w1920x400.jpg") center center no-repeat;
  background-size: cover;
  margin-top: -3rem;
  padding-top: 3rem;
  position: relative;
}
.page-header::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.page-header .container {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  position: relative;
  z-index: 1;
}
.page-header .page-header-sup {
  color: #547698;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.page-header .page-header-title {
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.page-header-2 {
  padding-top: 20rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.page-header-2::before {
  content: "";
  background: url("/storage/beach-landscape-illustration-secondary-1.svg") bottom center no-repeat;
  background-size: cover;
  border-radius: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  height: 18rem;
  width: 100%;
}
.page-header-2 .page-header-title {
  color: #2c3e50;
  font-size: 2.5rem;
  padding-left: 3rem;
  position: relative;
}
.page-header-2 .page-header-title::before {
  content: "\e5cc";
  color: #00a09c;
  font-family: "Material Icons Outlined";
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  .page-header::before {
    top: 50%;
    right: calc(40% + 10rem);
    transform: translateY(-50%) skewX(20deg);
  }
  .page-header .page-header-title {
    font-size: 3rem;
  }
}
.section-toggle-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.section-toggle-header > *:first-child {
  margin-right: 1rem;
}

.section-toggle-content {
  margin-top: 1.5rem;
}

.bg-dark-light {
  background-color: #547698 !important;
}

.bg-dark-white-2 {
  background-color: #f6f8fa !important;
}

.bg-secondary {
  background-color: #fab245 !important;
}

.icon-fix {
  font-size: 1.2em;
  transform: translateY(0.18em);
}

.mb-all-0, .mb-all-0 * {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 4rem !important;
}

.mb-15 {
  margin-bottom: 6rem !important;
}

.mb-20 {
  margin-bottom: 8rem !important;
}

.mw-none {
  max-width: none !important;
}

.text-bold {
  font-weight: 700;
}

.text-primary {
  color: #d72b2b !important;
}

.text-secondary {
  color: #fab245 !important;
}

.text-tertiary {
  color: #00a09c !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-dark {
  color: #547698 !important;
}

.text-dark-2 {
  color: #2c3e50 !important;
}

.text-white-2 {
  color: rgba(255, 255, 255, 0.8);
}

.text-lg {
  font-size: 1.6rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
}

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