@charset "UTF-8";
/*------------------------------------------------------------------
[Indice]

1. Variables y mixins
2. Estructura
3. Páginas
4. Componentes
5. Plugins

/*------------------------------------------------------------------
[1. Variables y mixins]
-------------------------------------------------------------------*/
/*===Tamaños para Query===*/
/*===Colores===*/
:root {
  --colorPrimario: #c4ab75;
  --colorPrimarioDetalle: #790B18;
  --colorFondoDetalle: #f8f3ed;
  --colorDetalle: #CEB870;
  --colorSecundario: #b6b6b6;
  --colorFondo: rgb(3, 3, 3);
  --requerido: #dc3545;
  --colorTerciario: #fff;
  --colorTexto: #333333;
  --fuentePrincipal: "Inter", sans-serif;
  --fuenteSecundaria: "Libre Baskerville", serif;
}

/* Normal desktop :1200px. */
/* Normal desktop :992px. */
/* Tablet desktop :768px. */
/* small mobile :320px. */
/* Large Mobile :480px. */
/*------------------------------------------------------------------
[2. Estructura]
-------------------------------------------------------------------*/
/*===Clases colores===*/
.colorPrimario {
  color: var(--colorPrimario);
}

.colorTerciario {
  color: var(--colorTerciario);
}

.colorSecundario {
  color: var(--colorSecundario);
}

.colorDetalle {
  color: var(--colorDetalle);
}

.fondoDetalle {
  background-color: var(--colorFondoDetalle);
}

.colorPrimarioDetalle {
  color: var(--colorPrimarioDetalle);
}

.fondoSecundario {
  background-color: var(--colorSecundario);
}

.fondoTerciario {
  background-color: var(--colorTerciario);
}

.fondoPrimario {
  background-color: var(--colorPrimario);
  color: #fff;
}

.fondoPrimarioClaro {
  background-color: #e6e5e4;
  padding: 2rem;
  border-radius: 8px;
}

.requerido {
  color: var(--requerido);
}

.colorTexto {
  color: var(--colorTexto);
}

small.colorSecundario {
  cursor: pointer;
}

/*===Tipo de fuente===*/
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v18-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/inter-v18-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/libre-baskerville-v14-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/libre-baskerville-v14-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
strong {
  font-weight: 600;
}

.cursiva {
  font-style: italic;
}

.secondary-font {
  font-family: var(--fuenteSecundaria);
}

html {
  min-height: 100%;
  position: relative;
  background-color: var(--colorTerciario);
}

img {
  max-width: 100%;
}

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--fuentePrincipal);
  font-weight: 400;
  color: var(--colorTexto);
  background: transparent;
  /* Scrollbars en firefox */
  scrollbar-face-color: var(--colorPrimario); /* Firefox 63 compatibility */
  scrollbar-track-color: var(--colorFondo); /* Firefox 63 compatibility */
  scrollbar-color: var(--colorPrimario);
  scrollbar-width: thin;
  /* Scrollbars en chrome */
}
body::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  display: none;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--colorPrimario);
  border-radius: 10px;
  height: 50px;
}

.color-section {
  background-color: var(--colorTerciario);
  padding-top: 5rem;
}

main {
  padding-top: 5rem;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

a:focus {
  outline: none;
}

a::-moz-focus-inner {
  border: 0;
}

hr {
  border-top: 1px solid #747474;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1920px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/*===Hack H1===*/
.pixel {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  margin: 0;
  border: 0;
}

/*===Cabecera===*/
#cabecera {
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  font-family: var(--fuentePrincipal);
  transition: all 0.5s;
}
#cabecera .idioma {
  max-width: 16px;
  vertical-align: baseline;
}
#cabecera .detalle {
  height: 2px;
  background-color: var(--colorSecundario);
}
#cabecera.fija {
  -webkit-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.3);
  background-color: var(--colorPrimario);
}
#cabecera.fija .navbar-toggler .icon-bar {
  background-color: var(--colorTerciario);
}
#cabecera.fija .navbar-nav a:not(.dropdown-item) {
  color: var(--colorTerciario);
}
#cabecera.fija .navbar-brand img {
  filter: brightness(10);
}
#cabecera .navbar {
  padding: 0.8rem 0;
}
#cabecera .navbar-brand {
  flex: auto;
  margin-right: 0;
}
#cabecera .navbar-brand img {
  width: 160px;
}
#cabecera .backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(30, 26, 41, 0.7254901961);
  display: none;
}
#cabecera .navbar-nav {
  padding: 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
#cabecera .navbar-nav a {
  font-size: 0.95rem;
  color: var(--colorFuente);
  position: relative;
}
#cabecera .navbar-nav a:hover {
  color: var(--colorSecundario);
}
#cabecera .navbar-nav a[data-state=activo] {
  color: var(--colorSecundario);
  font-weight: 700;
}
#cabecera .navbar-nav a[data-state=activo]:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 8px;
  background-color: var(--colorSecundario);
  left: -10px;
  top: 21px;
}
#cabecera .navbar-nav a:active {
  color: var(--colorPrimario);
  background-color: transparent;
}
#cabecera .navbar-nav .nav-item:last-of-type {
  margin-right: 0;
}

@media (max-width: 1199px) {
  #cabecera .togglers {
    z-index: 999;
    padding-top: 0.3rem;
  }
  #cabecera .navbar-brand {
    z-index: 2;
  }
  #cabecera .navbar-toggler {
    border: none;
    z-index: 2;
    padding: 0;
  }
  #cabecera .navbar-toggler:not(.jq_carrito) i {
    color: var(--colorTerciario);
  }
  #cabecera .dropdown-toggle.show {
    font-weight: 600;
  }
  #cabecera .jq_volver {
    position: absolute;
    left: 0;
  }
  #cabecera .svg {
    vertical-align: baseline;
  }
  #cabecera .navbar-nav {
    align-items: initial;
    position: relative;
  }
  #cabecera .navbar-nav a {
    font-size: 1rem;
  }
  #cabecera .navbar-nav a[data-state=activo] {
    color: var(--colorSecundario);
    font-weight: 700;
  }
  #cabecera .navbar-nav a[data-state=activo]:before {
    content: none;
  }
  #cabecera .offcanvas-xl {
    padding: 1rem 2rem 2rem 2rem;
    align-items: end;
    background-color: #2e282a;
    overflow-y: auto;
  }
  #cabecera .offcanvas-xl .navbar-brand img {
    filter: brightness(10);
  }
  #cabecera .offcanvas-xl a {
    color: var(--colorTerciario);
    padding: 2rem 0;
    text-align: right;
  }
  #cabecera .offcanvas-xl li:not(:last-of-type) a {
    border-bottom: 1px solid #e5e5e5;
  }
  #cabecera .dropdown-divider {
    display: none;
  }
  #cabecera .dropdown-menu {
    background-color: transparent;
    border: none;
  }
}
@media (max-width: 576px) {
  #cabecera .offcanvas-xl {
    width: 100%;
    padding: 1rem 2rem 2rem 2rem;
    background-color: var(--colorPrimario);
  }
  #cabecera .offcanvas-xl a {
    font-size: 1.2rem;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  #cabecera .navbar {
    padding: 0;
  }
  #cabecera .navbar-nav {
    padding: 0;
  }
  #cabecera .navbar-nav a {
    padding: 0.9rem var(--bs-nav-link-padding-x);
  }
  #cabecera .dropdown-toggle.show {
    color: var(--colorPrimario);
    font-weight: 600;
  }
  #cabecera .jq_volver {
    display: none;
  }
  #cabecera .dropdown-menu {
    position: absolute;
    min-width: 20px;
    top: 52px;
    border: none;
    border-radius: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 25px 24px;
    background-color: var(--colorTerciario);
    color: var(--colorTexto);
    padding: 0.5rem 1rem;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top: 3px solid var(--colorPrimario);
  }
  #cabecera .dropdown-menu a {
    display: block;
    color: var(--colorTexto);
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.9rem;
  }
  #cabecera .dropdown-menu a:last-of-type {
    border: none;
  }
  #cabecera .dropdown-menu a:hover {
    color: var(--colorPrimario);
    background-color: var(--colorPrimario-300);
  }
  #cabecera .dropdown-menu a:active {
    color: var(--colorPrimario);
    background-color: var(--colorPrimario-300);
  }
  #cabecera.fija .dropdown-menu {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 6px;
  }
  #cabecera.fija .dropdown-toggle.show {
    border-bottom: transparent;
    color: var(--colorPrimario);
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  #cabecera .dropdown-menu {
    border-radius: 0;
    border: none;
    background-color: transparent;
  }
  #cabecera .dropdown-menu a {
    display: block;
    padding: 0rem 1rem;
  }
  #cabecera .navbar-brand {
    margin-right: 0;
  }
  #cabecera .navbar-brand img {
    height: 55px;
  }
}
@media (max-width: 1200px) {
  #cabecera .navbar {
    padding: 0.65rem 0;
    align-items: center;
  }
  #cabecera .nav-link .jq_volver {
    transition: all 0.5s;
  }
  #cabecera .nav-link.show .jq_volver {
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
}
.nav-item .nuevoProducto {
  position: absolute;
  right: -6px;
  top: 6px;
  width: 15px;
  height: 15px;
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  border-radius: 50%;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  display: block;
}

.navbar-toggler:hover {
  background: transparent !important;
}

.navbar-toggler .icon-bar {
  height: 2px;
  width: 22px;
  border-radius: 1px;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: var(--colorTexto);
}

.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}

.dropdown-toggle::after {
  content: none;
}

/*---Animación del menú hamburguesa---*/
.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: translateX(3px) rotate(45deg); /* Safari 3-8 & Chrome 4-35 & Opera 15-22 */
  -ms-transform: translateX(3px) rotate(45deg); /* IE 9 */
  -moz-transform: translateX(3px) rotate(45deg); /* Firefox 3-15 */
  -o-transform: translateX(3px) rotate(45deg); /* Opera 10-14 */
  transform: translateX(3px) rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  -moz-transform-origin: 10% 10%;
  -o-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
  -moz-opacity: 0; /* Older Firefox 1 */
}

.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: translateX(3px) rotate(-45deg);
  -ms-transform: translateX(3px) rotate(-45deg);
  -moz-transform: translateX(3px) rotate(-45deg);
  -o-transform: translateX(3px) rotate(-45deg);
  transform: translateX(3px) rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  -moz-transform-origin: 10% 90%;
  -o-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

.navbar-toggler.x.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler.x.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}

.navbar-toggler.x.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

#pie {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#pie p {
  color: var(--colorTerciario);
}
#pie small, #pie li {
  color: #aca89f;
}
#pie a {
  color: #aca89f;
}
#pie a:hover {
  opacity: 0.7;
}
#pie .footer {
  position: relative;
  background-color: #2e282a;
  padding: 12rem 0 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pie .footer::before {
  content: "";
  background-image: url(../img/pie/imagen-footer.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  width: 350px;
  height: 170px;
  margin: 0 auto;
}
#pie .subfooter {
  background-color: #282425;
}
#pie .logoPie {
  margin-top: 0.5rem;
  max-width: 170px;
  filter: brightness(10);
}

/*===Loader===*/
#loader {
  background-color: var(--colorPrimario);
}

#loader .modal-content {
  text-align: center;
  background-color: var(--colorPrimario);
  border: none;
  height: 100%;
  width: 100%;
  align-items: center;
}

#loader .logoModal {
  width: 120px;
}

.modal-backdrop.loader {
  opacity: 0.9;
  background-color: #fff;
}

.navegacion .colorTexto:hover {
  color: var(--colorPrimario);
}

.via {
  vertical-align: text-top;
}

/*===Presentacion===*/
.presentacion {
  padding: 0.5rem;
  border-bottom: 3px solid var(--colorPrimario);
  background-color: var(--colorTerciario);
  margin-bottom: 2rem;
}
.presentacion img {
  max-width: 130px;
}

/*===ScrollUp===*/
#scrollUp {
  padding: 0.4rem 0.7rem;
  position: fixed;
  bottom: 2.5rem;
  right: 2%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: none;
  z-index: 9999;
  background-color: var(--colorPrimario);
}
#scrollUp i {
  color: #fff;
}

#scrollUp:hover {
  color: #fff;
}

.jq_oculto {
  display: none;
}

/*===Checkboxes===*/
input[type=checkbox],
input[type=radio] {
  position: absolute;
  left: -9999px;
}

.customCheck {
  position: relative;
  padding: 2px 0 0 25px;
  font-size: 1rem;
  cursor: pointer;
}

.customCheck::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  content: "\f0c8";
  display: block;
  position: absolute;
  opacity: 1;
  top: 1px;
  left: 0;
  color: var(--colorSecundario);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.form-group .customCheck {
  padding-top: 0;
}
.form-group .customCheck:before {
  top: -3px;
}

span.aspNetDisabled.checked + .customCheck::before,
input:checked + .customCheck::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14a";
  color: var(--colorPrimario);
  opacity: 1;
}

span.aspNetDisabled.checked + .customCheck::before,
input:disabled + .customCheck::before {
  opacity: 0.4;
}

span.aspNetDisabled.checked.colorPrimario + .customCheck::before,
input:disabled + .customCheck::before {
  opacity: 1;
}

span.aspNetDisabled.checked + .customCheck::before,
input:disabled + .customCheck::before {
  cursor: no-drop;
}

span.aspNetDisabled + .customCheck::before,
input:disabled + .customCheck::before {
  cursor: no-drop;
}

span.aspNetDisabled + .customCheck {
  cursor: default;
}

.checkBoxModal .customCheck {
  padding: 18px 0 0 28px;
}

.customRadio {
  display: block;
  position: relative;
  padding: 2px 0 0 25px;
  cursor: pointer;
  font-size: 1rem;
}

.customRadio::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  font-size: 17px;
  content: "\f111";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  color: #dad8d5;
  cursor: pointer;
}

.iconoError {
  font-size: 10rem;
  margin-top: 5rem;
}

.fondoOpciones {
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--colorPrimario);
  background-color: #f8f8f8;
}

.imagenPresentacion {
  text-align: center;
  margin: 1.5rem 0;
}
.imagenPresentacion img {
  max-width: 400px;
}

.logoAsprona {
  max-width: 300px;
}

input:checked + .customRadio::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f192";
  color: var(--colorPrimario);
  opacity: 1;
}

input:checked + .customRadio.activo::before,
input:checked + .customRadio.activo::before {
  color: #b1d0ca;
}

.badge.badge-primary {
  background-color: var(--colorPrimario);
}

/*===Switches===*/
.custom-control-label {
  cursor: pointer;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--colorPrimario);
  background-color: var(--colorPrimario);
  cursor: pointer;
}

.custom-control-input.requerido:checked ~ .custom-control-label.requerido::before {
  border-color: #c74848;
  background-color: #c74848;
  cursor: no-drop;
}

.form-check.form-switch input[type=checkbox],
.form-check.form-switch input[type=radio] {
  position: relative;
  left: 0;
  cursor: pointer;
}

.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked {
  border-color: var(--colorPrimario);
  background-color: var(--colorPrimario);
}

.custom-switch .custom-control-label::before {
  width: 2.1rem;
  height: 1rem;
}

.custom-switch .custom-control-label::after {
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  transform: translateX(1rem);
}

.enlace {
  color: var(--colorPrimario);
}

/*===Menu lateral===*/
aside .enlace {
  color: var(--colorPrimario);
  font-weight: 600;
}
aside .espaciado {
  padding-top: 0.5rem;
}
aside .navbar {
  padding-left: 0;
}
aside .fa {
  transition: 0.3s transform ease-in-out;
}
aside .show .fa {
  transform: rotate(0);
}
aside .collapsed .fa {
  transform: rotate(45deg);
}
aside .collapsed .fa.fa-filter {
  transform: rotate(0);
}
aside .apartados .enlace {
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  line-height: 1.5;
}
aside .apartados hr {
  margin: 0.3rem 0;
  border-top: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  aside .separador.fino {
    width: 100%;
  }
}
/*===Columna imagen===*/
.container-fluid .imagen {
  background-image: url(../temp/estudios/estudio5.jpg);
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
}

.vino {
  background: url(../img/vinos/hego.jpg) center center no-repeat;
  background-size: 100%;
  width: 100%;
  height: 600px;
  transition: background 0.8s;
}
.vino:hover {
  background: url(../img/vinos/hego.jpg) left center no-repeat;
  background-size: 140%;
}

/*===Hack H1===*/
.submenu {
  padding-left: 6rem;
  padding-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.submenu a {
  color: var(--colorTerciario);
  background: linear-gradient(to bottom, var(--colorPrimario) 0%, var(--colorPrimario) 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0 0;
  transition: background-size 0.4s;
  padding-bottom: 0.25rem;
}
.submenu a:hover {
  background-size: 3px 3px;
}
.submenu .separador {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 2px 20px;
}

@media (max-width: 991px) {
  .submenu {
    padding-left: 2.5rem;
  }
}
@media (max-width: 768px) {
  .submenu {
    padding-bottom: 1rem;
  }
  .submenu a {
    display: block;
    margin-bottom: 0.5rem;
  }
  .submenu a:before {
    content: "\f45c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--colorPrimario);
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}
@media (max-width: 576px) {
  .submenu {
    padding-left: 2rem;
  }
}
/*===Menu off canvas===*/
body.offcanvas-active {
  overflow: hidden;
}

.screen-darken {
  height: 100%;
  width: 100%;
  z-index: 2;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  background-color: rgba(34, 34, 34, 0.9);
  filter: blur(0.9);
}

.screen-darken.active {
  z-index: 2;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

/* ============ mobile view ============ */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.mobile-offcanvas {
  visibility: hidden;
  transform: translateX(100%);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 1200;
  width: 450px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: rgb(240, 240, 240);
  color: var(--colorTexto);
}
.mobile-offcanvas .offcanvas-header .btn-close {
  color: var(--colorTexto);
  filter: none;
}
.mobile-offcanvas img {
  max-height: 140px;
  padding-left: 1rem;
}
.mobile-offcanvas .container-fluid {
  padding: 1rem;
}
.mobile-offcanvas .container-fluid.carrito {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
  flex-wrap: nowrap;
}

.mobile-offcanvas.show {
  visibility: visible;
  transform: translateX(0);
}

.mobile-offcanvas .container,
.mobile-offcanvas .container-fluid {
  display: block;
}

.offcanvas-header .btn-close {
  color: var(--colorTerciario);
  filter: invert(1);
  font-size: 1rem;
  cursor: pointer;
}
.offcanvas-header .btn-close i {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .mobile-offcanvas {
    width: 100%;
    padding-top: 0;
  }
  #cabecera .mobile-offcanvas .btn-close {
    padding-bottom: 0;
    font-size: 0.8rem;
  }
}
/*------------------------------------------------------------------
[3. Páginas]
-------------------------------------------------------------------*/
/*===Página de inicio===*/
.border-top-detail {
  border-top: 2px solid var(--colorPrimarioDetalle);
}
.border-top-detail .fs-5 strong {
  color: var(--colorPrimario);
}

.wines img {
  max-height: 400px;
}

@media (max-width: 1200px) {
  .about-us .info-text {
    margin-top: 6rem;
  }
}
.distribution {
  background-image: url(../img/inicio/fondo-seccion.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 0;
}

.info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  border-radius: 4px;
}
.info .nav-link {
  padding: 0;
}
.info a.activo {
  color: var(--colorPrimario);
}
.info .dropdown-menu {
  border: none;
  -webkit-box-shadow: 0px 14px 17px -4px rgba(31, 31, 31, 0.2);
  box-shadow: 0px 14px 17px -4px rgba(31, 31, 31, 0.2);
}

.productosRecomendados .rectangulo {
  height: 50px;
  width: 3px;
  margin: 1rem auto;
}
.productosRecomendados img {
  max-height: 400px;
  margin: 0 auto;
  display: block;
  padding-top: 1rem;
}
.productosRecomendados .oferta small {
  padding: 0.2rem;
  border-radius: 8px;
  font-weight: 600;
  color: rgb(155, 155, 155);
  display: inline-block;
  background-color: rgba(121, 193, 66, 0.137254902);
}
.productosRecomendados .posicionamiento {
  position: absolute;
  top: 0;
  width: 90%;
  z-index: 4;
}
.productosRecomendados .posicionamiento .oferta {
  margin-bottom: 0.4rem;
}
.productosRecomendados .productoAgotado {
  opacity: 0.6;
}
.productosRecomendados .agotado small {
  padding: 0.2rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--colorTerciario);
  display: inline-block;
  background-color: var(--requerido);
}
.productosRecomendados [class^=col-] {
  position: relative;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 1.2rem;
}
.productosRecomendados [class^=col-] .button-group {
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
  bottom: 0;
  left: 0;
  text-align: center;
}
.productosRecomendados [class^=col-] .internoGaleria {
  height: 100%;
}
.productosRecomendados [class^=col-] a {
  transition: all 0.5s;
  height: 100%;
}
.productosRecomendados [class^=col-] a.ocultoUp-lg {
  animation: fadeOut 0.3s;
}
.productosRecomendados [class^=col-] span.precio {
  display: block;
  animation: fadeInLeft 0.5s;
}
.productosRecomendados [class^=col-] span.precio del {
  font-size: 0.8rem;
  color: var(--colorSecundario);
}
.productosRecomendados [class^=col-] .fondoDetalle img {
  transition: all 0.5s;
  transform: translateY(0);
}
.productosRecomendados [class^=col-]:hover a {
  opacity: 1;
}
.productosRecomendados [class^=col-]:hover .fondoDetalle img {
  transition: all 0.5s;
  transform: translateY(-20px);
}
.productosRecomendados [class^=col-]:hover .button-group {
  opacity: 1;
  bottom: 0;
  transition: all 0.5s;
}
.productosRecomendados [class^=col-]:hover .button-group a {
  opacity: 1;
}
.productosRecomendados [class^=col-]:hover a.ocultoUp-lg {
  display: block;
  animation: fadeInLeft 0.5s;
  margin-bottom: 1rem;
  color: var(--colorDetalle);
}
.productosRecomendados [class^=col-]:hover span.precio {
  display: none;
  animation: fadeOut 0.3s;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.elementos .producto img {
  max-height: 140px;
}

.subtitulo-sm.precio del {
  font-size: 1.1rem;
  color: var(--colorSecundario);
}

.container .producto .textoDetalle {
  position: relative;
  left: 0;
  right: 0;
  top: auto;
  margin-top: 2rem;
  text-align: left;
}
.container .producto .textoDetalle a:after {
  width: 7%;
}

.compra .icono i {
  font-size: 4em;
}

.resumen-compra {
  background-color: var(--colorFondoDetalle);
  padding: 2rem;
  border-radius: 2rem;
}

.caracteristicas ul {
  list-style: none;
  padding-left: 0;
}
.caracteristicas ul li {
  margin-top: 1rem;
}
.caracteristicas .textoAlternativo {
  display: inline-block;
  position: relative;
  margin-right: 5rem;
  min-width: 100px;
  font-size: 0.9rem;
  color: var(--colorSecundario);
}
.caracteristicas .textoAlternativo:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--colorPrimario);
  right: -49px;
  top: 14px;
}

@media (max-width: 991px) {
  .productosRecomendados .ocultoUp-lg {
    display: inline-block;
    margin-top: 0.8rem;
  }
}
@media (max-width: 991px) {
  .productosRecomendados [class^=col-]:hover span.precio {
    display: block;
  }
}
.avisoCompra {
  display: none;
  position: fixed;
  bottom: 0;
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  width: 100%;
  z-index: 9;
  text-align: center;
  padding: 0.5rem 0;
}

/*------------------------------------------------------------------
[4. Componentes]
-------------------------------------------------------------------*/
.botonSecundario, .botonPrimario {
  padding: 0.85rem 1.1rem;
  min-width: 8rem;
  font-size: 0.9rem;
  display: inline-block;
  text-align: center;
  font-family: var(--fuentePrincipal);
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 2px;
}

.botonPrimario {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
}
.botonPrimario:hover {
  background-color: transparent;
  border: 1px solid var(--colorPrimario);
  color: var(--colorPrimario);
  transition: all 0.8s;
}
.botonPrimario:active {
  background-color: var(--colorPrimario);
  color: var(--colorPrimario);
  transition: all 0.8s;
}
.botonPrimario[data-state=deshabilitado] {
  pointer-events: none;
  opacity: 0.7;
}

.botonSecundario {
  background-color: var(--colorTerciario);
  color: var(--colorPrimario);
  border: 1px solid var(--colorPrimario);
}
.botonSecundario:hover {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  transition: all 0.8s;
  border: 1px solid var(--colorPrimario);
}
.botonSecundario:active {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  transition: all 0.8s;
}
.botonSecundario.aspNetDisabled {
  opacity: 0.6;
}
.botonSecundario.aspNetDisabled:hover {
  background-color: var(--colorSecundario);
  color: var(--colorPrimario);
}
.botonSecundario.aspNetDisabled.active {
  background-color: var(--colorSecundario);
  color: var(--colorPrimario);
}

.input-group-append .botonPrimario {
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .botonPrimario,
  .botonSecundario {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }
  .input-group .botonPrimario,
  .input-group .botonSecundario {
    margin-bottom: 0;
  }
}
/*===Barra de cookies===*/
.barraCookies {
  position: fixed;
  color: var(--colorTerciario);
  bottom: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--colorPrimario);
  padding: 1.5rem 0;
  text-align: left;
}

/*===Fornulario===*/
textarea {
  resize: none;
}

input {
  color: var(--colorTerciario);
}

.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--colorPrimario);
  border-radius: 0;
}
.form-control::placeholder {
  color: var(--colorTerciario);
}
.form-control:focus {
  border-color: none;
  box-shadow: none;
  border-bottom: 1px solid var(--colorSecundario);
}

.elementos .form-control {
  text-align: center;
}
.elementos .btn-outline-secondary {
  border: none;
  font-size: 0.8rem;
  color: var(--colorTexto);
}
.elementos .btn-outline-secondary:hover {
  background-color: transparent;
  color: var(--colorSecundario);
}

.fixed-width {
  width: 120px;
}
.fixed-width .btn-minus {
  padding-left: 0;
}
.fixed-width .btn-plus, .fixed-width .btn-minus {
  font-size: 0.75rem;
}
.fixed-width .form-control {
  font-size: 0.85rem;
}

textarea {
  padding-top: 1rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*------ Eliminación de estilos del autofill del navegador  ------*/
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-transition-delay: 9999s;
  transition-delay: 9999s;
}

/*===Hero===*/
.banner {
  display: flex;
  align-items: center;
}
.banner .swiper-slide {
  display: flex;
  align-items: center;
}
.banner .swiper-slide .container {
  z-index: 2;
}
.banner .swiper-slide .imagen,
.banner .swiper-slide .imagenResponsive,
.banner .swiper-slide .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner .swiper-slide .video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner .swiper-slide .imagenResponsive {
  display: none;
}
.banner .swiper-wrapper {
  height: 100% !important;
}
.banner .css-dis-bg {
  background-image: url(../temp/banner/hero-viazalez-2.jpg);
}

@media (max-width: 991px) {
  .banner .swiper-slide {
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .banner .swiper-slide {
    min-height: 520px;
  }
}
@media (max-width: 991px) {
  .banner .swiper-slide .imagen,
  .banner .swiper-slide .imagenResponsive {
    min-height: 500px;
  }
  .banner .swiper-slide .imagen {
    display: none;
  }
  .banner .swiper-slide .imagenResponsive {
    display: block;
  }
  .banner .swiper-slide .imagenResponsive.css-dis-bg {
    background-image: url(../temp/banner/hero-viazalez-corto.jpg);
  }
}
/*===Tablas===*/
.tabla {
  border-radius: 8px;
  width: 100%;
  font-weight: 400;
}
.tabla td,
.tabla th {
  padding: 0.5rem;
  text-align: center;
}
.tabla th {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
}
.tabla th:first-of-type {
  border-top-left-radius: 4px;
}
.tabla th:last-of-type {
  border-top-right-radius: 4px;
}
.tabla .filaEnlace:hover {
  background-color: rgba(46, 143, 140, 0.0745098039);
  cursor: pointer;
}
.tabla tr .customCheck:before {
  top: -9px;
}

@media (min-width: 991px) and (max-width: 1200px) {
  .scroll {
    overflow-x: scroll;
    /* Scrollbars en firefox */
    scrollbar-face-color: var(--colorPrimario); /* Firefox 63 compatibility */
    scrollbar-track-color: #dedede; /* Firefox 63 compatibility */
    scrollbar-color: var(--colorPrimario);
    scrollbar-width: thin;
    /* Scrollbars en chrome */
  }
  .scroll::-webkit-scrollbar {
    width: 0.4em;
    height: 0.4em;
  }
  .scroll::-webkit-scrollbar-track {
    background-color: #dedede;
    border-radius: 10px;
  }
  .scroll::-webkit-scrollbar-thumb {
    background-color: var(--colorPrimario);
    border-radius: 10px;
  }
}
@media (max-width: 991px) {
  .tabla.responsive {
    border: 0;
    min-width: auto;
  }
  .tabla.responsive caption {
    font-size: 1.3em;
  }
  .tabla.responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .tabla.responsive tr:last-of-type {
    border-bottom: 0;
  }
  .tabla.responsive td {
    display: flex;
    justify-content: space-between;
    font-size: 1em;
    align-items: center;
  }
  .tabla.responsive tr {
    border-top: 2px solid var(--colorPrimario);
  }
  .tabla.responsive td:first-child {
    border-top: 2px solid var(--colorPrimario);
  }
  .tabla.responsive .ocultoDown-lg {
    display: none;
  }
  .tabla.publica.responsive span {
    display: contents;
  }
  .tabla.responsive td::before {
    content: attr(data-label);
  }
  .tabla.responsive td:last-child {
    border-bottom: 0;
  }
  .tabla .seleccionado {
    border-left: none;
  }
}
.paginacion .pagination {
  justify-content: center;
}
.paginacion a {
  background-color: var(--colorTerciario);
  border: 1px solid #f6f6f6;
  color: var(--colorPrimario);
  padding: 0.375rem 1rem;
  font-weight: 600;
  margin-right: 1rem;
  border-radius: 6px;
}
.paginacion a:hover {
  color: var(--colorTerciario);
  background-color: var(--colorPrimario);
  border: 1px solid var(--colorPrimario);
}
.paginacion a[data-state=activo] {
  font-weight: 600;
  color: var(--colorTerciario);
  background-color: var(--colorPrimario);
}

/*===Tooltip===*/
.tooltip > .tooltip-inner {
  background-color: var(--colorPrimario);
  max-width: 400px;
  color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  background: var(--colorPrimario);
  text-align: left;
  opacity: 1 !important;
}

.tooltip.show {
  opacity: 1;
}

/*===Clases Auxiliares===*/
.opacity:hover {
  opacity: 1;
}

.puntero {
  cursor: pointer;
}

.oculto {
  display: none;
}

.overflowHidden {
  overflow: hidden;
}

.detalle img {
  max-width: 50px;
}

.with-detail {
  position: relative;
  overflow: hidden;
}
.with-detail::before {
  content: "";
  background-image: url(../img/inicio/detalle-body.png);
  background-repeat: no-repeat;
  position: absolute;
  left: -60px;
  top: 0;
  height: 350px;
  width: 200px;
}
.with-detail::after {
  content: "";
  background-image: url(../img/inicio/detalle-body.png);
  background-repeat: no-repeat;
  position: absolute;
  right: -60px;
  bottom: 0;
  height: 350px;
  width: 200px;
}

.spacing {
  margin: 10rem 0;
}

.max-height {
  max-height: 700px;
}

.svg {
  max-width: 20%;
}

.resaltado {
  font-weight: 600;
  border-bottom: 2px solid var(--colorPrimario);
}

.etiqueta {
  font-weight: 600;
  border-bottom: 2px solid var(--colorPrimario);
  display: inline-block;
  margin-right: 0.5rem;
}

.seccionIndentada {
  padding-left: 6rem;
}

@media (max-width: 991px) {
  .seccionIndentada {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .seccionIndentada {
    padding-left: 0;
  }
}
/*===Ocultar===*/
@media (max-width: 991px) {
  .ocultoDown-lg {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .ocultoDown-md {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .ocultoDown-sm {
    display: none !important;
  }
}
@media (min-width: 991px) {
  .ocultoUp-lg {
    display: none;
  }
}
.desenfoque {
  filter: blur(0.1rem);
  transition: all 0.5s;
}

button {
  border: none;
}

/*===Modales===*/
.cookies {
  background-color: var(--colorFondo);
  opacity: 0.9;
  z-index: 9999;
}

.modal.show .modal-dialog {
  display: flex;
  align-items: center;
}

.modal-title {
  color: var(--colorTerciario);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.btn-close {
  appearance: none;
  text-shadow: none;
  color: var(--colorTerciario);
  font-size: 2rem;
  opacity: 1;
}
.btn-close:hover {
  text-shadow: none;
  opacity: 0.6;
  color: var(--colorTerciario);
}

.modal-content {
  color: var(--colorTexto);
  background-color: transparent;
  width: 100%;
}
.modal-content .modal-body {
  width: 100%;
}
.modal-content .modal-footer {
  border-top: none;
}
.modal-content .botonPrimario:hover {
  background-color: var(--colorTerciario);
  border: 1px solid var(--colorTerciario);
}

.modal-body video {
  max-width: 100%;
}

@media (max-width: 768px) {
  .modal-footer {
    display: block;
  }
  .modal-footer a {
    display: block;
  }
  .modal-footer a:last-of-type {
    margin-top: 1rem;
  }
}
.modal-backdrop.modalMayorEdad {
  z-index: 9999;
  background-image: url(../img/banner/valores.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mayorEdad {
  z-index: 99999;
}
.mayorEdad .modal-content {
  text-align: center;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.mayorEdad .texto-lg {
  font-size: 1.2rem;
}
.mayorEdad .imagen img {
  max-width: 350px;
  margin-bottom: 1.5rem;
}

/*===Card===*/
/*===Animaciones===*/
/*===Animación carga===*/
.transicionCarga {
  animation: transicionIn 1.5s;
}

@keyframes transicionIn {
  from {
    opacity: 0;
    transform: translateY(-70px);
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
    transform: scale(1);
  }
}
/*------------------------------------------------------------------
[5. Plugins]
-------------------------------------------------------------------*/
.bootstrap-select .btn-light {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--colorPrimario);
  border-radius: 0;
  color: var(--colorTexto);
}
.bootstrap-select .dropdown-menu {
  z-index: 99999;
}
.bootstrap-select .dropdown-item {
  color: var(--colorTexto);
}
.bootstrap-select .dropdown-item:hover {
  background-color: var(--colorPrimario);
  opacity: 1;
  color: var(--colorTerciario);
}
.bootstrap-select .dropdown-item.active {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
}
.bootstrap-select .dropdown-toggle::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  border: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: var(--colorPrimario);
  transition: all 0.5s;
}
.bootstrap-select .dropdown-toggle.show::after {
  transform: rotate(180deg);
  transition: all 0.5s;
}
.bootstrap-select .btn-check:focus + .btn-light, .bootstrap-select .btn-light:focus {
  box-shadow: none;
  outline: none;
}

.input-group .btn-light {
  border-left: 1px solid var(--colorPrimario);
  border-bottom: 1px solid var(--colorPrimario);
  border-radius: 0;
  color: var(--colorTexto);
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: auto;
}

.bootstrap-select.is-valid .dropdown-toggle:after, .was-validated .bootstrap-select select:valid + .dropdown-toggle:after {
  color: #28a745;
}

/*===Swiper===*/
.swiper-wrapper {
  padding-bottom: 2rem;
}

.swiper-container.banner {
  height: 100%;
}
.swiper-container.banner .container {
  height: 100%;
  position: relative;
}
.swiper-container.banner .row {
  height: 100%;
}
.swiper-container.banner .rectangulo {
  height: 4px;
  background-color: var(--colorPrimario);
  width: 50%;
  margin: 0.5rem 0;
}
.swiper-container.banner .swiper-slide {
  background-size: cover;
  background-position: center;
}
.swiper-container .swiper-slide.inicio {
  background-image: url(../img/banner/inicio.jpg);
}
.swiper-container .swiper-slide.valores {
  background-image: url(../img/banner/valores.jpg);
}
.swiper-container .swiper-slide.vinos {
  background-image: url(../img/banner/vino.jpg);
}
.swiper-container .swiper-slide.rsc {
  background-image: url(../img/banner/rsc.jpg);
}
.swiper-container .textoPrincipal {
  align-self: center;
  padding-top: 10rem;
}
.swiper-container .submenu {
  position: relative;
  align-self: flex-end;
}
.swiper-container .submenu:before {
  content: "|";
  color: transparent;
  height: 220%;
  width: 4px;
  bottom: 0;
  left: 1rem;
  background-color: var(--colorPrimario);
  position: absolute;
}

@media (max-width: 768px) {
  .swiper-container.banner .submenu:before {
    height: 96%;
  }
}
@media (max-width: 576px) {
  .swiper-container.banner .textoPrincipal {
    padding-top: 5rem;
  }
}
.swiper-pagination-bullet {
  background: var(--colorSecundario);
  width: 15px;
  border-radius: 6px;
  opacity: 0.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--colorPrimario);
  width: 40px;
  border-radius: 6px;
  opacity: 1;
}

.gallery-thumbs img {
  max-width: 200px;
  max-height: 200px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .swiper-container.gallery-top .swiper-slide img {
    max-height: 350px;
  }
}
.gallery-thumbs.swiper-container .swiper-slide {
  justify-content: center;
  text-align: center;
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: var(--colorPrimario);
}

/*# sourceMappingURL=estilos.css.map */

.inicio.h100 {
	height: 100vh;
}

#cabecera .navbar-collapse .separador:last-child {
	display: none
}

.captcha {
	max-width: 100%;
	vertical-align: central;
	align-content: center;
	box-sizing: border-box;
	display: inline-block;
	margin-top: 15px;
}

.captchaError {
	color: #dc3545;
	line-height: normal;
	font-size: .875em;
	font-weight: normal;
	display: block;
}

/*Errores*/
/*Boton borde*/
input[type="submit"].botonPrimario.jQ_CheckErrors,
input[type="submit"].botonPrimario.jQ_CheckErrors:active,
input[type="submit"].botonPrimario.jQ_CheckErrors:focus {
	border: none;
	outline: none;
}

.input-group-addon-error,
.dropdown-toggle-error,
.panel-default-error,
.fileInputError .file-caption,
input[type=text].error,
input[type=text].error:focus,
input[type=password].error,
input[type=password].error:focus,
textarea.error,
textarea.error:focus,
select.error,
select.error:focus,
.TxDescripcion_DesignBox.error {
	border-color: #a94442;
}

input[type=text]:not(.error):focus,
input[type=password]:not(.error):focus,
textarea:not(.error):focus,
select:not(.error):focus {
	border-color: #e5edeb;
	opacity: 0.8;
	outline: 0 none;
}

input[type=text].error:focus,
input[type=password].error:focus,
textarea.error:focus,
select.error:focus {
	opacity: 0.8;
	outline: 0 none;
}

.bootstrap-tagsinput input[type=text]:not(.error):focus {
	box-shadow: none;
}

.captchaError {
	color: #dc3545;
	line-height: normal;
	font-size: .875em;
	font-weight: normal;
	display: block;
}

.input-group.error .file-caption,
input[type=text].error,
input[type=password].error,
textarea.error,
select.error,
.dropdown-toggle.error,
.dropdown-toggle-error,
.bootstrap-select .btn.dropdown-toggle.btn-light.dropdown-toggle-error {
	border-color: #dc3545;
	color: #333333;
	outline: 0 none;
}

div.error, span.error {
	color: #dc3545;
	line-height: normal;
	font-size: .875em;
	font-weight: normal;
}

.input-group-addon-error {
	color: #a94442;
	background-color: #f2dede;
}

.panel-default-error .panel-heading {
	color: #a94442 !important;
	background-color: #f2dede !important;
}

	.panel-default-error .panel-heading > * {
		color: #a94442 !important;
	}


.fileInputErrorMG .file-caption {
	border-color: #aa0000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset, 0 0 8px rgba(221, 75, 57, 0.6);
}

input[type=text].error, input[type=number].error {
	border-color: #dc3545;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
/* FIN Errores */


.manito {
	cursor: pointer;
}

.textoSmall {
	font-size: 0.8rem;
}

.documentoProducto {
	color: #333333;
}
.documentoProducto:hover {
	color: #b6b6b6;
}

