/* -------------------------------------------------------------------------- */
/* TableOfContentIndex
-Imports
  _GoogleFonts
  _FontAwesome
-Variables
  _Colors
  _Shadows
  _Fonts
-Global
  _Preloader
  _BoostrapCustom
  _ButtonsColors
  _FontsColors
  _BackgroundsColors
  _VerticalPadding
  _Icons 
  _OwlCarousel
  _Autocomplete
  _Swal
  _Modal
  _Check
  _Switch
-Especifics
  _HeaderProductor
  _Header
   __HeaderNavFooter
   __HeaderCart
  _Nav
   __NavMenu
  _Main
   __MainSectionHero
   __MainSectionProduct
   __MainFilterSticky
   __MainSectionAsideFilter
   __MainSectionAsideAccordion
_Footer
-Media queries
-z-indexList
-Developers
  _user-de-github1
  _user-de-github2

/* -------------------------------------------------------------------------- */
/* -Imports */

/* _FontAwesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* -------------------------------------------------------------------------- */
/* -Variables */

:root {
  /* _Colors */

  --primary: #001bda;
  --primary-dark: #0014ac;
  --primary-light: #0019da5f;
  --secondary: #e9ecef;
  --secondary-dark: #04033e6b;
  --secondary-light: #f1f7ff;
  --tertiary: #ff7200;
  --light-blue: rgba(0, 115, 255, 0.815);
  --pdark: #04033e;

  --success: #28a745;
  --danger: #ff0066;
  --warning: #ffc107;
  --info: #0075ff;

  --gray-100: rgba(248, 249, 250, 1);
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --white: #ffffff;
  --black: #000000;

  /* _Shadows */
  --shadow-s: rgba(0, 0, 0, 0.1);
  --shadow-m: rgba(0, 0, 0, 0.2);
  --shadow-l: rgba(0, 0, 0, 0.3);
  --shadow-active: #0019da51;

  /* _Fonts */
  --font-family: "Montserrat", sans-serif;
  --bs-form-valid-border-color: #dee2e6;
  --bs-form-valid-color: #04033e;
}

/* -------------------------------------------------------------------------- */
/* -Global */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  max-width: 100vw;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  list-style: none;
  text-decoration: none;
  color: var(--pdark) !important;
}

a:hover {
  opacity: 0.7;
}
.no-opacity-hover:hover {
  opacity: 1;
}

button:hover {
  opacity: 0.7;
}

body {
  /*   background-color: var(--secondary) !important; */
  max-width: 100%;
  overscroll-behavior: none;
  font-family: var(--font-family);
  color: var(--pdark);
}
/* Para navegadores modernos */
html,
body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Opera */
}
/* Evita que el overflow del body se ajuste cuando el modal está abierto */
body.modal-open {
  overflow: unset !important;
}
body.swal2-shown {
  overflow: unset !important;
}
.swal2-actions {
  display: flex;
  gap: 0.5rem;
}
.swal2-icon {
  width: 80px !important;
}

.swal2-actions {
  display: flex;
  gap: 0.5rem;
}
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gray-500);
}
.icon-wrapper {
  width: 24px;
  height: 24px;
}

.cart-badge {
  width: 18px;
  height: 18px;
  font-size: 11px;
  transform: translate(-40%, -40%);
  z-index: 1;
}

.rotate-icon.rotate {
  transform: rotate(180deg);
}
.pack,
.pack * {
  cursor: pointer;
}
/* -------------------------------------------------------------------------- */
/* _Preloader*/
.splash {
  position: fixed;
  z-index: 2000;
  background: var(--white);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100dvh;
}
.splash-title {
  text-align: center;
}
.spinner {
  margin: 10px auto;
  margin-top: 0;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 15px;
}
.spinner > div {
  background-color: var(--primary);
  height: 100%;
  width: 4px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.preloader--img-logo {
  height: 60px;
}
/* _BoostrapCustom */

.btn {
  border-radius: 30px;
  /* 
  -square = border-radius: 0px; 
  -rounded = border-radius: 4px; 
  -pill = border-radius: 20px;
  */
}

.card {
  border: none !important;
}

.card img {
  width: 100%;
}

.dropdown-toggle {
  border: none !important;
}
.dropdown-toggle:focus,
.dropdown-toggle:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.form-control:focus {
  border-color: var(--gray-500);
  box-shadow: none;
}
.tooltip-inner {
  background-color: var(--pdark);
}

.toggle-chevron {
  transition: transform 0.3s ease;
}
a[aria-expanded="true"] .toggle-chevron {
  transform: rotate(180deg);
}
/*
.table-responsive-sticky {
  max-height: 70svh;
  overflow: auto;
  position: relative;
}
*/
table thead th {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  border: none !important;
}

.sticky-col {
  position: sticky;
  left: 0;
  z-index: 3;
  background: var(--white);
  text-align: left;
  font-size: 12px !important;
  border: none !important;
}
td {
  font-size: 12px !important;
  border: none !important;
}
.sticky-col-title {
  font-size: 14px !important;
  border: none !important;
}

.sticky-col::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--white) !important;
  border: none !important;
}
th {
  background: var(--white) !important;
}

thead .sticky-col {
  z-index: 4;
  background: var(--white) !important;
  border: none !important;
}
.form-select {
  box-shadow: none !important;
  outline: none !important;
}

/* Quitar sombra y borde azul al enfocar */
.form-select:focus {
  box-shadow: none !important; /* quitar sombra */
  outline: none !important
  ; /* quitar contorno azul en algunos navegadores */
}

/* _ButtonsColors */

.btn--transparent {
  border: transparent !important;
}
.btn--transparent :focus,
.btn--transparent :active,
.btn--transparent :hover {
  border: transparent !important;
}

.btn--black {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
}
.btn--black:active,
.btn--black:focus,
.btn--black:hover {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
}
.btn--white {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
}
.btn--white:active,
.btn--white:focus,
.btn--white:hover {
  border: 1px solid var(--white);
  background-color: var(--black);
  color: var(--white);
}
.btn--pdark {
  border: 1px solid var(--pdark);
  background-color: var(--pdark);
  color: var(--white);
}
.btn--pdark:active,
.btn--pdark:focus,
.btn--pdark:hover {
  border: 1px solid var(--pdark);
  background-color: var(--pdark);
  color: var(--white);
}
.btn--primary {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white) !important;
}
.btn--primary:active,
.btn--primary:focus,
.btn--primary:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary) !important;
  color: var(--white) !important;
  opacity: 0.7;
}

.btn--primary-outline {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary) !important;
}
.btn--primary-outline:active,
.btn--primary-outline:focus,
.btn--primary-outline:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary) !important;
  color: var(--white) !important;
  opacity: 1;
}
.btn--secondary {
  background-color: var(--white);
  color: var(--black) !important;
  border: 1px solid var(--gray-400);
}
.btn--secondary:active,
.btn--secondary:focus,
.btn--secondary:hover {
  background-color: var(--white) !important;
  border: 1px solid var(--gray-400) !important;
  color: var(--black) !important;
  opacity: 0.7 !important;
}
.btn--gray-100 {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-100);
}
.btn--gray-100:active,
.btn--gray-100:focus,
.btn--gray-100:hover {
  border: 1px solid var(--gray-100);
  background-color: var(--white);
  color: var(--black);
}
.btn--gray-300 {
  border: 1px solid var(--gray-300);
  background-color: var(--gray-300);
  color: var(--black);
}
.btn--gray-300:active,
.btn--gray-300:focus,
.btn--gray-300:hover {
  border: 1px solid var(--gray-300);
  background-color: var(--white);
  color: var(--black);
}
.btn--gray-500 {
  border: 1px solid var(--gray-500);
  background-color: var(--gray-500);
  color: var(--black);
}
.btn--gray-500:active,
.btn--gray-500:focus,
.btn--gray-500:hover {
  border: 1px solid var(--gray-500);
  background-color: var(--white);
  color: var(--black);
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn{
  color: var(--bs-btn-disabled-color) !important;
}
/* _FontsColors */
.fw-bold {
  font-weight: 600 !important;
}

.font--black {
  color: var(--black);
}
.font--white {
  color: var(--white) !important;
}
.font--primary {
  color: var(--primary) !important;
}
.font--gray-100 {
  color: var(--gray-100);
}
.font--gray-300 {
  color: var(--gray-300);
}
.font--gray-500 {
  color: var(--gray-500) !important;
}
.font--gray-600 {
  color: var(--gray-600) !important;
}
.font--pdark {
  color: var(--pdark);
}
.font--tertiary {
  color: var(--tertiary) !important;
}
.font--danger {
  color: var(--danger) !important;
}

/* _BackgroundsColors */

.bg--black {
  background-color: var(--black);
}
.bg--white {
  background-color: var(--white);
}
.bg--danger {
  background-color: var(--danger);
}
.bg--primary {
  background-color: var(--primary);
}
.bg--primary-dark {
  background-color: var(--primary-dark);
}
.bg--primary-light {
  background-color: var(--primary-light);
}
.bg--pdark {
  background-color: var(--pdark);
}
.bg--gray-100 {
  background-color: var(--gray-100);
}
.bg--gray-300 {
  background-color: var(--gray-300);
}
.bg--gray-500 {
  background-color: var(--gray-500);
}
.bg--tertiary {
  background-color: var(--tertiary);
}
.bg--danger {
  background-color: var(--danger);
}

.border--primary {
  border: 1px solid var(--primary) !important;
}
.border--primary-light {
  border: 1px solid var(--primary-light) !important;
}
.border--pdark {
  border: 1px solid var(--pdark) !important;
}
.border--tertiary {
  border: 1px solid var(--tertiary) !important;
}
.border--danger {
  border: 1px solid var(--danger) !important;
}

/* _VerticalPadding */

.py--xxs {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.py--xs {
  padding-top: 1em;
  padding-bottom: 1em;
}
.py--sm {
  padding-top: 2em;
  padding-bottom: 2em;
}
.py--md {
  padding-top: 3em;
  padding-bottom: 3em;
}
.py--lg {
  padding-top: 4em;
  padding-bottom: 4em;
}
.py--xl {
  padding-top: 5em;
  padding-bottom: 5em;
}
.pt--xs {
  padding-top: 1em;
}
.pt--sm {
  padding-top: 2em;
}
.pt--md {
  padding-top: 3em;
}
.pt--lg {
  padding-top: 4em;
  padding-bottom: 4em;
}
.pt--xl {
  padding-top: 5em;
}

/* _Icons */

.icon {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon--briefcase:before {
  content: "\f0b1";
}
.icon--chat:before {
  content: "\f4ad";
}

.icon--envelope:before {
  content: "\f0e0";
}
.icon--triangle-exclamation:before {
  content: "\f071";
}

.icon--file-lines:before {
  content: "\f15c";
}
.icon--file-pen:before {
  content: "\f31c";
}

.icon--user-tie:before {
  content: "\f508";
}

.icon-header {
  color: var(--iconos_color_header);
}
.icon-active {
  color: var(--iconos_color_activo);
}

.icon-boton-primario {
  color: var(--boton_primario_color_texto);
}

.icon-favoritos {
  color: var(--corazon_favoritos_color);
}
.icon-favoritos-seleccionado {
  color: var(--corazon_favoritos_color_seleccionado);
}

.icon--address-card:before {
  content: "\f2bb";
}
.icon--angle-left:before {
  content: "\f104";
}
.icon--angle-right:before {
  content: "\f105";
}
.icon--arrow-down-wide-sort::before {
  content: "\f160";
}
.icon--arrow-left:before {
  content: "\f060";
}

.icon--arrow-right:before {
  content: "\f061";
}

.icon--arrow-rotate:before {
  content: "\f021";
}

.icon--arrow-up-right-from-square:before {
  content: "\f08e";
}

.icon--ban:before {
  content: "\f05e";
}

.icon--bars:before {
  content: "\f0c9";
}
.icon--cart:before {
  content: "\f07a";
}
.icon--powerclip:before {
  content: "\f0c6";
}
.icon--camera:before {
  content: "\f030";
}

.icon--change:before {
  content: "\f0e2";
}
.icon--check:before {
  content: "\f00c";
}
.icon--circle-check:before {
  content: "\f058";
}
.icon--square-check:before {
  content: "\f14a";
}
.icon--chevron-down:before {
  content: "\f078";
}
.icon--chevron-right:before {
  content: "\f054";
}
.icon--chevron-left:before {
  content: "\f053";
}
.icon--chevron-up:before {
  content: "\f077";
}
.icon--credit-card:before {
  content: "\f09d";
}
.icon--cross:before {
  content: "\f00d";
}
.icon--elipsis-vertical:before {
  content: "\f142";
}
.icon--eye:before {
  content: "\f06e";
}
.icon--filter:before {
  content: "\f0b0";
}
.icon--gear:before {
  content: "\f013";
}
.icon--heart:before {
  content: "\f004";
}
.icon--image:before {
  content: "\f03e";
}
.icon--info:before {
  content: "\f05a";
}
.icon--list:before {
  content: "\f03a";
}
.icon--list-ul:before {
  content: "\f0ca";
}
.icon--location-dot:before {
  content: "\f3c5";
}
.icon--menu:before {
  content: "\f0c9";
}
.icon--money-check-dollar:before {
  content: "\f53d";
}
.icon--plus:before {
  content: "\2b";
}
.icon--phone:before {
  content: "\f095";
}
.icon--pen-to-square:before {
  content: "\f044";
}
.icon--search:before {
  content: "\f002";
}
.icon--shopping-bag:before {
  content: "\f290";
}
.icon--square-check:before {
  content: "\f14a";
}
.icon--store:before {
  content: "\f54e";
}
.icon--table-list::before {
  content: "\f00b";
}
.icon--table-sells::before {
  content: "\f00a";
}
.icon--table-sells-large::before {
  content: "\f009";
}
.icon--tag:before {
  content: "\f02b";
}
.icon--trash:before {
  content: "\f1f8";
}
.icon--truck-fast:before {
  content: "\f48b";
}
.icon--user:before {
  content: "\f007";
}
.icon--user-gear:before {
  content: "\f4fe";
}
.icon--whatsapp:before {
  content: "\f232";
}
.icon--zoom:before {
  content: "\f002";
}
.icon--receipt:before {
  content: "\f543";
}
.icon--instagram:before {
  content: "\f16d";
}
.icon--facebook:before {
  content: "\f09a";
}
.icon--twitter:before {
  content: "\e61b";
}

.icon--shield:before {
  content: "\f132";
}

.icon--alert:before {
  content: "\f071";
}

.icon--tools:before {
  content: "\f7d9";
}

.icon--globe:before {
  content: "\f0ac";
}

.icon--external-link:before {
  content: "\f35d";
}

/* _OwlCarousel */

.owl-stage-outer,
.owl-stage,
.owl-item {
  height: 100%;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--gray-300);
  width: 6px;
  height: 6px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--pdark);
}
.owl-prev,
.owl-next {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: block !important;
  border: 0px;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: 0px 0px 6px 0px var(--shadow-l) !important;
  -webkit-box-shadow: 0px 0px 6px 0px var(--shadow-l) !important;
  -moz-box-shadow: 0px 0px 6px 0px var(--shadow-l) !important;
}
.owl-prev i {
  padding-right: 3px;
}
.owl-next i {
  padding-left: 3px;
}
.owl-prev {
  left: -5px;
}
.owl-next {
  right: -5px;
}
.owl-prev i,
.owl-next i {
  color: var(--pdark);
  margin-top: 5px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
}
.owl-theme .owl-nav [class*="owl-"] {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.owl-item {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}
.owl-item-font {
  font-size: 14px;
  text-align: center;
}
.owl-item-product {
  min-width: 300px;
}

.owl-card {
  width: 60px !important;
  height: 60px !important;
  font-size: 14px;
  font-weight: 600 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--gray-400) !important;
}

.owl-card-img {
  max-height: 35px !important;
  max-width: 35px !important;
}
.owl-carousel .owl-stage-outer {
  padding-top: 10px;
}
/* _Autocomplete */

.autocomplete-suggestions {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid var(--gray-400);
  background: var(--white);
  border-radius: 10px;
  cursor: default;
  overflow: auto;
  max-height: 40svh !important;
  line-height: 2.5;
  margin: auto;
  pointer-events: none;
  margin-top: 10px;
  z-index: 80;
}

.autocomplete-suggestion {
  padding: 2px 10px;
  white-space: nowrap;
  overflow: hidden;
  transition: none !important;
  cursor: pointer;
  pointer-events: auto;
}
.autocomplete-suggestion:hover {
  background-color: var(--secondary);
  border-radius: 10px;
}
.autocomplete-no-suggestion {
  padding: 2px 5px;
}
.autocomplete-selected {
  background: var(--gray-1);
  transition: none !important;
  pointer-events: auto;
}
.autocomplete-suggestions strong {
  font-weight: bold;
  color: #000;
}
.autocomplete-group {
  padding: 2px 5px;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  display: block;
  border-bottom: 1px solid #000;
}
.autocomplete-items{
  display: none !important;
}
/* _Swal */
.swal-small {
  width: 250px !important; /* Ajusta el ancho */
  height: auto !important; /* Ajusta la altura automáticamente */
  font-size: 10px !important; /* Ajusta el tamaño de la fuente */
}

/* _Modal */
.modal-container {
  position: relative;
  z-index: 9999;
}
.modal-body {
  position: relative;
  overflow-y: auto;
  scroll-behavior: smooth; /* opcional */
}

.modal-close-button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1.5em;
  display: block;
  right: 1em;
  position: absolute;
}
.modal-product-icon {
  height: 25px;
}

.modal__product--btn {
  background-color: var(--white) !important;
  border-radius: 50px !important;
  padding: 1px;
  border: 1px solid var(--gray-400);
  font-size: 14px;
}

.modal__product--btn:hover {
  background-color: var(--white) !important;
  border-radius: 50px !important;
  border: 1px solid var(--gray-400);
  opacity: 0.7;
}

.modal__product--btn.active {
  background-color: var(--gray-100) !important;
  border: none;
  border: 1px solid var(--primary);
  opacity: 1;
  font-weight: 600;
  color: var(--primary);
}
.modal__product--btn.active:active,
.modal__product--btn.active:focus {
  background-color: var(--gray-100) !important;
  border: none;
  border: 1px solid var(--primary);
  opacity: 1;
  font-weight: 600;
  color: var(--primary-dark);
}

.accordion-button {
  background-color: transparent !important;
  color: var(--pdark) !important;
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--pdark) !important;
}

.accordion-button::after {
  width: 1.2rem;
  height: 1.2rem;
  background-size: contain;
  color: var(--pdark) !important;
}
.accordion-button::after {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.accordion-collapse {
  transition: height 0.35s ease;
}
.modal-dialog-scrollable .modal-content {
  overflow-y: auto;
}

.accordion-button-no-arrow {
  cursor: default !important;
}
.accordion-button-no-arrow::after {
  display: none;
}
/* _Check*/
.form-check-input {
  cursor: pointer;
  box-shadow: none !important;
}
.form-check-product-sticky {
  position: sticky;
  top: 195px;
  background-color: var(--white) !important;
  z-index: 130;
}
.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
}
.form-check-input.esRestrictiva:checked {
    background-color: #8b0000 !important;
    border-color: #8b0000 !important;
}
/* _Switch */

/* Estilos generales para switches */

.form-switch .form-check-input:checked {
  border: none !important;
  box-shadow: none !important;
}

.custom-switch .form-check-input,
.custom-switch-product .form-check-input {
  cursor: pointer;
  box-shadow: none !important;
}

.custom-switch .form-check-input {
  width: 2.2rem;
  height: 1.1rem;
  float: none !important;
  position: relative !important;
  display: inline-block !important;
  margin-left: auto;
  border: 1px solid var(--gray-500) !important;
}

.custom-switch-product .form-check-input {
  width: 2.2rem;
  height: 1.1rem;
  position: relative !important;
  display: inline-block !important;
}

.custom-switch .form-check-input:checked,
.custom-switch-product .form-check-input:checked {
  background-color: var(--pdark);
}

.custom-switch .form-check-input:focus,
.custom-switch-product .form-check-input:focus {
  box-shadow: none !important;
}

/* -------------------------------------------------------------------------- */
/* -Especifics */

/* _HeaderProductor */
.header_productor {
  background-color: var(--primary);
  color: var(--white);
  font-size: 12px;
  height: 20px;
}
/* _Header */

.header {
  background-color: var(--white);
  position: fixed;
  z-index: 200;
  width: 100%;
  border-bottom: 1px solid var(--gray-400);
  height: 75px;
}
.header.relative-position {
  position: relative !important;
}

/* _HeaderCart */
.header--cart {
  position: fixed;
  right: 0;
  background: var(--white);
  top: 0;
  width: 25%;
  height: 100dvh;
  z-index: 150;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.header--cart-header {
  line-height: 1.8;
  position: relative;
  border-bottom: 1px solid var(--gray-300);
  padding: 1.6em 0em 1.6em 0em;
}
.header--cart-wrap {
  bottom: 0;
  overflow-y: auto;
  height: 100%;
}
.header--cart-wrap::-webkit-scrollbar {
  width: 5px;
}
.header--cart-wrap::-webkit-scrollbar-thumb {
  background-color: var(--gray-500);
}
.header--cart-wrap::-webkit-scrollbar-track {
  background-color: var(--gray-200);
}
.header--cart-wrap:focus {
  outline: none;
}
.header--cart-btn {
  border-top: 1px solid var(--gray-300);
  bottom: 0;
  z-index: 100;
  background-color: var(--white);
}
.header--cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 170;
}
.header--cart-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.header--cart-open ~ .header--cart-overlay {
  opacity: 0.7;
  visibility: visible;
}
.header--cart-no-scroll {
  overflow: hidden;
}
.header--cart-container:focus {
  outline: none;
}

.header--cart-action-button {
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  position: relative;
}
.header--cart-action--close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  position: absolute;
}
.header--cart-action-button:focus,
.header--cart-action--close:focus {
  outline: none;
}

/* __HeaderNavFooter */

#header-nav-footer {
  transition: all 0.2s ease;
}
#header-nav-footer.hide {
  bottom: -450px;
}
.header__nav--btn-search {
  border: 1px solid var(--gray-300);
}

.header__nav--img-logo {
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__nav--footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header__nav--footer span {
  font-size: 10px !important;
}
.header__nav--footer ul {
  border-top: 1px solid var(--gray-500);
}
.header__nav--footer li {
  line-height: 14px;
}
.header__nav--footer-active {
  border-top: 2px solid var(--pdark);
}

.header__nav--footer-logo {
  height: 50px;
}

/* _Nav */

/* __NavMenu; */
.badge-container {
  width: 24px;
  height: 24px;
  position: relative;
}

.badge-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  color: var(--white);
  background-color: var(--bs-tertiary, red); /* Usá tu clase bg--tertiary si preferís */
  border-radius: 50%;
  font-weight: bold;
}

.nav--menu {
  position: fixed;
  left: 0;
  background: var(--white);
  top: 0;
  width: 90% !important;
  height: 100dvh;
  z-index: 1000;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.nav--menu-logo-container {
  position: absolute;
  top: 1.3em;
}
.nav--menu-title {
  margin-top: 300px;
}
.nav--menu-logo {
  width: 110px;
}

.nav--menu-content {
  position: relative;
}
.nav--menu-products {
  margin: 0;
}
.nav--menu-product {
  display: inline-block;
  width: 15em;
  height: 17em;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--gray-500);
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav--menu-product .icon {
  font-size: 5em;
  color: var(--gray-500);
  text-align: center;
}
.nav--menu-no-scroll {
  overflow: hidden;
}
.nav--menu-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.nav--menu-open ~ .nav--menu-overlay {
  opacity: 0.7;
  visibility: visible;
}
.nav--menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 210;
}
.nav--menu-wrap {
  position: absolute;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--gray-300);
  top: 9.5em;
  bottom: 0;
}
.nav--menu-level {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 10px;
  list-style-type: none;
}
.nav--menu-level::-webkit-scrollbar {
  width: 5px;
}
.nav--menu-level::-webkit-scrollbar-thumb {
  background-color: var(--gray-500);
}
.nav--menu-level::-webkit-scrollbar-track {
  background-color: var(--gray-200);
}
.nav--menu-level:focus {
  outline: none;
}
.nav--menu-level-current {
  visibility: visible;
}
.nav--menu-item {
  display: block;
  width: 100%;
}
.nav--menu-link {
  position: relative;
  display: block;
  padding: 0.9em 2.5em 0.9em 1em;
  color: var(--pdark);
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  font-size: 14px !important;
}
.nav--menu-link[data-submenu]::after {
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  padding: 0.15em 1.25em;
  color: var(--pdark);
  font-size: 10px;
}
[class^="animate-"],
[class*=" animate-"] {
  visibility: visible;
}
.animate-outToRight .nav--menu-item {
  -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate-outToLeft .nav--menu-item {
  -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-inFromLeft .nav--menu-item {
  -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate-inFromRight .nav--menu-item {
  -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate-inFromRight,
.animate-outToRight {
  z-index: -10;
}

.nav--menu-breadcrumbs {
  font-size: 0.65em;
  line-height: 1.8;
  padding: 2em 6em 1.9em 1.7em;
  width: 100%;
  top: 50px;
  position: fixed !important;
}

.nav--menu-breadcrumbs a {
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary) !important;
}
.nav--menu-breadcrumbs a:last-child {
  pointer-events: none;
}
.nav--menu-breadcrumbs a:hover,
.nav--menu-breadcrumbs a:focus {
  color: var(--primary);
}
.nav--menu-breadcrumbs a:not(:last-child)::after {
  content: "\f105";
  font-family: "FontAwesome";
  display: inline-block;
  padding: 0 0.5em;
  color: var(--pdark);
}
.nav--menu-breadcrumbs a:not(:last-child):hover::after,
.nav--menu-breadcrumbs a:not(:last-child):focus::after {
  color: var(--pdark);
}
.nav--menu-breadcrumb-title {
  margin-top: 120px;
  position: fixed;
}
.nav--menu-back {
  font-size: 1em;
  position: absolute;
  cursor: pointer;
  color: var(--gray-500);
  border: none;
  background: none;
  z-index: 110;
  top: 45px;
  right: 0;
  margin: 0;
  padding: 1.4em 1em 0 0;
}
.nav--menu-back-hidden {
  pointer-events: none;
  opacity: 0;
}
.nav--menu-back:hover,
.nav--menu-back:focus {
  color: var(--pdark);
  outline: none;
}

.nav--menu-action-button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1.5em;
  display: block;
  position: relative;
}
.nav--menu-action-close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  position: absolute;
}
.nav--menu-action-button:focus,
.action--close:focus {
  outline: none;
}
.nav--menu-features {
  position: absolute;
  width: 85%;
  padding-top: 50px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.nav--menu-btn-container {
  position: absolute;
  bottom: 0;
  background-color: var(--white);
}

/* _Main */
.main {
  margin-top: 70px;
  min-height: 90svh;
}
/* __MainSectionHero */
/* .main__section--hero {
    background: url('../../assets/images/global/hero-bg.jpg') no-repeat right center;
  background-size: cover;
} */
.main__section--hero {
  margin-top: 100px;
}
.main__section--hero-logo {
  /*   background: url('../../assets/images/global/hero-bg.jpg') no-repeat right center; */
  height: 90px;
}
.main__section--hero-search-container {
  z-index: 100;
}

.main__section--hero-search {
  border: 1px solid var(--gray-400);
}
.main__section--hero-search::placeholder {
  padding-left: 1px;
}

.main__section--hero-search:active,
.main__section--hero-search:focus {
  border: 1px solid var(--primary) !important;
}

.main__section--hero-search-no-scroll {
  overflow: hidden;
}

/* Estilos del overlay */
.main__section--hero-cross::placeholder {
  padding-left: 1px;
}

.main__section--hero-cross:active,
.main__section--hero-cross:focus,
.main__section--hero-cross:hover {
  border: 1px solid var(--gray-3) !important;
  box-shadow: 0 1px 6px rgba(0, 11, 45, 0.28);
}

.main__section--hero-btn-search {
  position: absolute;
  z-index: 100;
  border-left: 1px solid var(--gray-2) !important;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.main__section--hero-btn-search-icon {
  position: absolute;
  z-index: 10;
  border-left: 1px solid var(--gray-2) !important;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  font-size: 15px;
}
.main__section--hero-btn-cross {
  position: absolute;
  z-index: 10;
  border-left: 1px solid var(--gray-2) !important;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  font-size: 15px;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
/* __MainSectionCart */
/* .main__section--cart {
} */
/* .main__section--cart-title-sticky {
  position: sticky;
  background-color: var(--white);
  top: 70px;
  border-bottom: 1px solid var(--gray-300);
  z-index: 150;
} */
.main__section--cart-product-sticky {
  position: sticky;
  top: 70px;
  z-index: 140;
}
/* __MainSectionProduct */
.main__section--product {
  position: relative;
}
.main__section--product-agrupator-img-container {
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
}
.main__section--product-agrupator-img-container img {
  width: 30px !important;
  height: 30px !important;
}

.main__section--product-sub-header .modal-backdrop {
  z-index: 120; /* Asegúrate de que el backdrop esté debajo del sticky */
}
.main__section--product-father-sticky {
  position: sticky;
  top: 65px;
  background-color: var(--white);
  z-index: 140;
}

.main__section--product-father-sticky-modal {
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 140;
}

.modal-backdrop {
  z-index: 300; /* Asegúrate de que el backdrop esté debajo del sticky */
}
.main__section--product-sticky {
  position: sticky;
  top: 70px;
  background-color: var(--white);
  z-index: 130;
}
.main__section--product-sticky .promo-logo {
  height: 40px;
}
.main__section--product-sticky-datos {
  position: sticky;
  top: 70px;
  z-index: 130;
}
.main__section--product-sticky-sumar-titulo {
  position: sticky;
  top: 70px;
  background-color: var(--white);
  z-index: 150;
}
.main__section--product-sticky-sumar-cobertura {
  position: sticky;
  top: 125px;
  background-color: var(--white);
  z-index: 140;
}

.main__section--product-btn-total {
  position: sticky;
  top: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 160;
  border-top: 1px solid var(--gray-300);
}

.main__section--product-btn-total-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 160;
  border-top: 1px solid var(--gray-300);
}

.main__section--product-border-active {
  border: 1px solid var(--primary-light) !important;
}
.main__section--product-tabs {
  position: relative;
}

.main__section--product-tabs-img {
  height: 18px;
}
.main__section--product-tabs-top-hack {
  padding-top: 4px !important;
}

.main__section--product-tab-link {
  background-color: var(--white) !important;
  border-radius: 50px !important;
  padding: 1px;
  border: 1px solid var(--gray-400);
  font-size: 16px;
}

.main__section--product-tab-link:hover {
  background-color: var(--white) !important;
  border-radius: 50px !important;
  border: 1px solid var(--gray-400);
  padding: 1px;
  opacity: 0.7;
}

.main__section--product-tab-link.active {
  background-color: var(--gray-100) !important;
  border: none;
  border: 1px solid var(--primary);
  opacity: 1;
  font-weight: 600;
  color: var(--primary) !important;
}
.main__section--product-tab-link.active:active,
.main__section--product-tab-link.active:focus {
  background-color: var(--gray-100) !important;
  border: none;
  border: 1px solid var(--primary);
  opacity: 1;
  font-weight: 600;
  color: var(--primary-dark);
}

.main__section--product-tab-content {
  z-index: 100 !important;
  position: relative;
}

.main__section--product-tab-content i {
  cursor: pointer;
}
.main__section--product-tab-content h5 {
  cursor: pointer;
}
.main__section--product-tab-content i:hover {
  opacity: 0.7;
}
.main__section--product-tab-content h5:hover {
  opacity: 0.7;
}
.main__section--product-tab-container {
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  position: relative;
}
.main__section--product-tab-container i {
  cursor: pointer;
}

.main__section--product-tab-container.active {
  border: 1px solid var(--primary-light) !important;
}
.main__section--product-else.active {
  border: 1px solid var(--primary-light);
}
/* Animaciones de los tabs */
.main__section--product-tabs-container .main__section--product-tabs .main__section--product-tab-content {
  opacity: 0;
  visibility: hidden;
  position: fixed; /* Los tabs no ocuparán espacio */
}

.main__section--product-tabs-container .main__section--product-tabs .main__section--product-tab-content.active {
  opacity: 1;
  visibility: visible; /* Los tabs activos son visibles */
  position: relative; /* Vuelven a estar en el flujo normal del documento */
}
.main__section--product-img {
  height: 25px;
}
.main__section--product-img-promo {
  height: 35px;
}
.main__section--product-img-else {
  height: 22px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* __MainSectionFelicitaciones */
/* .main__section--felicitaciones {
  background-color: red;
} */
.main__section--felicitaciones .icon--info {
  cursor: pointer;
}
.main__section--felicitaciones-btn-sticky {
  position: sticky;
  top: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 130;
  border-top: 1px solid var(--gray-300);
}
.main__section--autoinspeccion .modal-content {
  height: 90svh;
}

/* __MainFilterSticky */

#main-filter-sticky {
  transition: all 0s ease;
}
#main-filter-sticky.hide {
  top: 0px;
}
.main--filter-sticky {
  position: sticky;
  top: 70px;
  z-index: 50;
}
.main--filter-sticky .container {
  border-bottom: 1px solid var(--gray-200);
}
/* __MainSectionAsideFilter */

.main__section__aside--filter {
  position: fixed;
  left: 0;
  background: var(--white);
  top: 0;
  width: 25%;
  height: 100dvh;
  z-index: 100;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.main__section__aside--filter-header {
  line-height: 1.8;
  position: relative;
  border-bottom: 1px solid var(--gray-300);
  padding: 1.3em 0em 1.3em 0em;
}
.main__section__aside--filter-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.main__section__aside--filter-wrap {
  position: absolute;
  top: 72px;
  bottom: 0;
  overflow: hidden;
  width: 100%;
}
.main__section__aside--filter-container {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 50px;
}
.main__section__aside--filter-container:focus {
  outline: none;
}
.main__section__aside--filter-container::-webkit-scrollbar {
  width: 5px;
}
.main__section__aside--filter-container::-webkit-scrollbar-thumb {
  background-color: var(--gray-500);
}
.main__section__aside--filter-container::-webkit-scrollbar-track {
  background-color: var(--gray-200);
}
.main__section__aside--filter::-webkit-scrollbar {
  width: 5px;
}
.main__section__aside--filter::-webkit-scrollbar-thumb {
  background-color: var(--gray-500);
}
.main__section__aside--filter::-webkit-scrollbar-track {
  background-color: var(--gray-200);
}
.main__section__aside--filter-action-button {
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  position: relative;
}
.main__section__aside--filter-action-close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  position: absolute;
}
.main__section__aside--filter-action-button:focus,
.main__section__aside--filter-action-close:focus {
  outline: none;
}
.main__section__aside--filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 170;
}
.main__section__aside--filter-open ~ .main__section__aside--filter-overlay {
  opacity: 0.7;
  visibility: visible;
}
.main__section__aside--filter-no-scroll {
  overflow: hidden;
}

/* __MainSectionAsideAccordion */

.main__section__aside--filter-accordion .main__section__aside--filter-accordion-item {
  border: none;
  border-bottom: 1px solid var(--gray-500);
  border-radius: 0;
}
.main__section__aside--filter-accordion .main__section__aside--filter-accordion-item button[aria-expanded="true"] {
  border-bottom: none;
}
.main__section__aside--filter-accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 0.5em 0;
  color: var(--gray-700);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.main__section__aside--filter-accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 17px;
  right: 0;
  font-size: 14px;
}
.main__section__aside--filter-accordion .main__section__aside--filter-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-in-out;
}
.main__section__aside--filter-accordion button[aria-expanded="true"] + .main__section__aside--filter-accordion-content {
  max-height: 100%;
}
.main__section__aside--filter-accordion .main__section__aside--filter-accordion-content p {
  font-size: 1rem;
  font-weight: 300;
}

/* -------------------------------------------------------------------------- */
/* _MainSectionContratar */
.main__section--contratar {
  position: relative;
}
.main__section--contratar i {
  cursor: pointer;
}
.main__section--contratar-steps {
  color: var(--gray-500);
  font-size: 12px;
}

.main__section--contratar-steps-container {
  top: 65px;
  position: sticky;
  z-index: 155;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-300);
}
.main__section--contratar-steps .main__section--contratar-step-activo,
.main__section--contratar-steps .main__section--contratar-step-completo {
  color: var(--pdark);
}
.main__section--contratar-step {
  height: 6px;
  background: var(--gray-300);
  border-radius: 3px;
  margin-bottom: 5px;
}
.main__section--contratar-step-completo .main__section--contratar-step {
  background: var(--light-blue);
}
.main__section--contratar-step-activo .main__section--contratar-step {
  background: linear-gradient(to right, var(--light-blue) 0%, var(--light-blue) 50%, var(--gray-300) 50%, var(--gray-300) 100%);
}
.main__section--contratar-btn {
  position: sticky;
  bottom: 0;
  background-color: var(--white);
  z-index: 150;
  border-top: 1px solid var(--gray-300);
}

/* _Footer */
footer {
  font-size: 12px;
}
.footer__img--logo {
  height: 40px;
}
.footer__logos--institucionales img {
  height: 35px;
}
.footer__logos-data-fiscal {
  height: 60px !important;
}
.footer--inscripción {
  border-right: 1px solid var(--gray-400);
}

.footer-ssn-logo img {
  width: 60%;
  max-width: 232px !important;
}
.footer-servicio-asegurado {
  border-bottom: 1px solid var(--gray-400);
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -Especifics */

/* _Header */
/* _HeaderSearch */

.header--search {
  position: fixed;
  right: 0;
  background: var(--white);
  top: 0;
  width: 90%;
  height: 100dvh;
  z-index: 220;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.header--search input:focus {
  border: 1px solid var(--primary) !important; /* azul bootstrap */
}
.header--search-header {
  line-height: 1.8;
  position: relative;
  padding: 2em 0em 1em 0em;
}
.header--search-wrap {
  bottom: 0;
  overflow-y: auto;
  height: 100%;
}
.header--search-wrap:focus {
  outline: none;
}
.header--search-btn {
  border-top: 1px solid var(--gray-2);
  bottom: 0;
  z-index: 100;
  background-color: var(--gray-500);
}
.header--search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 210;
}
.header--search-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.header--search-open ~ .header--search-overlay {
  opacity: 0.7;
  visibility: visible;
  background-color: var(--black);
}
.header--search-no-scroll {
  overflow: hidden;
}
.header--search-container:focus {
  outline: none;
}

.header--search-action-button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1.5em;
  display: block;
  position: relative;
}
.header--search-action-button i {
  margin-top: 2px;
}
.header--search-action--close {
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.header--search-action-button:focus,
.header--search-action--close:focus {
  outline: none;
}

/* __HeaderNavFooter */

#header-nav-footer {
  transition: all 0.2s ease;
}
#header-nav-footer.hide {
  bottom: -450px;
}
.header__nav--search {
  border: 1px solid var(--gray-2) !important;
  font-family: var(--font-family), "FontAwesome";
}
.header__nav--search::placeholder {
  padding-left: 1px;
}

.header__nav--search:active,
.header__nav--search:focus,
.header__nav--search:hover {
  border: 1px solid var(--gray-3) !important;
}

.header__nav--btn-search {
  position: absolute;
  z-index: 100;
  border-left: 1px solid var(--gray-2) !important;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.header__nav--search-side {
  font-family: var(--font-family), "FontAwesome";
  padding-left: 40px;
  font-size: 16px;
}

.header__nav--search-side:active,
.header__nav--search-side:focus {
  border: 1px solid var(--primary) !important;
}

.header__nav--btn-search-side {
  cursor: auto;
  position: absolute;
  z-index: 100;
  border-left: 1px solid var(--gray-2) !important;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}

.oculto{
  display: none;
}

textarea.form-control{
  min-height: 100px !important;
}
.opcional_info{
  vertical-align: middle;
}
.tooltip-inner {
  text-align: left;
  max-width: 90vw;
  width: max-content;
  white-space: normal;
}

.input-group-text {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.preciocuotatachado{
  text-decoration: line-through;
}
.icono_producto{
  width: 40px;
  display: flex;
  background: #FFF;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.icono_producto img{
  height: auto !important;
}
.alertas-opciones{
  font-size: 0.7rem;
  font-style: italic;
  color: #0074ff;
  line-height: 1.1;
}
/* -------------------------------------------------------------------------- */
/* -Media queries  */

@media (min-width: 576px) {
  .autocomplete-suggestions {
    max-height: 45svh !important;
  }
  .nav--menu {
    width: 55% !important;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
  .sticky-col {
    font-size: 14px !important;
  }
  td {
    font-size: 14px !important;
  }
  .sticky-col-title {
    font-size: 14px !important;
  }
  .header {
    height: 90px;
  }
  .header_productor {
    font-size: 14px;
  }
  .header__nav--img-logo {
    height: 50px;
  }
  .header__nav--footer {
    position: relative;
    bottom: auto;
    left: auto;
    width: 25%;
  }
  .header__nav--footer ul {
    border-top: 0px;
  }
  .header__nav--footer-active {
    border-top: 0px;
  }
  .header--search {
    width: 25%;
  }
  .main {
    padding-bottom: 0;
    margin-top: 90px;
  }
  /* __MainSectionHero */
  .main__section--hero {
    height: 50vh;
  }

  .main__section--product-btn-total {
    top: 89px;
  }
  .main__section--product-father-sticky {
    position: sticky;
    top: 85px;
    background-color: var(--white);
    z-index: 140;
  }

  .main__section--product-sticky {
    position: sticky;
    top: 90px;
    background-color: var(--white);
    z-index: 140;
  }
  .main__section--product-sticky-datos {
    top: 90px;
  }
  .main__section--product-sticky-sumar-titulo {
    top: 90px;
  }
  .main__section--product-sticky-sumar-cobertura {
    position: sticky;
    top: 140px;
    background-color: var(--white);
    z-index: 140;
  }
  .main .main--filter-sticky {
    top: 93px;
  }
  .main__section--product-tabs-img {
    height: 23px;
  }
  .main__section--product-tab-link {
    font-size: 18px;
  }
  .main__section--contratar-steps-container {
    top: 90px;
  }
  .nav--menu-link {
    font-size: 16px !important;
  }
  .owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
  }
  .main__section__aside--filter {
    position: sticky;
    background: var(--white);
    top: 50px;
    width: 280px;
    height: 100vh;
    z-index: 20;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    overflow-y: auto;
  }
  .main__section__aside--filter-wrap {
    position: relative;
    top: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
  }
  .main__section__aside--filter-action-close {
    display: none;
  }
  /* _Swal */
  .swal-small {
    width: 350px !important;
    font-size: 12px !important;
  }
  .main__section--contratar-steps {
    font-size: 14px;
  }
  /*   .main__section--cart-title-sticky {
    top: 90px;
  } */
  .main__section--cart-product-sticky {
    top: 90px;
  }
  .main__section--felicitaciones-btn-sticky {
    border: none;
  }
  /* _Footer */
  footer {
    padding-bottom: 0px;
  }

  .footer--asegurado {
    border-right: 1px solid var(--gray-400);
  }
  .footer--argentina-gob {
    border-right: 1px solid var(--gray-400);
  }
  .footer-ssn-logo img {
    width: 80%;
  }
  .footer-servicio-asegurado {
    border-right: 1px solid var(--pdark);
  }
  .footer-servicio-asegurado {
    border-bottom: none;
  }
  .footer__logos--institucionales img {
    height: 50px;
  }
  .footer__logos-data-fiscal {
    height: 80px !important;
  }
  .main__section--autoinspeccion .modal-content {
    height: 70svh;
  }
  .nav--menu {
    width: 40% !important;
  }
  .tooltip-inner {
    max-width: 450px;
    white-space: normal;
  }
}
@media (min-width: 1200px) {
  .nav--menu {
    width: 35% !important;
  }
}
@media (min-width: 1300px) {
}
@media (min-width: 1500px) {
  .nav--menu {
    width: 25% !important;
  }
}
@media (max-width: 1399px) {
}
@media (max-width: 1299px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  .nav--menu-action-open-desk,
  .nav--menu-action-open-mobile,
  .nav--menu-action-close {
    display: block;
  }
  .header--cart {
    width: 90%;
    height: 100dvh;
  }
  .main__section__aside--filter {
    width: 90%;
    height: 100dvh;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/* -------------------------------------------------------------------------- */
/* -z-indexList */

/* .nav--menu-back {
  z-index: 110;
}
.nav--menu {
  z-index: 100;
}
.header--cart {
  z-index: 100;
}
.main__section__aside--filter {
  z-index: 100;
}
.nav--menu-overlay {
  z-index: 90;
}
.header {
  z-index: 80;
}
.main--filter-sticky {
  z-index: 50;
}
@media (min-width: 992px) {
 .main__section__aside--filter {
   z-index: 20;
 }
}
.nav--menu-action-open-mobile {
  z-index: 10;
}
.animate-inFromRight,
.animate-outToRight {
  z-index: -10;
} 
*/
/* -------------------------------------------------------------------------- */
/* -Developers */
/* _user-de-github1 */
/* _user-de-github2 */
