@charset "utf-8";
/* CSS Document */ :root {
  --naranja: #daa520;
  --naranja-hover: #e4ba4e;
  --verde: #238b22;
  --gris: #eaeaea;
  --oscuro: #cccccc;
}
body, html {
  position: relative;
  font-family: 'Raleway', Arial, Verdana, "Helvetica LT Std", "sans-serif";
  font-size: 14px;
  margin: 0;
  padding: 0;
}
body.noscroll {
  overflow: hidden;
}
div {
  position: relative;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  max-height: 100%;
}
ol, ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  cursor: pointer;
  text-decoration: none;
  position: relative;
    color: #000000;
}
a, a:visited, a:active, a:focus {
    color: #000000;    
}
h2 {
  text-align: center;
  font-weight: 400;
  font-size: 2em;
  margin: 1em 0 0.5em;
  padding: 0;
}
.semibold {
  font-weight: 600;
}
.center {
  text-align: center;
  margin: 1em auto;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.hidden {
  display: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffffe0;
  font-weight: 500;
  z-index: 50000;
  box-shadow: 0 0.25em 0.5em #00000033;
}
.header-box {
  height: 6em;
  display: flex;
}
.logo {
  height: 100%;
  min-width: 220px;
  flex-grow: 2;
  vertical-align: middle;
  padding: 0.75em 1em 0.75em 0;
}
.header-box nav {
  flex-grow: 0;
  text-align: right;
  display: flex;
  height: 100%;
}
.header-box nav a, .header-box nav a:visited, .header-box nav a:focus, .header-box nav a:active {
  height: 100%;
  box-sizing: border-box;
  padding: 3em 1em 0 1em;
  line-height: 1.6em;
  flex-grow: 0;
  color: #000000;
  text-decoration: none;
    position: relative;
}
.header-box nav a.cart img, .header-box nav a.user img {
  height: 1.6em;
  vertical-align: middle;
}
.header-box nav a span.count{
    position: absolute;
    top: 2.5rem;
    right: 0;
    background-color: #990000;
    font-size: 0.7rem;
    color: #ffffff;
    height: 1rem;
    min-width: 1rem;
    text-align: center;
    border-radius: 1rem;
    line-height: 1rem;
    display: none;
}
.language span,
.language img{
  height: 1em;
    vertical-align: middle;
}
.header-box nav .menu-btn {
  display: none;
  height: 1.6em;
  line-height: 1.6em;
  vertical-align: top;
  margin-top: 3em;
  border: none;
  background-color: transparent;
  margin-right: 1em;
}
.header-box nav .menu-btn span {
  display: inline-block;
  vertical-align: middle;
  height: 0.4em;
  width: 1.6em;
  border-top: solid 0.2em #000000;
  border-bottom: solid 0.2em #000000;
}
.search-btn {
  display: none;
  width: 1.6em;
  box-sizing: content-box !important;
}
.header-box nav a.nav-current {
  color: var(--naranja);
}
/*    MENÚ SECUDNARIO: ;*/
.menu_mobile {
  position: fixed;
  top: 6em;
  right: 0;
  display: none;
  background-color: #ffffffe0;
}
.menu_mobile a {
  display: block;
  padding: 1em 2em;
  text-align: right;
  box-sizing: border-box;
  border-bottom: solid thin var(--gris);
}
/*    BÚSQUEDA SECUNdARIA: ;*/
.search-form.search-mobile {
  display: none;
  position: fixed;
  top: 5em;
  left: 5%;
  width: 90%;
  background-color: #ffffffe0;
  border-top: solid thin var(--gris);
  max-width: none;
  box-sizing: border-box;
}
.search-form.search-mobile input[type="text"], .search-form.search-mobile input[type="search"] {
  flex-grow: 1;
}
button, .button {
  font-family: 'Raleway', Arial, Verdana, "Helvetica LT Std", "sans-serif";
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
  background-color: var(--naranja);
  padding: 0 2em;
  height: 2.4em;
  line-height: 2.4em;
  vertical-align: middle;
  border-radius: 1.2em;
  color: #ffffff;
  transition: all ease-out 0.15s;
}
.button {
  margin: 0 1em;
  /*
    background: rgb(34, 139, 34);
  background: linear-gradient(90deg, rgba(34, 139, 34, 1) 0%, rgba(216, 165, 32, 1) 100%);
    */
}
button:hover, .button:hover {
  background-color: var(--naranja-hover);
  /*
  background: rgb(34, 139, 34);
  background: linear-gradient(90deg, rgba(216, 165, 32, 1) 0%, rgba(34, 139, 34, 1) 100%);
    */
}
.button-orange {
  display: inline-block;
  height: 2.4em;
  line-height: 2.4em;
  vertical-align: middle;
  border-radius: 1.2em;
  padding: 0 2em;
  margin: 0 1em;
  background-color: var(--naranja);
  font-weight: 600;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all ease-out 0.15s;
}
.button-orange:hover {
  background-color: var(--naranja-hover);
  color: #ffffff;
}
.button-white {
  display: inline-block;
  height: 2.4em;
  line-height: 2.4em;
  vertical-align: middle;
  border-radius: 1.2em;
  padding: 0 2em;
  margin: 0 1em;
  background-color: #ffffff;
  font-weight: 600;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all ease-out 0.15s;
}
.button-white:hover {
  background-color: var(--gris);
}
.button-orange.nobold, .button-white.nobold {
  font-weight: normal;
  padding: 0 2em;
  margin: 0.5em 0;
}
.button-inv {
  display: inline-block;
  height: 2.4em;
  line-height: 2.4em;
  vertical-align: middle;
  border-radius: 1.2em;
  padding: 0 2em;
  margin: 0 1em;
  background: rgb(34, 139, 34);
  background: linear-gradient(90deg, rgba(216, 165, 32, 1) 0%, rgba(34, 139, 34, 1) 100%);
  font-weight: 600;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all ease-out 0.15s;
}
.button-inv:hover {
  background: rgb(34, 139, 34);
  background: linear-gradient(90deg, rgba(34, 139, 34, 1) 0%, rgba(216, 165, 32, 1) 100%);
}
.content-box {
  width: 100%;
  margin: 0;
  padding: 0 4em;
  position: relative;
}
/*    ASIDE: ;*/
.aside-cart {
  display: none;
  position: fixed;
  top: 6em;
  right: 0;
  background-color: #ffffff;
  padding: 3em 2em 2em 2em;
  min-height: calc(100% - 6em);
  width: 20em;
  height: calc(100% - 6rem);
  box-sizing: border-box;
  z-index: 40000;
  box-shadow: -0.25em 0 0.5em #00000033;
  overflow-y: auto;
}
    
.aside-title {
  font-weight: 600;
  font-size: 1.6em;
}
.aside-total {
  margin: 1em 0;
  font-size: 1.2em;
}
.aside-total b, .aside-total strong {
  font-weight: 600;
  font-size: 1.2em;
}
.aside-total small {
  font-size: 0.6em;
}
.aside-cart-item {
  margin-top: 2em;
}
.aside-cart-item-title {
  font-size: 1.4em;
}
.aside-cart-item p {
  font-size: 0.8em;
}
.aside-cart-image {
  width: 100%;
}
.aside-cart-image img {
  width: 100%;
  margin-top: 1em;
}
.aside-cart-controls .counter, .aside-cart-controls select, .aside-cart-controls .remove-coupon {
  background-color: #eaeaea;
  display: inline-block;
  padding: 0 1em;
  height: 2rem;
  border: none;
  outline: none;
  vertical-align: middle;
  margin-top: 0.2em;
  border-radius: 1rem;
}
.aside-cart-controls .counter {
  width: 3em;
  margin-right: 1em;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.aside-cart-controls .remove-coupon img {
  height: 80%;
  width: auto;
}
.empty-cart {
    display: none;
}
.cart-colums{
    display: flex;
    gap: 1em;
}
.cart-items,
.cart-summary{
    flex-grow: 1;
}
.cart-summary p{
    font-size: 1.2em;
}
.cart-summary p a{
    font-size: 1rem;
}

.cart-info {
    margin: 1em 0;
}
.cart-info div{
  display: block;
  width: 100%;
  text-align: left;
  margin: 1em auto;
}
.cart-info label{
    display: block;
    text-align: left;
}
.cart-info  input,
.cart-info  select,
.cart-info  textarea{
background-color: var(--gris);
  display: block;
  width: 100%;
  height: 2em;
  border-radius: 1em;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 1em;
}
.cart-info .inline-fields{
    display: flex;
}
.cart-info .inline-fields input,
.cart-info .inline-fields select{
  display: inline-block;
}
.cart-info .inline-fields select{
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
}
.cart-info .inline-fields input{
    flex-grow: 1;
}

.cart-info input:focus,
.cart-info  input:active,
.cart-info  textarea:focus,
.cart-info  textarea:active{
}
.cart-info  textarea{
    resize: vertical;
}

/*    SLIDER: */
.slider-box {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 100;
  aspect-ratio: 16 / 7;
}
.slider-content {
  position: relative;
  z-index: 100;
}
.slide {
  position: absolute;
  width: 100%;
  aspect-ratio: 16 / 7;
  top: 0;
  left: 0;
  display: none;
}
.slide img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.slide-title,
.slide-title-2{
  color: #000000;
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  z-index: 2;
  max-width: 40%;
}
.slide-title span,
.slide-title-2 span{
  display: block;
  font-size: 2em;
    margin-bottom: 0.25em;
}
.slide .slide-title button,
.slide .slide-title-2 button{
  font-size: 1.2em;
  height: 2em;
  line-height: 2rem;
  /*
  background-color: var(--naranja);
  display: block;
  width: auto;
  padding: 0 2em;
  border-radius: 1em;
  border: none;
    transition: all ease-out 0.15s;
    */
}
.search-form {
  color: #000000;
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  max-width: 40%;
  background-color: #ffffffaa;
  display: flex;
  width: 100%;
  height: 2em;
  line-height: 2em;
  padding: 0 0 0 1em;
  border-radius: 1em;
  border: none;
  font-size: 1.2em;
  z-index: 200;
}
.search-form input[type="search"], .search-form input[type="text"], .search-form input[type="search"]:focus, .search-form input[type="text"]:focus, .search-form input[type="search"]:active, .search-form input[type="text"]:active {
  flex-grow: 1;
  background-color: transparent;
  color: #000000;
  border: none;
  height: 100%;
  padding: 0;
  outline: none;
  font-size: 1rem;
}
.search-form input[type="submit"], .search-form button[type="submit"] {
    
  font-size: 1.2em;
  border: none;
  background: url("../img/layout/icon_search.svg") no-repeat center center transparent;
  background-size: 60%;
  width: 1.6em;
  height: 2rem;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  opacity: 0.5;
  transition: all ease-out 0.15s;
  flex-grow: 0;
  flex-shrink: 0;
}
.search-form input[type="submit"]:hover, .search-form button[type="submit"]:hover {
  opacity: 1;
}
.slider-text-2{
    position: absolute;
    top: 25%;
    right: 0;
    width: 50%;
    z-index: 2;
    display: inline-block;
    color: #ffffff;
    padding: 0.5em 2em 0.5em 1em;
    border-radius: 2em;
    font-weight: normal;
    box-sizing: border-box;
    text-align: right;
    text-shadow: 1px 1px 3px #000a;
}
/*    CARRUSEL: */
.carousel-content {
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
}
.carousel-content .cupon{
  display: inline-block;
  width: 25%;
  aspect-ratio: 6 / 4;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}
.carousel-content .cupon img{
  position: relative;
  z-index: 1;
  min-height: 100%;
  min-width: 100%;
  object-position: center;
  object-fit: cover;
  box-sizing: border-box;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
    border-left: solid 2px #fff;
    border-right: solid 2px #fff;
}
.carousel-content .cupon .cupon-title{
  position: absolute;
  bottom: 1em;
  left: 1em;
  z-index: 20;
  font-size: 1.75vw;
    line-height: 1em;
  color: #ffffff;
    padding-left: 0rem;
    white-space: normal;
}
.cupon-percent {
  display: inline-block;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: var(--naranja);
  height: 2em;
  border-radius: 2em;
  z-index: 2;
  line-height: 2em;
  width: 2em;
  text-align: center;
  font-weight: 600;
  margin-right: 0.5em;
  padding: 0.2em;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
.carousel-content .cupon .cupon-title .cupon-percent{
    /*    transform: translateY(-50%);    */
    position: relative;
    left: 0;
    
}
.carousel-nav {
  text-align: center;
  margin: 1em auto;
}
.carousel-nav a {
  display: inline-block;
  height: 0.6em;
  width: 0.6em;
  border-radius: 0.6em;
  background-color: var(--naranja);
  margin: 0 1em;
  cursor: default;
  transition: all ease-out 0.15s;
}
.carousel-nav a.current {
  background-color: var(--verde);
}
.carousel-arrow {
  border: none;
  background-color: transparent;
  color: var(--verde);
}
.carousel-arrow:hover {
  color: var(--naranja);
}

.carousel-link{
    display: block;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000077;
    z-index: 300;
    margin: 0;
    opacity: 0;
    transition: all ease-out 0.25s;
}
.carousel-link:hover{
    opacity: 1;
}
.carousel-link button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}





@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}



.big-row {
  font-size: 1.8em;
  text-align: center;
  padding: 1em;
}
.big-row.center {
  font-size: 1.8em;
  text-align: center;
  padding: 1em;
}
.margin-bottom {
  margin-bottom: 3em;
}
/*    INTERNAS: ;*/
.padding-top {
  padding-top: 6em;
}
.inner-search {
  color: #000000;
  position: relative;
  max-width: 640px;
  background-color: var(--gris);
  display: flex;
  width: auto;
  height: 2em;
  line-height: 2em;
  padding: 0 1em;
  margin: 0 auto;
  border-radius: 1em;
  border: none;
  font-size: 1.4em;
  z-index: 200;
}
.inner-search input[type="search"], .inner-search input[type="text"], .inner-search input[type="search"]:focus, .inner-search input[type="text"]:focus, .inner-search input[type="search"]:active, .inner-search input[type="text"]:active {
  flex-grow: 1;
  background-color: transparent;
  color: #000000;
  border: none;
  height: 100%;
  padding: 0;
  outline: none;
  font-size: 1rem;
}
.inner-search input[type="submit"], .inner-search button[type="submit"] {
  border: none;
  background: url("../img/layout/icon_search.svg") no-repeat center center transparent;
  background-size: contain;
  width: 1.6em;
  height: 3em;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  opacity: 0.5;
  transition: all ease-out 0.15s;
}
.inner-search input[type="submit"]:hover, .inner-search button[type="submit"]:hover {
  opacity: 1;
}
.cat-nav {
  text-align: center;
  max-width: 992px;
  font-size: 1.4em;
  margin: 1em auto 0.5em 0;
  font-weight: 500;
}
.cat-nav a.selected {
  color: var(--naranja);
}
.cat-nav a {
  display: inline-block;
  padding: 0 0.5em;
}
.cupon-list {
  font-size: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 992px;
}
.cupon-list li {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 360px;
  margin: 0;
  font-size: 1rem;
  padding: 0.5rem;
  box-sizing: border-box;
}
.cupon-list li img {
  position: relative;
  min-height: 100%;
  min-width: 100%;
  object-position: center;
  object-fit: cover;
  z-index: 1;
}
.cupon-list li .cupon-title {
  color: #ffffff;
  font-size: 2em;
  font-weight: 600;
}
.cupon-list li .cupon-info {
  position: absolute;
  z-index: 3;
  bottom: 2em;
  left: 2em;
  font-size: 1rem;
}
.cupon-list li .cupon-button {
  display: inline-block;
  height: 2.4em;
  color: #000000;
  padding: 0 1em;
  border: none;
  border-radius: 2.4em;
  background-color: var(--naranja);
}
.cupon-list li .cupon-stars {
  color: var(--naranja);
  letter-spacing: 0.25em;
  font-size: 1.4em;
  /*text-shadow: -0.1em 0.1em 0.1em #000000;*/
}
.cupon-list li .cupon-percent {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 2;
}
/*    VENTANAS MODALES: ;*/
.modal {
  display: none;
  position: fixed;
  top: 6em;
  left: 0;
  height: calc(100% - 6em);
  width: 100%;
  background-color: #00000066;
  z-index: 10000;
}
.modal.modal-on-top{
    z-index: 60000;
    border-radius: 1rem;
}
.modal.dialog {
  z-index: 400;
}
.modal-header {
  background-color: var(--naranja);
  color: #ffffff;
  position: relative;
  padding: 1em;
}
.modal-header h2 {
  padding: 0;
  height: 2rem;
  line-height: 2rem;
  margin: 0;
  text-align: left;
  font-size: 1.3em;
  font-weight: 400;
}
.modal-close {
  border: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  font-size: 2.6em;
  background-color: transparent;
  color: #ffffff;
  font-weight: 200;
  font-family: inherit;
  cursor: pointer;
    padding: 0;
}

.modal-content {
position: absolute;
  top: 2em;
  left: 50%;
  display: flex;
    flex-direction: column;
  height: auto;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2rem;
  max-height: 90%;
  transform: translateX(-50%);
  width: 640px;
  max-width: 80%;
  scrollbar-color: #daa520 #eeeeee;
  scrollbar-width: thin;
}

.modal-box{
position: absolute;
  top: 2em;
  left: 50%;
  display: block;
  height: 90%;
  background-color: #ffffff;
  padding: 0;
  max-height: 90%;
  transform: translateX(-50%);
  width: 640px;
  max-width: 80%;
    overflow: hidden;
    border-radius: 1em;
    
}
.modal-box .modal-content {
  top: 0;
  left: 0;
  display: flex;
    flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  max-height: 100%;
  width: 100%;
  max-width: none;
  scrollbar-color: #daa520 #eeeeee;
  scrollbar-width: thin;
    transform: none;
}

.modal-body {
  padding: 1em 2em;
    flex-grow: 2;
}

.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 20em;
  height: auto;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 3em;
  border-radius: 1em;
}
.modal-dialog-text {
  font-size: 1.1em;
  text-align: center;
}
.modal-dialog button.button-orange, .modal-dialog button.button-white {
  font-size: 1.1em;
    padding: 0 2em;
    white-space: nowrap;
}
.modal-footer {
  padding: 0.5em 1em;
  font-size: 0.9em;
  background-color: var(--naranja);
  color: #ffffff;
}

.close {
  border: none;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  background-color: #ffffff;
  font-weight: 200;
  font-family: inherit;
  cursor: pointer;
}
aside .close{
  background-color: transparent;
  font-size: 3em;
  height: 1em;
  width: 1em;
  right: 0;
  top: 0;
  line-height: 1em;
  color: black;
  padding: 0;
}
.modal .close {
  background-color: transparent;
  font-size: 3em;
  height: 1em;
  width: 1em;
  right: 0;
  top: 0;
  line-height: 1em;
  color: black;
  padding: 0;
}
.modal-cupon-data {
  display: flex;
}
.modal-cupon-gallery {
  width: 55%;
  flex-basis: 55%;
  flex-grow: 0;
}
.modal-cupon-info {
  width: 45%;
  flex-basis: 45%;
  flex-grow: 0;
  padding: 0 0 0 2em;
}
.modal-cupon-info p {
  padding: 0;
  margin: 1em 0;
  text-align: left;
}
.modal-cupon-data-title {
  font-size: 2em;
  font-weight: 600;
  margin: 0;
  text-align: left;
}
.modal-cupon-info .cupon-stars {
  color: var(--naranja);
  text-align: left;
}
.modal-cupon-info button {
  margin-left: auto;
  margin-right: auto;
}
.modal-gallery-main {
  width: 100%;
}
.modal-gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
    display: none;
}
.modal-gallery-main iframe {
    display: none;
    height: auto;
    width: 100%;
    max-width: 100%;
     aspect-ratio: 16 / 9;
}
.modal-gallery-list {
  width: 100%;
  display: block;
  overflow: hidden;
    position: relative;
}
.modal-gallery-list ul{
  width: 100%;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  column-gap: 5px;
    position: relative;
}
.modal-gallery-list li {
  display: block;
  flex-basis: 33.33%;
  flex-grow: 0;
  flex-shrink: 0;
}
.modal-gallery-list li img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.modal-gallery-list .gal-nav{
    display: none;
    position: absolute;
    top: 50%;
    width: 2em;
    height: 2em;
    background-color: var(--naranja);
    border-radius: 1em;
    z-index: 1000;
    font-size: 1rem;
    transform: translateY(-50%);
    line-height: 1em;
    text-align: center;
    color: #ffffff;
    transition: all ease-out 0.15s;
}
.modal-gallery-list .nav-prev{
    left: 0.5em;
    padding: 0 0.2em 0 0;
}
.modal-gallery-list .nav-next{
    right: 0.5em;
    padding: 0 0 0 0.2em;
}
.modal-gallery-list .gal-nav:hover{
    background-color: var(--naranja-hover);
}
.modal-cupon-title {
  font-size: 2em;
  font-weight: 600;
  margin: 1em 0 0.5em 0;
  text-align: left;
}
.modal-cupon-text {
  text-align: justify;
  }
/*    FOOTER: ;*/
.social-row {
  text-align: center;
}
.social-row a.social {
  height: 3em;
  width: 3em;
  display: inline-block;
  margin: 0 0.5em;
  background: var(--naranja);
  border-radius: 3em;
  transition: all ease-out 0.15s;
}
.social-row a.social:hover {
  background: var(--naranja-hover);
}
footer {
  background-color: #efefef;
  text-align: center;
  padding: 3em 0;
  margin-top: 3em;
}
footer nav a {
  display: inline-block;
  padding: 0 1em;
}
.bottom-row {
  margin: 2em auto 0;
  display: flex;
  line-height: 2em;
  padding: 0 1em;
}
.bottom-row span {
  flex-grow: 1;
}
.promo-button {
  display: inline-block;
  height: 2.2em !important;
  width: auto !important;
  line-height: 2.2em;
  vertical-align: middle;
  border-radius: 1.2em;
  padding: 0 2em;
  margin: 0 1em;
  background: rgb(34, 139, 34);
  background: linear-gradient(90deg, rgba(34, 139, 34, 1) 0%, rgba(216, 165, 32, 1) 100%);
  font-weight: 600;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all ease-out 0.15s;
}
.promo-button:hover {
  background: rgb(34, 139, 34);
  background: linear-gradient(90deg, rgba(216, 165, 32, 1) 0%, rgba(34, 139, 34, 1) 100%);
}
/*    EMPTY content: */
.empty-big {
  max-width: 120px;
  margin-top: 3em;
  padding: 0 3rem;
}
.button-row {
  text-align: center;
  margin: 3em auto;
}
.button-row a {
  margin: 0 1em;
}
/*    FORMS    */
.form {
  max-width: 460px;
  margin: 0 auto;
  padding: 1em 15%;
}
.form h2 {
  text-align: left;
  font-weight: normal;
  font-size: 1.4em;
}
.form .form-row {
  display: block;
  width: 100%;
  text-align: left;
  margin: 1em auto;
}
.form .form-row div {
  margin: 0.5em 0;
}
form .form-row input {
  background-color: var(--gris);
  display: block;
  width: 100%;
  height: 2em;
  border-radius: 1em;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 1em;
}
.form-row.form-row-flex {
  display: flex;
}
.label-inline {
  display: inline-block;
  flex-grow: 1;
  text-align: center;
}
.card-logo {
  display: inline-block;
  height: 3em;
  width: 4em;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
.card-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
form .form-row input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
  height: 1em;
  width: 1em;
  padding: 0;
  margin-right: 0.5em;
}
input[type="radio"] {
  appearance: none;
  background-color: var(--naranja);
  height: 0.6em;
  width: 0.6em;
  display: inline-block;
}
input[type="radio"]:checked {
  background-color: #000000;
  /* checked state properties */
}
#createaccount{
    display: none;
}

.flex30 {
  flex-basis: 30%;
}
.flex70 {
  flex-basis: 70%;
}
.gap {
  gap: 1em;
}
section.cart {
  margin: 0 auto;
  max-width: 768px;
  box-sizing: border-box;
  padding: 2em;
}
section.cart .cart-item {
  margin-top: 2em;
}
section.cart .cart-item-header {
  dislay: block;
  width: 100%;
  margin-bottom: 0.5em;
}
.cart-item-title {
  font-size: 1.4em;
  font-weight: 600;
}
section.cart .cupon-stars {
  color: var(--naranja);
  font-size: 1.4em;
}
section.cart .cart-image {
  width: 200px;
  display: inline-block;
  vertical-align: top;
  margin-right: 2em;
}
section.cart .cart-item-info {
  width: auto;
  display: inline-block;
  vertical-align: top;
}
.content-row{
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.content-row article{
    flex-basis: 75%;
    flex-grow: 1;
    flex-shrink: 0;
}
.content-row aside.side-banner{
    width: 20%;
    flex-grow: 0;
    flex-shrink: 1;
    position: relative;
    aspect-ratio: 1 / 2;
    margin-top: 0.5em;
    max-height: calc(100vh - 6em);
}
.side-banner-content{
    position: fixed;
    margin-top: 0.5em;
    width: 20%;
    height: auto;
    aspect-ratio: 1 / 2;
    top: 6em;
    right: 0;
    max-height: calc(100vh - 6em);
    overflow: hidden;
}
.side-banner .title{
    position: absolute;
    z-index: 3;
    bottom: 3em;
    left: 1em;
    font-size: 1.5em;
}
.side-banner .text{
    width: 100%;
    position: absolute;
    font-size: 1em;
    top: 3em;
    right: 0;
    z-index: 2;
    color: #ffffff;
    padding: 0.5em 1em;
    border-radius: 0;
    font-weight: normal;
    text-align: right;
    text-shadow: 1px 1px 4px #00000077;
}
aside.side-banner .close{
    z-index: 3;
    text-shadow: -1px 1px 2px #000000;
    color: #ffffff;
}
.side-banner figure{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}
.side-banner figure img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.results{
    display: grid;
    position: relative;
    grid-gap: 2em;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
}
.results li{
    box-sizing: border-box;
        box-shadow: 0 0 1.5em #00000075;
    text-align: center;
    padding-bottom: 1em;
    position: relative;
}
.results li .cupon-info{
    padding: 1.4em;
    text-align: left;
    
}

.result_image{
    position: relative;
    height: auto;
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #0003;
}
.result_image img{
    object-fit: cover;
  height: 100%;
  width: 100%;
}
.result_share{
    display: block;
    height: 1.6em;
    width: 1.6em;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.result_available{
    display: block;
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #a22812;
    color: #ffffff;
    font-size: 0.99rem;
    padding: 0.25em 0.5em;
    border-radius: 1em;
}
.result_cupon-title{
position: absolute;
  bottom: 1.5rem;
  left: 1em;
  z-index: 20;
  font-size: 1.6rem;
    font-weight: 600;
  line-height: 1.4rem;
  color: #ffffff;
  padding-left: 0;
    text-align: left;
}
.result_cupon-title .cupon-percent {
  display: inline-block;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: var(--naranja);
  height: 2em;
  border-radius: 2em;
  z-index: 2;
  line-height: 2em;
  width: 2em;
  text-align: center;
  font-weight: 600;
  margin-right: 0.5em;
  padding: 0.2em;
    top: 0;
    position: relative;
    left: 0;
    vertical-align: bottom;
}



.result_location{
    font-size: 0.8em;
    color: #999999;
}
.result_location::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1em;
    width: 1em;
    background: url("../img/layout/icon_location.svg") no-repeat center left;
    background-size: contain;
    margin-right: 0.25em;
}
.result_title{
    font-size: 1.8em;
    font-weight: 700;
}
.result_duration{
    font-size: 1.4em;
    font-weight: 600;
}
.result_price{
    font-size: 1.6em;
    color: var(--naranja);
    font-weight: 700;
    line-height: 1em;
}
.result_price small{
    font-size: 0.5em;
    font-weight: 500;
}

#timer-box{
    background-color: #609421;
    margin-top: 3.8em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/*    RESPONSIVES    */

@media all and (max-width: 992px) {
    .carousel-content .cupon {
        width: 33.33%;
    }  
    
    .carousel-content .cupon .cupon-title{
    }
    .carousel-content .cupon .cupon-title .cupon-percent{
        
        
    }
    header,
    .slider-box{
        padding: 0;
    }
    .content-row aside.side-banner,
    .side-banner-content{
        width: 25%;
    }
  .cupon-list li {
      aspect-ratio: 5 / 4;
      height: auto;
  }
    .cupon-list li .cupon-title{
        font-size: 1.4em;
    }
    .results{
        grid-template-columns: repeat(3, 1fr);
    }
    
}


@media all and (max-width: 768px) {
  /*.slider .search-form, */
    .navlink {
    display: none;
  }
    .main-nav .language span{
        display: none;
    }
    .slider .search-form{
        bottom: auto;
        right: 4rem;
        top: 1em;
    }
  .header-box nav .menu-btn {
    display: inline-block;
      padding-right: 0;
      margin-right: 0;
  }
        .header-box nav a{
        padding: 0.75em 0.75em 0.75em 0;
        height: auto;
        align-self: flex-end;
        line-height: 2.4em;
    }
    .header-box nav a.cart img,
    .header-box nav a.user img{
        height: 2.4em;
    }
        .header-box nav .menu-btn{
        margin: 0;
        align-self: flex-end;
        margin-bottom: 0.75em;
        height: 2.4em;
  width: 2.4em;
    }
  .search-btn {
    display: inline-block;
  }
  .slide-title {
    max-width: none;
  }
  .slider-box, .slide {
    aspect-ratio: 4 / 3;
  }
  .big-row {
    font-size: 1.4em;
    /*text-align: left;*/
  }
    .slide-title-2 {
  color: #000000;
  position: absolute;
  top: calc(50% + 4rem);
    transform: translateY(-50%);
  left: 4em;
  z-index: 2;
  max-width: 40%;
}

.slider-text-2{
    position: absolute;
    top: calc(50% + 4rem);
    right: 0;
    width: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-block;
    color: #ffffff;
    padding: 0.5em 2em 0.5em 1em;
    border-radius: 2em;
    font-weight: normal;
    box-sizing: border-box;
    text-align: right;
    text-shadow: 1px 1px 3px #000a;
}
  .carousel-content .cupon .cupon-title {
    left: 0;
    width: 100%;
    padding: 1em;
    font-size: 1.4em;
  }
  footer {
    background-color: #ffffff;
    padding: 0 2rem;
  }
  .footer-nav {
    text-align: left;
    font-size: 0;
  }
  footer nav a {
    display: block;
    padding: 0.5em 0;
    font-size: 1rem;
    border-bottom: solid thin var(--gris);
  }
  footer nav a:first-child {
    border-top: solid thin var(--gris);
  }
  .promo-row {
    margin-top: 2em;
      display: flex;
      flex-direction: column-reverse;
      font-size: 1.2em;
  }
  .promo-row a.button{
      flex-grow: 0;
      align-self: center;
  }
  .promo-row span {
    display: block;
    padding: 2em;
  }
  .bottom-row {
    display: block;
  }
  .bottom-row .left, .bottom-row .right {
    text-align: center;
    display: block;
    font-size: 0.8em;
  }
    /*
  .modal-content {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
  }*/
  .modal-cupon-data {
    display: flex;
    flex-flow: column-reverse;
  }
  .modal-cupon-gallery {
    width: 100%;
    flex-basis: 100%;
  }
  .modal-cupon-info {
    width: 100%;
    flex-basis: 100%;
    padding: 2em 0;
    z-index: 100;
  }
  .modal-cupon-title, .modal-cupon-text {
    padding: 0;
  }
    
   .modal-cupon-text *{        
        all: initial;
        all: unset;  
    }
  .close {
    z-index: 500;
  }
  .inner-search {
    margin: 0 1em;
  }
  .inner-search {
    /*display: none;*/
  }
    .carousel-link{
        background-color: transparent;
        opacity: 1;
    }
    .carousel-link button{
        top: auto;
        bottom: 0.5rem;
        left: 1.5em;
        right: auto;
        transform: none;
        height: 2rem;
        line-height: 2rem;
        
    }
     .carousel-content .cupon {
        width: 50%;
    }  
    
    .carousel-content .cupon .cupon-title{
         font-size: 1.4rem;
        bottom: 3rem;
        padding: 0 1em;
    }
    .carousel-content .cupon .cupon-title .cupon-percent{
        
        
    }
    .content-row{
        display: block;
    }
    .content-row aside.side-banner,
    .side-banner-content{
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 1;
        top: 0;
    }
    .cupon-list li .cupon-title{
        font-size: 1.2em;
    }
    .side-banner .title{
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }
    .side-banner .text{        
        top: 50%;
        transform: translateY(-50%);
    }
    
    .results{
        grid-template-columns: repeat(2, 1fr);
    }
  .slider {
    padding-top: 6em;
  }
}
@media all and (max-width: 640px) {
    button, .button{
          height: 2em;
  line-height: 2em;
    }
    .cupon-list li .cupon-stars{
        height: 1em;
        line-height: 1em;
        font-size: 1.2em;
    }
    .slider .search-form {
        max-width: none;
        width: calc(100% - 8rem);
  }
    
    .big-row {
        font-size: 1.2em;
    }
    
    .results li{
        font-size: 0.8em;
    }
    
}
@media all and (max-width: 560px) {
  .button-row a {
    display: block;
    margin: 1em auto;
    width: 50%;
  }
    header .content-box{
        padding: 0;
    }
  .header-box nav {
    flex-shrink: 0;
      justify-content: flex-end;
      padding-right: 1em;
      flex-grow: 1;
  }
    .header-box nav button{
        padding: 0
    }
    .header-box nav a{
        padding: 0.75em 0.75em 0.75em 0;
        height: auto;
        align-self: flex-end;
        line-height: 2.4em;
    }
    .header-box nav a.cart img,
    .header-box nav a.user img{
        height: 2.4em;
    }
    .header-box nav .menu-btn{
        margin: 0;
        align-self: flex-end;
        margin-bottom: 0.75em;
        height: 2.4em;
  width: 2.4em;
    }
  .logo {
    min-width: auto;
    line-height: 4em;
      padding: 0.75em;
      align-content: flex-end;
      flex-grow: 1;
      flex-basis: 12%;
      left:5%;
      top: -3%;

  }
  .logo img {
    vertical-align: bottom;
  }
  .header-box nav a {
    padding-right: 0.5em;
    padding-left: 0;
  }
  .slide-title span {
    font-size: 1.4em;
    margin-bottom: 1em;
  }
    .slide-title-2,
    .side-banner .title{
  bottom: 1rem;
  left: 1em;
  z-index: 2;
  max-width: 80%;
        top: auto;
        transform: none;
}

.slider-text-2,
    .side-banner .text{
    top: 1rem;
    right: 0;
    width: 80%;
        transform: none;
}
    .promo-row a.button{
        height: auto;
        line-height: 1em;
        padding: 0.5em 2em;
    }
  .form-row.form-row-flex {
    display: block;
  }
  .form-row.form-row-flex label.flex30, .form-row.form-row-flex label.flex70 {
    margin: 1em auto;
    display: block;
    flex-basis: 100%;
  }
  .form-row.form-row-flex.radio-row {
    display: flex;
    gap: 5px;
    justify-content: space-between;
  }
  .form-row.form-row-flex.radio-row .label-inline {
    flex-basis: 25%;
  }
  .card-logo {
    height: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
    .carousel-content .cupon {
        width: 100%;
    }  
    
    .carousel-content .cupon .cupon-title{
/*         font-size: 1.4rem;
        bottom: 0;*/
    }
    .result_cupon-title .cupon-percent{
        position: absolute;
  left: 0;
  bottom: 150%;
  top: auto;
    }
    .header-box nav a span.count,
    .header-box nav a span.count:visited,
    .header-box nav a span.count:focus,
    .header-box nav a span.count:active{
        top: 0.5rem;
    }
    .cart-colums{
        flex-direction: column;
    }
    .results{
    grid-template-columns: repeat(1, 1fr);
}
    .modal-content{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        max-height: 100%;
        top: 0;
    }
    .modal-header h2{
        height: auto;
        max-width: calc(100% - 2em);
        line-height: 1em;
    }
}