@charset "UTF-8";
/* Links */
a, a:visited {
  text-decoration: none;
}

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

/* Links */
/* Titles */
h1 {
  font-size: 35px;
}

/* Titles */
/* Accordieon */
.accordion-item {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}
.accordion-item .accordion-button:focus {
  box-shadow: none !important;
}
.accordion-item .accordion-button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
}
.accordion-item .accordion-body {
  padding-top: 0 !important;
}
.accordion-item .accordion-body .content {
  padding: 15px !important;
  background-color: #f1f1f1 !important;
  border-radius: 10px !important;
}

/* Accordieon */
/* Badge */
.badge > button {
  background: transparent;
  border: none;
  color: inherit;
  padding-right: 0;
}

/* Badge */
/* Btn */
.btn {
  transition: ease-in-out 0.4s all;
}
.btn-flexed {
  display: flex;
  gap: 10px;
}
.btn-link {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.btn-rounded {
  border-radius: 2rem;
  padding-left: 25px;
  padding-right: 25px;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-contrast);
}
.btn-primary:hover {
  background-color: var(--primary-lighten1);
  border-color: var(--primary-lighten1);
}
.btn-primary-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-primary-outline:hover {
  background-color: var(--primary);
  color: var(--primary-contrast);
}
.btn-black {
  background-color: #130000;
  color: #fff;
}
.btn-black:hover {
  background-color: #1b1b1b;
}
.btn-black-outline {
  background-color: transparent;
  color: #130000;
  border: 1px solid #130000;
}
.btn-black-outline:hover {
  background-color: #130000;
  color: #fff;
}

/* Btn */
/* Input */
.input-group-sm > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  flex: 0 0 auto !important;
  min-width: 50px !important;
  text-align: center !important;
}
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
}
.input-group-sm > .btn:first-child {
  border-radius: 1rem 0px 0px 1rem;
}
.input-group-sm > .btn:last-child {
  border-radius: 0px 1rem 1rem 0px;
}

/* Input */
/* Select */
.custom-select {
  appearance: button;
  -webkit-appearance: button;
  -moz-appearance: button;
  position: relative;
  cursor: pointer;
}
.custom-select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #333;
}

/* General styles for the select2 container */
.select2-container .select2-selection--single {
  height: 38px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem; /* Borde redondeado */
  background-color: #fff;
  font-size: 1rem;
  color: #495057;
}

/* Adjust the placeholder text color */
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #adb5bd; /* Color similar al placeholder de la imagen */
}

/* Remove the default select2 arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem; /* Ajuste del espacio a la derecha */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Styles for the select2 dropdown */
.select2-container .select2-dropdown {
  border-radius: 0.375rem;
  border: 1px solid var(--border-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Remove default focus outline */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:hover {
  outline: none;
  border-color: var(--border-color); /* Mantener el borde del mismo color en focus/hover */
}

/* Ensure the text is vertically centered */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
  padding-left: 0.5rem;
  color: #495057;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary);
  color: var(--primary-contrast);
}

/* Select */
/* Field to input */
.info-to-field {
  position: relative;
}

.info-to-field > button {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 0.8rem;
}

.info-to-field[aria-editing=true] > button,
.info-to-field[aria-editing=true] > span {
  display: none;
}

/* Field to input */
/* Colored icons */
.fa-whatsapp.colored {
  color: #25D366 !important;
}

/* Colored icons */
/* Bgs */
.bg-dark {
  background-color: var(--footer-bg) !important;
}

/* Bgs */
/* Box */
.box-icon {
  padding-top: 25px;
  padding-bottom: 25px;
}
.box-icon i {
  font-size: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.box-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  margin: 30px auto;
}
.box-icon h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.box-icon p {
  font-size: 0.9rem;
}
.box-image img {
  width: 80%;
  height: 250px;
  object-fit: contain;
  margin: 0 auto;
}

a.box-icon:hover {
  transform: scale(120%);
}

/* Box */
/* Modal */
.modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal .modal-content .modal-header {
  background-color: var(--primary);
  color: var(--primary-contrast);
}
.modal .modal-content .modal-header .btn-close {
  color: var(--primary-contrast);
}
.modal .modal-content .modal-body .btn-close {
  position: absolute;
  top: -2px;
  right: 12px;
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal .modal-content img.logo {
  max-height: 75px;
  margin-bottom: 30px !important;
}
.modal-left .modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(-100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-left#modalMobileMenu .modal-dialog {
  max-width: 300px;
}
.modal-left .modal-content {
  height: 100%;
  border-radius: 0px 15px 15px 0px;
}
.modal-left .modal-header {
  border-top-left-radius: 0px;
}
.modal-left.show .modal-dialog {
  transform: translateX(0) !important;
}
.modal-right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-right .modal-content {
  height: 100%;
  border-radius: 15px 0px 0px 15px;
}
.modal-right .modal-header {
  border-top-right-radius: 0px;
}
.modal-right.show .modal-dialog {
  transform: translateX(0) !important;
}

/* Modal */
/* Shapes */
.shape.circle {
  border-radius: 50%;
}
.shape.circle-110 {
  width: 110px;
  height: 110px;
}
.shape.circle-240 {
  width: 240px;
  height: 240px;
}

/* Shapes */
/* Orders */
.order-6 {
  order: 6;
}

/* Orders */
/* Card */
.card {
  border-radius: 15px;
  overflow: hidden;
}
.card.card-colored {
  border-color: var(--primary);
}

/* Card */
/* Steps */
.steps .step-progress-bar .step-bar {
  --gap: 5px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.steps .step-progress-bar .step-bar > li {
  font-size: 0.8rem;
  color: #6C757E;
}
.steps .step-progress-bar .step-bar > li.active {
  color: #222;
  font-weight: 500;
}
.steps .step-progress-bar .step-bar > li:after {
  content: "·";
  display: inline-block;
  color: var(--primary);
  margin-left: var(--gap);
}
.steps .step-progress-bar .step-bar > li:last-child:after {
  content: "";
}
.steps .step {
  display: none;
}
.steps .step.active {
  display: block;
}

/* Steps */
/* Check inputs */
.no-grow {
  flex-grow: 0;
  flex-shrink: 0; /* Esto asegura que el elemento tampoco se reduzca si hay poco espacio */
  flex-basis: auto; /* Mantiene el tamaño automático del contenido */
}

.btn-input > input {
  display: none;
}
.btn-input > input + label {
  border: var(--primary) 1px solid;
  border-radius: 8px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--primary);
  transition: ease-in-out 0.3s all;
}
.btn-input > input + label.light {
  border-color: var(--bs-border-color);
  color: var(--bs-gray);
}
.btn-input > input + label.light.dark {
  color: #222;
}
.btn-input > input + label:before, .btn-input > input + label:after {
  display: none;
}
.btn-input > input:hover + label, .btn-input > input:checked + label {
  background: var(--primary);
  color: var(--primary-contrast);
}
.btn-input > input:hover + label:before, .btn-input > input:hover + label:after, .btn-input > input:checked + label:before, .btn-input > input:checked + label:after {
  display: none;
}
.btn-input > label {
  display: flex;
}

.grid-buttons {
  --gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--gap);
}
.grid-buttons-c2 > .btn-input {
  width: calc(50% - var(--gap));
  max-width: calc(50% - var(--gap));
}
.grid-buttons-c3 > .btn-input {
  width: calc(33.3% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c3 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
.grid-buttons-c4 > .btn-input {
  width: calc(25% - (var(--gap)));
}
@media (max-width: 767px) {
  .grid-buttons-c4 > .btn-input {
    width: calc(50% - (var(--gap)));
  }
}
.grid-buttons-c5 > .btn-input {
  width: calc(20% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c5 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
/* Check inputs */
/* Form loader */
form .loader.full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  gap: 10px;
}
form .loader.full > i {
  color: var(--primary);
  font-size: 1.3rem;
}
form .loader.show {
  display: flex;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.form-step h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Form loader */
/* Empty */
.empty-msg:empty:after {
  content: attr(data-empty);
  text-align: center;
  width: 100%;
  display: block;
  color: #99abb4 !important;
  font-style: italic;
}

/* Empty */
/* Search */
.fsticky {
  position: sticky;
  top: 85px;
}

.search > .filters-applied {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search > .filters-applied:empty {
  display: none;
}
/* Search */
/* Product Card */
.product-card {
  display: block;
  border-radius: 10px;
  padding: 10px 20px 20px;
  margin-bottom: 20px;
  border-top: 8px solid var(--primary);
  color: #222;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.product-card:hover {
  color: #222;
}
.product-card img.brand {
  height: 50px;
  margin: 0px auto;
  margin-bottom: 8px;
  max-width: 100%;
  object-fit: contain;
}
.product-card img.img-fluid {
  object-fit: contain;
}
.product-card .tireicon {
  float: left;
  width: 40px !important;
  padding: 2px;
  border-radius: 5px;
  margin: 0 5px 0 0;
  background-color: #fff;
  overflow: hidden;
}
.product-card .name {
  font-size: 0.9rem;
}
.product-card .desc {
  font-size: 1.02rem;
  font-weight: bold;
}
.product-card .price > small {
  text-decoration: line-through;
}
.product-card .price > span {
  font-weight: bold;
  color: var(--primary);
}

/* Product Card */
/* Product view */
.product .images {
  text-align: center;
}
.product .images img.img-fluid {
  object-fit: contain;
  max-height: 450px;
}
.product .images .tireicons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .images .tireicons .tireicon {
  width: 50px !important;
  padding: 2px;
  border-radius: 5px;
  margin: 0 5px 0 0;
  background-color: #fff;
  overflow: hidden;
}
.product img.brand {
  height: 70px;
  margin: 0px auto;
  margin-bottom: 8px;
}
.product h1 {
  font-size: 1.6rem;
  font-weight: bold;
}
.product h4 {
  font-size: 1rem;
  font-weight: normal;
}
.product .desc {
  font-size: 0.9rem;
}
.product .price > small {
  text-decoration: line-through;
  font-size: 0.9rem;
}
.product .price > span {
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--primary);
}
.product ul.features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.product ul.features li {
  margin-bottom: 5px;
}
.product .position-sticky {
  bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 8px 8px 0 0;
}

/* Product view */
/* Cart */
.cartIcon {
  position: relative;
}
.cartIcon > span {
  position: absolute;
  top: 0;
  right: 6px;
  background-color: #222;
  color: var(--primary-contrast);
  padding: 1px 4px;
  border-radius: 7.5px;
  font-size: 10px;
  min-width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-view, .cart-checkout {
  position: relative;
}
.cart-view .cart-loader, .cart-checkout .cart-loader {
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  gap: 10px;
  transition: ease-in-out 0.2s all;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
}
.cart-view .cart-loader.show, .cart-checkout .cart-loader.show {
  opacity: 1;
  display: flex;
}
.cart-view .cart-content .header, .cart-checkout .cart-content .header {
  font-size: 0.8rem;
}
.cart-view .cart-content .item, .cart-checkout .cart-content .item {
  gap: 5px;
  border-bottom: 1px solid var(--bs-border-color);
}
.cart-view .cart-content .item:last-child, .cart-checkout .cart-content .item:last-child {
  border-bottom: none;
}
.cart-view .cart-content .item .image, .cart-checkout .cart-content .item .image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cart-view .cart-content .item .name, .cart-checkout .cart-content .item .name {
  font-size: 0.9rem;
}
.cart-view .cart-content .item .price, .cart-checkout .cart-content .item .price {
  font-size: 0.8rem;
}
.cart-view .cart-resume, .cart-checkout .cart-resume {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--bs-border-color);
}
.cart-view .cart-resume > div:last-child, .cart-checkout .cart-resume > div:last-child {
  font-weight: bold;
}
.cart-view .cart-actions, .cart-checkout .cart-actions {
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
}

/* Cart */
/* Header */
header {
  background-color: var(--header-bg);
  color: var(header-text);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
header a, header a:visited, header .nav-link {
  color: var(--footer-text);
}
header .main {
  display: none;
}
header .main .navbar-brand > img {
  height: 40px;
}
@media (min-width: 1024px) {
  header .main {
    display: flex;
  }
}
header .mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .mobile i {
  font-size: 1.3rem;
}
header .mobile .btn-menu {
  background: transparent;
  color: #222;
  border: none;
}
header .mobile .navbar-brand > img {
  height: 40px;
}
header .mobile .nav-link {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1024px) {
  header .mobile {
    display: none;
  }
}

.menu a, .menu a:visited, .menu .nav-link {
  color: var(--footer-text);
}

/* Header */
/* Footer */
footer {
  font-size: 0.9rem;
}
footer a, footer a:visited {
  color: var(--footer-text);
}
footer p {
  margin-bottom: 0;
}
footer h4 {
  font-size: 18px;
}
footer .logo {
  height: auto;
  width: auto;
  max-height: 50px;
  max-width: 100%;
}
footer .socials,
footer .legalmenu {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
footer .socials {
  justify-content: left;
}
footer .contacts {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
footer .contacts li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
footer .contacts li i {
  margin-right: 8px;
  width: 15px;
  text-align: center;
}
footer .footer-bottom .row {
  padding: 20px;
  font-size: 0.75rem;
  border-top: 1px solid var(--primary);
  opacity: 0.8;
}

/* Footer */
/* Body */
html, body {
  min-height: 100%;
}
html main, body main {
  min-height: 100%;
}

section {
  /* Error */
  /* Error */
}
section:first-child {
  margin-top: 50px;
}
@media (max-width: 767px) {
  section:first-child {
    margin-top: 56.3px;
  }
}
section.fullheight {
  height: calc(100vh - 50px);
  min-height: calc(100vh - 50px);
}
@media (max-width: 767px) {
  section.fullheight {
    margin-top: 56.3px;
    height: calc(100vh - 56.3px);
    min-height: calc(100vh - 56.3px);
  }
}
section .title {
  margin-bottom: 30px;
}
section .title > h2 {
  position: relative;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 8px;
  display: inline-block;
  font-size: 28dpx;
}
section .title > h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 3px;
  bottom: -3px;
  left: 0;
  background-color: var(--primary);
}
section.error {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.error.error404 {
  background-color: #f7f7f7;
  background-image: url(/assets/img/llantas_error404.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Body */
/* Home */
.index .hero {
  position: fixed;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(/assets/img/clouds/7.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.index section {
  width: 100%;
  padding: 50px 0;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 767px) {
  .index section {
    background-position: center bottom -135px;
  }
}
.index section#main {
  position: relative;
  z-index: 1;
}
.index section#main > div:not(.fixed) {
  position: relative;
  z-index: 1;
}
.index section#main h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.index section#main h1 > span {
  display: block;
}
.index section#main .s2 {
  background-color: #fafafa;
  padding: 50px;
  margin-top: 150px;
  margin-bottom: 150px;
  border-radius: 20px;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.index section#main #apps {
  padding-top: 280px;
}
.index section#main #apps .iphone {
  position: relative;
  width: 176.52px;
  height: 400px;
}
.index section#main #apps .iphone .phone {
  width: 176.52px;
  height: 400px;
}
.index section#main #apps .iphone .ss {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  width: 166.52px;
  height: 390px;
}
/* Home */
/* z-index */
.z-index-1 {
  z-index: 1;
}

/* z-index */
/* Top */
.top-0 {
  top: 0;
}

/* Top */
/* Account profile */
.account_profile .rounded-circle {
  width: 150px;
  height: 150px;
}

/* Account profile */

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