/* ABSTRACTS */
:root {
  /* COLOR VARS */
  --primary: #ED2330 !important;
  --primary-light: #ffd7dc !important;
  --secondary-1: #FDDA25;
  --secondary-2: #6ACFF6;
  --secondary-3: #fff7d0;
  --white: #ffffff;
  --grey-1: #7c7c7c;
  --grey-2: #d7d7d7;
  --grey-3: #f3f3f3;
  --grey-4: #cecece;
  --grey-5: #3c3c43;
  --black-1: #111111;
  /* LAYOUT VARS */
  --navbar-height: 80px;
}

/* 'respond' mixin usage example */
/*
body {
  background-color: #fff;

  @include respond(sm) {
    background-color: red;
  }

  @include respond(md) {
    background-color: green;
  }

  @include respond(lg) {
    background-color: blue;
  }

  @include respond(xl) {
    background-color: cyan;
  }
}*/
/* BASE */
/**** IOS MODAL BUG FIX ****/
@media screen and (max-width: 768px) {
  body.modal-open {
    position: fixed;
  }
}
/**** ICONS ****/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?kbwml9");
  src: url("../fonts/icomoon.eot?kbwml9#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?kbwml9") format("truetype"), url("../fonts/icomoon.woff?kbwml9") format("woff"), url("../fonts/icomoon.svg?kbwml9#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-armor-all:before {
  content: "\e900";
}

.icon-hotwax:before {
  content: "\e901";
}

.icon-teflon:before {
  content: "\e902";
}

.icon-trifoam:before {
  content: "\e903";
}

body, h1, h2, h3, h4, h5, h6, p, div {
  font-family: "Zona Pro", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-size: 14px !important;
}

.font-small {
  font-size: 12px;
  line-height: 16px;
}

.heading-1 {
  margin: 0;
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
  }
}

.heading-2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

.heading-3 {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.styled-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.subtitle {
  border-bottom: 1px solid var(--grey-4);
  font-weight: 600;
  margin: 0 0 0.5em;
  padding-bottom: 0.3em;
}

.text-primary {
  color: var(--primary) !important;
}

.text-default {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}

/* LAYOUT */
/* Body offset for fixed navbar */
body {
  padding-top: var(--navbar-height);
}

/* MAIN CONTAINER */
.main-content-container {
  min-height: 60vh;
}

/* =================================================
   NAVBAR
   ================================================= */
/* Main navbar (desktop) */
.main-navbar {
  background-color: var(--primary);
  height: var(--navbar-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  /* Compensates for the 2px border-bottom on nav-links to keep items vertically centered */
}
.main-navbar .navbar-nav.mr-5 {
  padding-top: 2px;
}
.main-navbar .nav-item {
  position: relative;
}
.main-navbar .nav-item .nav-link {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.main-navbar .nav-item.active .nav-link,
.main-navbar .nav-item .nav-link:hover {
  border-bottom-color: #fdda25;
}
.main-navbar .nav-item:has(.nav-item-dropdown):hover .nav-link {
  border-bottom-color: #fdda25;
  transition-delay: 0.15s;
}
.main-navbar {
  /* Yellow arrow for nav-items with dropdown */
}
.main-navbar .nav-item:has(.nav-item-dropdown) .nav-link {
  position: relative;
}
.main-navbar .nav-item:has(.nav-item-dropdown) .nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 1em;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-bottom: 2px solid var(--secondary-1);
  border-right: 2px solid var(--secondary-1);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.main-navbar .nav-item:has(.nav-item-dropdown):hover .nav-link::before {
  opacity: 1;
  transition-delay: 0.15s;
}
.main-navbar .no-arrow::before {
  display: none;
}

/* Dropdown menu */
.nav-item-dropdown {
  display: flex;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 100%;
  padding: 0;
  background-color: var(--white);
  border-radius: 5px;
  list-style: none;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  /* White arrow pointing up */
}
.nav-item-dropdown::before {
  content: "";
  position: absolute;
  top: -4px;
  left: calc(1em + 1px);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: var(--white);
}
.nav-item-dropdown {
  /* Invisible bridge to maintain hover between trigger and dropdown */
}
.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.nav-item-dropdown li {
  display: block;
}
.nav-item-dropdown li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  text-wrap: nowrap;
  color: var(--black-1);
  font-size: 0.8em;
  cursor: pointer;
}
.nav-item-dropdown li a:hover {
  color: var(--primary);
}
.nav-item-dropdown li:first-child a {
  padding-top: 1em;
}
.nav-item-dropdown li:last-child a {
  padding-bottom: 1em;
}

.nav-item:hover .nav-item-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.15s;
}

/* Dropdown overlay */
.navbar-overlay {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.navbar-overlay.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.15s;
}

/* Mobile Bottom Sheet Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 85vh;
  background-color: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-handle-area {
  padding: 16px 0;
  cursor: grab;
}

.mobile-menu-handle {
  width: 40px;
  height: 4px;
  background-color: var(--grey-4);
  border-radius: 2px;
  margin: 0 auto;
}

.mobile-menu-content {
  padding: 0 24px 32px;
}

.mobile-menu-section {
  margin-bottom: 8px;
}

.mobile-menu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black-1);
  cursor: pointer;
}
.mobile-menu-toggle i {
  color: var(--grey-1);
  transition: transform 0.2s ease;
}

.mobile-menu-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu-submenu.open {
  max-height: 500px;
}
.mobile-menu-submenu li {
  padding: 0;
}
.mobile-menu-submenu li a {
  display: block;
  padding: 12px 16px;
  color: var(--grey-1);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s ease, background-color 0.15s ease;
  border-radius: 8px;
}
.mobile-menu-submenu li a:hover {
  color: var(--primary);
  background-color: var(--grey-3);
}
.mobile-menu-submenu li.active a {
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-logout a {
  color: var(--primary);
}

.mobile-menu-divider {
  border: none;
  border-top: 1px solid var(--grey-3);
  margin: 8px 0;
}

.mobile-menu-link {
  display: block;
  padding: 16px 0;
  color: var(--black-1);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.mobile-menu-link:hover {
  color: var(--primary);
}
.mobile-menu-link.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  transition: background-color 0.15s ease;
}
.mobile-menu-btn:hover {
  background-color: rgb(227.8571428571, 18.6428571429, 32.1071428571);
  color: var(--white);
}

.mobile-menu-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  background-color: var(--secondary-1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

/* ================================================= */
/* ---------------- Payment Layout ----------------- */
/* ================================================= */
/* PAYMENT DETAILS */
@media (min-width: 992px) {
  .payment-details {
    height: 100%;
    padding-left: 2em;
    border-left: 1px solid var(--grey-4);
  }
}

.payment-details .total {
  font-size: 1.3em;
  margin: 1em 0.05em 0;
  border-bottom: 1px solid var(--grey-4);
}

.conekta-container {
  width: 100%;
  height: 683px;
}
.conekta-container body {
  padding: 0;
}

.products-details {
  flex-grow: 1;
}
.products-details h5 {
  font-weight: 600;
  font-size: 1.2em;
}
.products-details .product {
  border-bottom: 1px solid var(--grey-4);
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .products-details .product {
    display: flex;
    align-items: flex-start;
  }
}
.products-details .product:last-child {
  border: none;
}
.products-details .counters-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .products-details .counters-container {
    justify-content: flex-start;
    flex: 1 1 0;
  }
}
.products-details .description-container {
  display: flex;
  align-items: start;
  column-gap: 10px;
}
@media (min-width: 768px) {
  .products-details .description-container {
    flex: 1 0 0;
  }
}
.products-details .trash-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  cursor: pointer;
}
.products-details .minus-prepaid,
.products-details .plus-prepaid {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  font-size: 36px;
  border: 2px solid var(--black-1);
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 576px) {
  .products-details .minus-prepaid,
  .products-details .plus-prepaid {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}
.products-details .minus-prepaid {
  margin-right: 15px;
}
.products-details .plus-prepaid {
  margin-left: 15px;
}

/* FORMS */
.input-group {
  display: block;
  position: relative;
}

.input-group > label {
  display: block;
}

.input-group label {
  font-size: 0.9em;
  color: var(--grey-1);
}

.input-group .form-control {
  position: relative;
  width: 100%;
  border-radius: 5px !important;
  border: 1px solid var(--grey-1) !important;
  background-color: var(--white) !important;
  color: var(--grey-5);
}

.input-group .form-control:focus {
  border-color: var(--primary) !important;
  background-color: var(--white) !important;
}

.input-group .form-control::placeholder {
  color: var(--grey-1);
}

/* RADIO BUTTON */
.input-radio {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1em;
  border: 1px solid var(--grey-1);
  border-radius: 10px;
  cursor: pointer;
}

.input-radio .radio-wrapper {
  position: relative;
  width: 22px;
  margin-right: 1em;
  height: 22px;
}

.input-radio .radio-wrapper > .radio-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid var(--grey-1);
  border-radius: 50%;
}

.input-radio .radio-wrapper > .radio-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--grey-1);
  border-radius: 50%;
}

.input-radio > label {
  color: var(--black-1);
  margin: 0;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.input-radio .radio-title {
  margin: 0;
  font-weight: 600;
  font-size: 1.4em;
}

.input-radio .radio-text {
  margin: 0;
}

.input-radio.checked, .input-radio.checked .radio-wrapper > .radio-icon {
  border-color: var(--primary);
}

.input-radio.checked .radio-wrapper > .radio-icon::after {
  background-color: var(--primary);
}

/* INPUT ADDONS */
.input-group-addon {
  position: absolute;
  padding: 0 !important;
  right: 1em;
  top: 2.6em;
  background: none !important;
  border: none !important;
  z-index: 999;
}

.input-group-addon.addon-password {
  cursor: pointer;
}

/* DROPDOWN FIXES */
button.btn.dropdown-toggle.form-control[data-id=ccexpiryyear],
button.btn.dropdown-toggle.form-control[data-id=ccexpirymonth] {
  margin-top: 0;
  margin-bottom: 0;
}

#card-divider {
  position: absolute;
  right: -3px;
  top: 8px;
}

button.btn.dropdown-toggle.form-control[data-id=state-select],
button.btn.dropdown-toggle.form-control[data-id=state-select] {
  margin-top: 0;
  height: 39px;
}

/* SIDEBAR */
@media (min-width: 768px) {
  .sidebar {
    border-right: 1px solid var(--grey-4);
  }
}

.sidebar > .sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.sidebar > .sidebar-nav > .sidebar-nav-item {
  border-radius: 3em;
}

.sidebar > .sidebar-nav > .sidebar-nav-item > .sidebar-nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--black-1);
}

.sidebar > .sidebar-nav > .sidebar-nav-item > .sidebar-nav-link:hover {
  text-decoration: none;
}

.sidebar > .sidebar-nav > .sidebar-nav-item > .sidebar-nav-link > i {
  margin-right: 1em;
  padding: 1em 0 0.75em 0.75em;
}

.sidebar > .sidebar-nav > .sidebar-nav-item.active {
  background-color: var(--grey-2);
}

.sidebar > .sidebar-nav > .sidebar-nav-item.active > .sidebar-nav-link {
  color: var(--primary);
}

.sidebar-nav-item {
  padding: 10px 22px;
}

.sidebar-icon-active {
  display: none;
}

.sidebar-nav-item.active .sidebar-icon {
  display: none;
}
.sidebar-nav-item.active .sidebar-icon-active {
  display: block;
}

/* Footer */
.footer-accordion .card {
  border: none;
  border-bottom: 1px solid #cecece;
  border-radius: 0;
}
.footer-accordion .card:first-child {
  border-top: 1px solid #cecece;
}
.footer-accordion .card:not(:last-child) {
  margin-bottom: 0;
}
.footer-accordion .card-header {
  padding: 0 !important;
  border: none;
  border-bottom: none !important;
}
.footer-accordion .card-header strong {
  font-size: 15px;
  color: #111111;
}

.payment-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.link.footer-link {
  color: white;
}

.footer .nav-link {
  transition: color 0.15s ease;
}
.footer .nav-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-final {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1em;
  margin-top: 2em;
}
.footer-final .footer-copyright {
  font-size: 0.9em;
}

/* COMPONENTS */
/* ================================================= */
/* ------------------ Components ------------------- */
/* ================================================= */
.card-blue {
  border-color: #6ACFF6 !important;
}
.card-blue .card-header {
  background-color: #6ACFF6;
  border-radius: 8px 8px 0 0;
  border-color: inherit !important;
}
.card-blue .card-body {
  border-color: inherit !important;
}

.card-red {
  border: none !important;
}
.card-red .card-header {
  background-color: #ED2330;
  border-radius: 8px 8px 0 0;
  font-size: 22px;
  font-weight: 700;
  border: none !important;
  color: white;
}
.card-red .card-body {
  border: none !important;
  border-radius: 0 0 8px 8px;
  background-color: rgba(237, 35, 48, 0.1);
}

.card-yellow {
  border: none !important;
}
.card-yellow .card-header {
  background-color: #FDDA25;
  border-radius: 8px 8px 0 0;
  font-size: 22px;
  font-weight: 700;
  border: none !important;
}
.card-yellow .card-body {
  border: none !important;
  border-radius: 0 0 8px 8px;
  background-color: rgba(253, 218, 37, 0.1);
}

.price-display {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
}
.price-display .big {
  font-size: 38px;
}

/* =================================================
   HERO
   ================================================= */
.hero-section {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.hero-section h1 {
  font-size: 28px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.5em;
  }
}
.hero-section h4 {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-section img {
  margin-bottom: 1em;
}

.hero-image {
  width: 100%;
  height: 360px;
  min-height: 360px;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) {
  .hero-image {
    height: 640px;
    min-height: 640px;
  }
}

.hero-icon {
  bottom: 48px;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
}
@media (min-width: 768px) {
  .hero-icon {
    bottom: 0;
    top: 35%;
  }
}

.hero-logo-container {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-content {
  padding: 2.5em 16px;
}
.hero-content p {
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -25px);
    padding: 0;
    color: white;
    /* Text shadow temporal styles for text legibility */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}

/* BUTTONS */
.btn-primary {
  font-weight: bold;
  border-radius: 3em;
  background-color: #ED2330;
}
.btn-primary:hover {
  background-color: #BA1B25;
}

.btn-primary:disabled {
  background-color: var(--grey-3);
  color: var(--grey-1);
  border: none;
  cursor: default;
}

.btn-primary:disabled:hover {
  background-color: var(--grey-3);
  color: var(--grey-1);
  border: none;
  box-shadow: none;
}

.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ed2330;
  border-color: #ff6837;
  box-shadow: 0 0 0 0.2rem #b30000;
}

.btn-inverse {
  font-weight: bold;
  border-radius: 3em;
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--primary);
  cursor: pointer;
}

.btn-inverse:hover {
  font-weight: bold;
  border-radius: 3em;
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--primary);
}

.btn-light {
  background-color: var(--primary-light);
  color: var(--primary);
}

.btn-neutral:hover,
.btn-neutral:focus {
  color: #ed2330;
}

.btn-neutral.active,
.btn-neutral:active,
.btn-neutral:active:focus,
.btn-neutral:active:hover,
.btn-neutral.active:focus,
.btn-neutral.active:hover,
.show > .btn-neutral.dropdown-toggle,
.show > .btn-neutral.dropdown-toggle:focus,
.show > .btn-neutral.dropdown-toggle:hover {
  background-color: #FFFFFF;
  color: #ed2330;
  box-shadow: none;
}

.btn-info:not([disabled]):not(.disabled).active,
.btn-info:not([disabled]):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #5bc4f2;
  border-color: #5bc4f2;
  box-shadow: none;
}

/* PRICING CARDS */
.card.card-pricing {
  box-shadow: none;
  min-width: auto;
  min-height: 400px;
  max-height: 400px;
}

.card-pricing .card-title {
  margin-top: 15px;
}

.card-pricing ul li {
  text-align: center;
  padding: 4px 0;
  border-bottom: 1px;
  color: #2c2c2c;
}

.card-title {
  font-weight: bold !important;
  color: #ed2330;
}

.pricing-card-section {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .pricing-card-section {
    padding-top: 10px;
  }
}
.pricing-card-section .card-container {
  margin-bottom: 60px;
}

.pricing-card-section .card-container .card-dots {
  position: absolute;
  left: 15px;
  top: -50px;
}

.pricing-card-section .card-container .card {
  max-width: 400px;
  border: 5px solid #6ad0f6;
}

.pricing-card-section .card-container .card .card-wave {
  position: absolute;
  right: -55px;
  top: 20px;
}

.pricing-card-section .card-container .card .card-wave {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.pricing-card-section .card-container .card .card-wave .wave-image {
  width: initial;
  height: 65px;
  max-width: none;
  transform: translateX(-8px);
}

.pricing-card-section .card-container .card a {
  font-weight: 800;
}

.pricing-card-section .card-container .card .card-button {
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
}

@media (max-width: 767px) {
  .card-selector {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .card-selector {
    margin-left: -140px;
  }
}
/* GENERIC CARDS */
.card {
  border: 1px solid var(--grey-1);
  border-radius: 10px;
  box-shadow: none;
}

.card > .card-header {
  border-bottom: 1px solid var(--grey-1);
  padding: 1em;
  display: flex;
}

.card > .card-header > .card-title {
  font-weight: 600;
  font-size: 1em;
  margin: 0;
  flex-grow: 1;
  color: var(--black-1);
}

.card > .card-header > .card-tools {
  flex-grow: 0;
}

.card > .card-body {
  padding: 1em;
}

/* COUPON HELPERS */
.card .card-footer div.coupon-error {
  display: none;
}

.col-md-3.col-wave {
  position: absolute;
  z-index: 3;
  margin-left: 375px;
  top: 75px;
  height: 52px;
}

/* UTILITIES USED IN PLANS */
.hot-wax {
  font-weight: bold;
  color: #ed2330 !important;
}

.price-small {
  font-weight: 500;
  font-size: 14px;
}

/**** COUPON ****/
.coupon-success, .coupon-error {
  display: none;
}

.feature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 992px) {
  .feature-container {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
}

/* ================================================= */
/* --------------- Feature Card (BEM) -------------- */
/* ================================================= */
/*
  Usage:

  Case A: Standard Card (Image + Content)
  <div class="feature-card feature-card--small">
    <div class="feature-card__image" style="background-image: url(...)"></div>
    <div class="feature-card__content">
       <h3 class="feature-card__title">Title</h3>
       <p class="feature-card__text">Description</p>
       <a href="#" class="feature-card__action btn ...">Button</a>
    </div>
  </div>

  Case B: Header Card with Theme & Overlay (AutoSpa / Prepaid style)
  <div class="feature-card feature-card--large feature-card--primary">
    <!-- Header colors match the theme (primary/secondary) -->
    <div class="feature-card__header">Header Title</div>

    <div class="feature-card__image" style="background-image: url(...)">
        <!-- Optional Overlay: Clock or Logo -->
        <div class="feature-card__overlay feature-card__overlay--bottom-left">
            <img src="..." alt="icon"> +4 hrs.
        </div>
    </div>

    <div class="feature-card__content">
       <p class="feature-card__text">Description</p>
       <a href="#" class="feature-card__action btn ...">Button</a>
    </div>
  </div>

  Modifiers:
  - Size: --small (348px), --large (402px)
  - Theme: --primary (Red bg/header), --secondary (Yellow bg/header)
*/
.feature-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--grey-3);
  transition: transform 0.3s ease;
}
.feature-card--primary {
  background-color: color-mix(in srgb, var(--primary), transparent 90%);
}
.feature-card--primary .feature-card__header {
  background-color: var(--primary);
  color: var(--white);
}
.feature-card--secondary {
  background-color: color-mix(in srgb, var(--secondary-1), transparent 90%);
}
.feature-card--secondary .feature-card__header {
  background-color: var(--secondary-1);
  color: var(--black-1);
}
.feature-card--small {
  max-width: 348px;
}
.feature-card--large {
  max-width: 402px;
}
@media (min-width: 992px) {
  .feature-card {
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .feature-card--small {
    flex-basis: 348px;
  }
  .feature-card--large {
    flex-basis: 402px;
  }
}
.feature-card {
  /* --- Elements --- */
}
.feature-card__header {
  width: 100%;
  padding: 1rem;
  background-color: var(--black-1);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
}
.feature-card__image {
  width: 100%;
  height: 256px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-card__overlay {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.feature-card__overlay--bottom-left {
  bottom: 20px;
  left: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.feature-card__overlay--bottom-left img {
  width: 20px;
  height: 20px;
}
.feature-card__overlay--logo-top {
  top: 168px;
  left: 50%;
  transform: translateX(-50%);
}
.feature-card__overlay--logo-top img {
  max-width: 180px;
  height: auto;
}
.feature-card__header + .feature-card__image {
  height: 224px;
}
.feature-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}
.feature-card__title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black-1);
}
.feature-card__title--highlight {
  color: var(--primary);
}
.feature-card__text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--grey-5);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.feature-card__action {
  margin-top: auto;
}

.card-price {
  font-size: 32px;
  line-height: 30px;
  font-weight: 600;
}
.card-price__amount {
  font-size: 52px;
  font-weight: 800;
}
.card-price__currency {
  font-size: 22px;
}

.card-price-small {
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
}
.card-price-small__amount {
  font-size: 38px;
  font-weight: 800;
}

/* MODALS */
.modal-backdrop {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content {
  border-radius: 30px;
  height: auto;
}

.modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 70px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0 !important;
  max-height: 75vh;
  overflow-y: scroll;
}

/* SWAL Sweet alerts */
.swal-popup {
  border-radius: 30px;
  padding: 24px;
}

.close-button {
  border-radius: 50%;
  border: none;
  background-color: var(--primary);
  color: white;
  font-size: 1.5em;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

/* PAGES */
/* ================================================= */
/* ------------------- Home Page ------------------- */
/* ================================================= */
.section-media {
  position: relative;
  width: 100%;
  height: 640px; /* o lo que use tu layout */
  overflow: hidden;
}

.section-media-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: fit-content;
  top: 340px;
  height: 300px;
  color: white;
  padding: 16px 16px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.section-media-content h2 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 16px;
}

.section-media .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-media-icon {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
}

.section-media-mobile {
  height: 390px;
  position: relative;
}
.section-media-mobile .bg-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-media-mobile .section-media-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .home-page .left-line {
    border-left: 4px solid white;
  }
  .home-page .left-line > div {
    padding-left: 20%;
  }
}
@media screen and (max-width: 768px) {
  .home-page .subtitle.ilimitados {
    text-align: center;
  }
  .home-page .title.ilimitados {
    text-align: center;
  }
  .home-page .title-wrapper h1.title {
    font-size: 33px;
  }
  .home-page .title-wrapper h3.title {
    font-size: 23px;
  }
  .footer .footer-brand {
    float: none;
  }
}
.home-page .center-arrow {
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 20px;
}

.home-page .carousel-circle {
  border-radius: 50% !important;
  height: 10px !important;
  width: 10px !important;
}

.title.home {
  margin-bottom: 30px !important;
}

.landing-page {
  height: 100vh;
}

.page-header:before,
.page-header:after {
  display: none;
}

.landing-page .page-header .title {
  color: #000;
}

.wrapper {
  padding-top: 0;
}

.page-header.page-header-small {
  max-height: 530px;
}

.page-header .page-header-image {
  background: repeat;
  top: 0;
}

.page-header-image {
  overflow: hidden;
}

.page-header .page-header-image img {
  max-width: 1200px;
  width: 100%;
  min-width: 600px;
  position: absolute;
  bottom: 0;
}

.page-header .page-header-image img:last-child {
  margin-left: 1200px;
}

.title-wrapper {
  margin-top: 100px;
  margin-left: 10%;
}

.title-wrapper {
  margin-top: 100px;
  margin-left: auto;
}

.category {
  text-transform: capitalize;
  font-weight: 700;
  color: #2c2c2c;
}

.container.title-wrapper h1 {
  max-width: 685px;
  margin-bottom: 0;
}

.container.title-wrapper h3 {
  font-weight: 500;
}

.info-title {
  color: white !important;
  font-weight: bold;
}

.info-description {
  color: white !important;
  font-weight: 400;
}

.info-action {
  color: white !important;
  font-weight: 600;
}

.info-product {
  cursor: pointer;
  color: #6ad0f6;
  position: absolute;
  width: 100%;
  bottom: 90px;
  left: 0;
  background: none;
}

.hot-wax {
  font-weight: bold;
  color: #ed2330 !important;
}

.price-small {
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .landing-page .social-line-big-icons [class*=col-] {
    border: none;
  }
  .landing-page .title-wrapper h1 {
    font-size: 40px;
  }
}
/* ================================================= */
/* ------------ Subscription Dashboard ------------- */
/* ================================================= */
.subscription-details > .detail, .payment-method-details > .detail {
  display: flex;
  justify-content: space-between;
}

.subscription-details dd {
  width: 55%;
}

.subscription-details dt {
  font-weight: 600;
  flex-grow: 1;
}

.payment-method-details {
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  padding: 3em 0 0.5em;
}

.payment-method-details dd {
  width: 42%;
}

.payment-method-details dt {
  flex-grow: 1;
  font-weight: 400;
}

.dashboard-cta-button {
  width: 18em;
}

/* CARS CONTAINER */
.cars-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cars-container > .card {
  margin-bottom: 1em;
}

.cars-container > .card > .card-body {
  display: flex;
  align-items: flex-start;
}

.cars-container > .card > .card-body > .car-title {
  display: flex;
  align-items: center;
}

.cars-container > .card > .card-body > .car-title > .car-name {
  margin: 0 3em 0 0.5em;
}

.cars-container > .card > .card-body > .car-information {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cars-container > .card > .card-body > .car-information > .car-information-row {
  display: flex;
}

.cars-container > .card > .card-body > .car-information > .car-information-row > .car-information-row-label {
  width: 40%;
}

.cars-container .replace-code {
  align-self: flex-end;
  color: var(--primary) !important;
}
.cars-container .replace-code:hover {
  text-decoration: none;
}

/* CAR COUNT SELECTOR */
.car-count-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}

.car-count-selector > .decrease-button, .car-count-selector > .increase-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 3em;
}

.car-count-selector > .car-count {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black-1);
  font-size: 3em;
  width: 3em;
}

/*** LOGIN ***/
.login-list span {
  margin-left: 10px;
  margin-right: 10px;
}

.login-list {
  display: flex;
  padding-left: 40px;
  padding-top: 25px;
  padding-right: 0;
}

/* GOOGLE */
.google-login {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 10em;
  border: 1px solid var(--primary);
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .profile-list #current-plan {
    margin-left: 15px;
  }
  .profile-list #plan-status {
    margin-left: 45px;
  }
}
@media screen and (max-width: 768px) {
  .profile-list #current-plan, .profile-list #plan-status {
    display: block;
  }
}
/* ================================================= */
/* ----------------- Contact Page ------------------ */
/* ================================================= */
.contact-page h2 {
  font-size: 2.2em;
}

.contact-page .wrapper {
  min-height: 85vh;
  position: relative;
}

.contact-page .main {
  background: none;
}

.contact-page .page-header-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.contact-page .page-header-image img {
  max-width: 1200px;
  width: 100%;
  min-width: 600px;
  position: absolute;
  bottom: 0;
}

.contact-page .page-header-image img:last-child {
  margin-left: 1200px;
}

.contact-page .card {
  box-shadow: none;
}

.contact-page .pricing-card-section .card-container .card {
  max-height: none;
}

.contact-page .card-container {
  margin: 0;
}

.contact-page .pricing-card-section {
  padding-top: 50px;
}

.contact-page .pricing-card-section {
  padding-bottom: 0;
}

.contact-page textarea {
  border: 1px solid #e5e5e5;
  border-radius: 30px;
}

.contact-page footer {
  background-color: #ed2330 !important;
}

.contact-page .loader-section {
  background-color: #ed2330 !important;
}

.subscription-details-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.subscription-detail-card {
  width: 264px;
  text-align: center;
}
.subscription-detail-card .detail-step {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.subscription-detail-card .detail-highlight {
  background-color: rgba(106, 207, 246, 0.3);
  padding: 16px 20px;
  border-radius: 5px;
}
.subscription-detail-card .detail-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

/* ================================================= */
/* ----------------- Branches Page ----------------- */
/* ================================================= */
.branches-page .col-branches ul {
  padding: 0;
}

.branches-page .col-branches li {
  border-radius: 0;
  cursor: pointer;
  padding-left: 35px;
}

.branches-page .row.plan {
  margin-right: -30px;
}

.branches-page.title.menu {
  font-size: 25px;
  padding-left: 35px;
}

.branches-page .title.menu.down {
  padding-top: 10px;
}

.branches-page .center {
  text-align: center;
  font-weight: bold;
  display: block;
  margin: auto;
}

.branches-page #map {
  height: 62dvh;
}

.branches-page .landing-page .page-header {
  height: 92vh;
  min-height: 92vh;
  position: relative;
}

.thank-you-page-products-list > h4 {
  font-weight: 600;
  margin: 0 0 0.5em;
}
.thank-you-page-products-list > ul {
  list-style: none;
  padding: 0 0 1em;
  margin: 0 0 1em;
  border-bottom: 1px solid var(--grey-4);
}

.-cart-container {
  position: relative;
}

.cart-not-empty-mark {
  position: absolute;
  width: 16px;
  height: 16px;
  top: -6px;
  right: -6px;
  border-radius: 50%;
  background-color: var(--secondary-1);
}

input.car-count {
  border: none;
  text-align: center;
}
input.car-count:focus, input.car-count:focus-visible {
  outline: none;
}

.prepaid-product-card .card-body {
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 1em;
}
.prepaid-product-card .card-body .car-title {
  width: 30%;
  flex-direction: column;
  align-items: flex-start !important;
}
.prepaid-product-card .card-body .car-information-row-label {
  width: 13em !important;
}
.prepaid-product-card .card-body .prepaid-product-status {
  font-weight: 800;
  font-size: 1em;
}
.prepaid-product-card .card-body .card-buttons {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
}
.prepaid-product-card .card-body .card-buttons > button {
  margin-top: 0;
  margin-bottom: 0;
}
.prepaid-product-card .card-body .card-buttons .spa-calendar-info {
  display: inline-flex;
  flex-direction: column;
  margin-right: 2em;
  flex-grow: 1;
}
.prepaid-product-card .card-body .card-buttons .spa-calendar-info-row {
  display: flex;
}
.prepaid-product-card .card-body .card-buttons .spa-calendar-info-row > span {
  width: 6em;
}

.alias-input {
  padding: 0.3em 1em;
  width: 50%;
  text-align: center;
  border-radius: 2em;
  border: 1px solid var(--grey-1);
}

#aliasModal .modal-body, #qrModal .modal-body, #appointmentModal .modal-body {
  overflow: auto;
}

.auto-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.auto-card {
  width: 264px;
  height: 240px;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auto-card__image {
  width: 100%;
}
.auto-card__title {
  background-color: rgba(237, 35, 48, 0.2);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
}

/* ================================================= */
/* ------------- Auto Express Page Styles ---------- */
/* ================================================= */
.auto-express-card {
  width: 100%;
  max-width: 402px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--grey-3);
  transition: transform 0.3s ease;
}
.auto-express-card__cover {
  height: 260px;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.auto-express-card__cover--yellow {
  background-color: var(--secondary-1);
}
.auto-express-card__cover--red {
  background-color: var(--primary);
}
.auto-express-card__cover--black {
  background-color: var(--black-1);
}
.auto-express-card__duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: auto;
}
.auto-express-card__duration img {
  width: 24px;
  height: 24px;
}
.auto-express-card__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
.auto-express-card__image img {
  display: block;
  height: auto;
  max-width: 100%;
}
.auto-express-card__info {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.auto-express-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--black-1);
}
.auto-express-card__description {
  font-size: 1rem;
  color: var(--grey-5);
  margin-bottom: 1rem;
}

.auto-express-mini-services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.auto-express-mini-card {
  width: 264px;
  min-height: 204px;
  padding: 0.625rem;
  background-color: rgba(253, 218, 37, 0.15);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.auto-express-mini-card .service-title {
  font-size: 1.375rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary);
}
.auto-express-mini-card .small {
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--black-1);
}

.billing-images-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.billing-square {
  width: 9.25rem;
  height: 9.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--black-1);
  border-radius: 10px;
}
.billing-square--red {
  border-color: var(--primary);
}

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