/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}
a{
  text-decoration: none;
  color: #000;
}
img{
  width: 100%;
  height: auto;
}

aside, main{
  background-color: rgba(255, 255, 255, .1);
}

ol, ul{
  padding-left:1rem;
}
/* Styles for the background */
.background{
  background-image: var(--unq-bg-general);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
}
@media (max-width: 768px){
  .background{
    height: 100%;
    padding-bottom: 2rem;
  }
}
.background::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px){
  .background::before{
    background-color: rgba(0, 0, 0, 0.2);
    height: 100% !important;
    padding-bottom: 2rem;
  }
}
.view{
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

/* Styles for the Navbar */
.navbar{
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  height: auto;
}
@media (max-width: 768px){
  .navbar{
    grid-template-columns: 2fr 3fr 2fr;
  }
}
.lang_exchange{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-bottom: 0.95px solid #fff;
  height: 100%;
}
@media (max-width: 540px){
  .lang_exchange{
    flex-direction: column;
    padding: 1rem;
  }
}
.languages{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.lang_flag img{
  width: 30px;
  height: 30px;
}
.lang_name select, 
.exchange_rate select{
  background-color: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
}
.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.95px solid #fff;
  border-top: none;
  padding: 1rem;
}
@media (max-width: 540px){
  .logo{
    padding: 0.5rem;
    height: 100%;
  }
}
.logo img{
  width: 15%;
  height: 10%;
}
@media (max-width: 768px){
  .logo img{
    width: 20%;
    height: 20%;
  }
}
@media (max-width: 540px){
  .logo img{
    width: 4rem;
    height: 4rem;
  }
}
.cart_container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100%;
  border-bottom: 0.95px solid #fff;
}
.cart{
  position: relative;
  cursor: pointer;
  margin-left: 10%;
}
@media (max-width: 540px){
  .cart{
    margin-left: 0;
  }
}
.cart img{
  width: 30px;
  height: 30px; 
}
@media (max-width: 540px){
  .cart img{
    width: 45px;
    height: 45px; 
  }
}
.cart .number{
  display: none;
  position: absolute;
  top: 40%;
  right: -5%;
  background-color: red;
  color: #fff;
  border-radius: 50%;
  padding: 0.1rem 0rem;
  width: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 540px){
  .cart .number{
    top: 40%;
    right: -10%;
    padding: 0.2rem 0rem;
    width: 30px;
    font-size: 1rem;
  }
}
.cart .number.active{
  display: block;
}

.title{
  margin-top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
}
@media (max-width: 768px){
  .title{
    font-size: 2.5rem;
  }
}
@media (max-width: 540px){
  .title{
    font-size: 2rem;
  }
}
@media (max-width: 430px){
  .title{
    width: 90%;
    margin: 2rem auto;
    font-size: 1.7rem;
    text-align: center;
  }
}

/* Styles for the aside */
.content{
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 2rem;
  height: 60vh;
  padding: 0rem 5rem 4rem 5rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px){
  .content{
    height: 90vh;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }
}
@media (max-width: 540px){
  .content{
    padding: 1rem;
    height: 100%;
  }
}
aside{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translate3d(0, 0, 0);
  border: 2px solid #fff;
  border-radius: 2px;
  padding: 2rem;
  height: 40vh;
}
@media (max-width: 768px){
  aside{
    height: 100%;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 540px){
  aside{
    width: 90%;
    padding: 1rem;
  }
}
.main_buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border: 2px solid #fff;
  color: #fff !important;
  transition: all 0.4s;
  border-radius: inherit !important;
  background-color: none;
  margin-bottom: 1rem;
}
@media (max-width: 540px){
  .main_buttons{
    gap: 0.5rem;
  }
}
.main_buttons:hover{
  background-color: rgb(234, 68, 58, 0.8);
}
.main_buttons.active{
  background-color: rgb(234, 68, 58) !important;
}
.main_buttons img{
  width: 30px;
  height: 30px;
}
@media (max-width: 540px){
  .main_buttons img{
    width: 20px;
    height: 20px;
  }
}
.main_buttons h3{
  font-size: 1.2rem;
  font-weight: 400;
}
@media (max-width: 540px){
  .main_buttons h3{
    font-size: 1rem;
  }
}

/* Styles for the main */
main{
  color: #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translate3d(0, 0, 0);
  border: 2px solid #fff;
  border-radius: 2px;
  padding: 2rem;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px){
  main{
    width: 80%;
    margin: 0 auto;
    padding-top: 0;
    height: 45vh;
  }
}
@media (max-width: 540px){
  main{
    height: 100%;
    width: 90%;
    padding: 1rem;
  }
}
main h1{
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
@media (max-width: 540px){
  main h1{
    font-size: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 540px){
  main p{
    font-size: 1.1rem;
    text-align: center;
  }
}

main label{
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px){
  main label{
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 540px){
  main label{
    font-size: 1.1rem;
    text-align: left;
  }
}
main input, 
main select, 
main textarea{
  width: 100%;
  padding: 0.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 768px){
  main input, 
  main select{
    font-size: 1.2rem;
    padding: 1rem;
  }
}
main input::placeholder,
main textarea::placeholder{
  color: rgb(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
}
main a{
  margin: 1rem 0;
  width: 30%;
  padding: 0.75rem;
  border: 1.5px solid #fff;
  background-color: rgb(234, 68, 58);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s;
  text-align: center;
}
@media (max-width: 768px){
  main a{
    width: 60%;
    padding: 1.5rem;
  }
}
@media (max-width: 540px){
  main a{
    width: 100%;
    padding: 1rem;
  }
}
main a:hover{
  background-color: #fefefe;
  color: rgb(234, 68, 58);
}

/*Ajustes boostrap */
.navbar{
  --bs-navbar-padding-y:0px;
}

.main_buttons{
  padding: 1rem !important;
}

select.form-control{
  color: inherit;
  background-color:transparent;
  border:inherit;
  border-radius: inherit;
}
textarea.form-control{
  width: 100%;
  padding: 0.5rem;
  border: 2px solid #ccc;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}
main input.form-control{
  width: 100%;
  padding: 0.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

main input.form-control:focus{
  color: #FFF;
  background-color: transparent;
}

main input.btn-theme, main button.btn-warning{
  margin: 1rem 0;
  width: 30%;
  padding: 0.75rem;
  border: 1.5px solid #fff;
  background-color: rgb(234, 68, 58);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s;
  text-align: center;
  border-radius: 0px;
}

main input.btn-theme:hover, main button.btn-warning:hover{
  color: rgb(234, 68, 58);
  background-color: #FFF;
}

main button.btn-inverse{
  margin: 1rem 0;
  width: 30%;
  padding: 0.75rem;
  border: 1.5px solid #fff;
  background-color: #0dcaf0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s;
  text-align: center;
  border-radius: 0px;
}

main button.btn-inverse:hover{
  color: #0dcaf0;
  background-color: #FFF;
}

main select.form-control{
  width: 100%;
  padding: 0.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.btn-app{
  display: flex;
}

.detalle_compra button.accordion-button{
  display: inherit;
}


/********* Gallery ****************/
/* apply a natural box layout model to all elements, but allowing components to change */



.gallery{
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .pswp-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 768px){
  .gallery .pswp-gallery{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 280px){
  .gallery .pswp-gallery{
    grid-template-columns: 1fr;
  }
}
.gallery .pswp-gallery a{
  display: block;
  overflow: hidden;
  border-radius: 10px;
  max-height: 200px;
}
@media (max-width: 280px){
  .gallery .pswp-gallery a{
    max-height: 150px;
  }
}
.gallery .pswp-gallery a:hover img{
  transform: scale(1.05);
} 
.gallery .pswp-gallery a img{
  width: 100%;
  height: 100% !important;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;

}

.btn-app{
 display: inline-block;
 width: 10rem;
 text-align: center;
}

.btn-app img{
  display: block;
  width: 100%;
}

.info .btn-app img{
  width: 10rem;
}
section.app{
  text-align: center;
}

/*********** COMBO ************/

.combos{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: 100%;
  margin: 5rem 0;
}

@media (max-width: 768px){
  .combos{
    flex-direction: column-reverse;
  }
}

.combos .combo1,
.combos .combo2{
  width: 400px;
  border-radius: 5px;
  padding: 2rem;
  color: #000;
  border: 1px solid #000;
  transition: all 0.5s ease;
}
@media (max-width: 768px){
  .combos .combo1{
    width: 45%;
    margin: 0 auto;
  }
  .combos .combo2{
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 540px){
  .combos .combo1{
    width: 60%;
  }
  .combos .combo2{
    width: 65%;
  }
}
@media (max-width: 430px){
  .combos .combo1{
    width: 70%;
  }
  .combos .combo2{
    width: 75%;
  }
}
@media (max-width: 280px){
  .combos .combo1, 
  .combos .combo2{
    width: 80%;
  }
}
.combos .combo1{
  height: 20rem;
}
.combos .combo2{
  height: 22rem;
}
@media (max-width: 768px){
  .combos .combo1{
    height: 20.5rem;
  }
  .combos .combo2{
    height: 25rem;
  }
}
@media (max-width: 414px){
  .combos .combo2{
    height: 26rem;
  }
}
@media (max-width: 375px){
  .combos .combo1{
    height: 23rem;
  }
}
@media (max-width: 280px){
  .combos .combo2{
    height: 28rem;
  }

}
.combos .name{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
}
.combos .price{
  font-size: 1.2rem;
  font-weight: 400;
  margin: 1rem 0;
  text-align: center;
}
@media (max-width: 768px){
  .combos .price{
    margin-bottom: 2rem;
  }
}
.combos .includes{
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px){
  .combos .includes{
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin: 1rem auto;
  }
}
.combos .includes p{
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem 0;
}
@media (max-width: 768px){
  .combos .includes p{
    text-align: center;
    margin-top: 0;
  }
 }

@media (max-width: 1024px){

main input.btn-theme, main button.btn-warning{
    width: 100%;
  }
}
.combos .includes p span{
  font-size: 0.8rem;
  font-weight: 400;
  margin: 1rem 0;
}

.combos .buy{
  width: 30%;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 20px;
  padding: 0.5rem 0;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  transition: all 0.3s ease;
}

.combos .combo1:hover{
  background: linear-gradient(220.55deg, #8FFF85 0%, #39A0FF 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo1:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo1 .buy:hover{
  transform: scale(1.1);
}

.combos .combo2:hover{
  background: linear-gradient(220.55deg, #FADD76 0%, #9F3311 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo2:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo2 .buy:hover{
  transform: scale(1.1);
}

.combos .combo3:hover{
  background: linear-gradient(220.55deg, #1637f9 0%, #ff9cef 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo3:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo3 .buy:hover{
  transform: scale(1.1);
}
/******** **********/

main .filters{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px){
  main .filters{
    grid-template-columns: 1fr;
  }
}
.filters .filter {
  display: flex;
  flex-direction: column;
}

.albums_section{
  margin: 2rem auto;
  width: 90%;
}
.albums_section h3{
  font-size: 2.5rem;
  font-weight: 600;
  margin: 1rem 1.5rem;
}
.albums_section h4{
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 1.5rem;
}

.albums_section .all_albums{
  display: flex;
  flex-wrap: wrap;

  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.albums_section .all_albums .album{
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.albums_section .all_albums .album img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.albums_section .all_albums .album:hover img{
  transform: scale(1.05);
}


.combos{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: 100%;
  margin: 5rem 0;
}

@media (max-width: 768px){
  .combos{
    flex-direction: column-reverse;
  }
}

.combos .combo1,
.combos .combo2,
.combos .combo3,
.combos .combo4,
.combos .combo5{
  width: 400px;
  border-radius: 5px;
  padding: 2rem;
  color: #000;
  border: 1px solid #000;
  transition: all 0.5s ease;
}
@media (max-width: 768px){
  .combos .combo1{
    width: 45%;
    margin: 0 auto;
  }
  .combos .combo2{
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 540px){
  .combos .combo1{
    width: 60%;
  }
  .combos .combo2,
  .combos .combo3,
  .combos .combo4,
  .combos .combo5{
    width: 65%;
  }
}
@media (max-width: 430px){
  .combos .combo1{
    width: 70%;
  }
  .combos .combo2,
  .combos .combo3,
  .combos .combo4,
  .combos .combo5{
    width: 75%;
  }
}
@media (max-width: 280px){
  .combos .combo1, 
  .combos .combo2,
  .combos .combo3,
  .combos .combo4,
  .combos .combo5{
    width: 80%;
  }
}
.combos .combo1{
  height: 20rem;
}
.combos .combo2,
.combos .combo3,
.combos .combo4,
.combos .combo5{
  height: 22rem;
}
@media (max-width: 768px){
  .combos .combo1{
    height: 20.5rem;
  }
  .combos .combo2,
  .combos .combo3,
  .combos .combo4,
  .combos .combo5{
    height: 25rem;
  }
}
@media (max-width: 414px){
  .combos .combo2,
  .combos .combo3,
  .combos .combo4,
  .combos .combo5{
    height: 26rem;
  }
}
@media (max-width: 375px){
  .combos .combo1{
    height: 23rem;
  }
}
@media (max-width: 280px){
  .combos .combo2,
  .combos .combo3,
  .combos .combo4,
  .combos .combo5{
    height: 28rem;
  }

}
.combos .name{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
}
.combos .price{
  font-size: 1.2rem;
  font-weight: 400;
  margin: 1rem 0;
  text-align: center;
}
@media (max-width: 768px){
  .combos .price{
    margin-bottom: 2rem;
  }
}
.combos .includes{
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px){
  .combos .includes{
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin: 1rem auto;
  }
}
.combos .includes p{
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem 0;
}
@media (max-width: 768px){
  .combos .includes p{
    text-align: center;
    margin-top: 0;
  }
}
.combos .includes p span{
  font-size: 0.8rem;
  font-weight: 400;
  margin: 1rem 0;
}

.combos .buy{
  width: 30%;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 20px;
  padding: 0.5rem 0;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  transition: all 0.3s ease;
}

.combos .combo1:hover{
  background: linear-gradient(220.55deg, #8FFF85 0%, #39A0FF 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo1:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo1 .buy:hover{
  transform: scale(1.1);
}

.combos .combo2:hover{
  background: linear-gradient(220.55deg, #FADD76 0%, #9F3311 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo2:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo2 .buy:hover{
  transform: scale(1.1);
}

.album_preview{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.album_preview .pswp-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 900px){
  .album_preview .pswp-gallery{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px){
  .album_preview .pswp-gallery{
    grid-template-columns: repeat(1, 1fr);
  }
  
 #album_preview .col-md-3 {
    width: 100% !important;
  }

}
@media (max-width: 280px){
  .album_preview .pswp-gallery{
    grid-template-columns: 1fr;
  }
}
.album_preview .pswp-gallery a{
  display: block;
  overflow: hidden;
  border-radius: 10px;
  max-height: 200px;
}
@media (max-width: 280px){
  .album_preview .pswp-gallery a{
    max-height: 150px;
  }
}
.album_preview .pswp-gallery a:hover img{
  transform: scale(1.05);
} 
.album_preview .pswp-gallery a img{
  width: 100%;
  height: 100% !important;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;

}

.combo_paquetes label{
  cursor: pointer;
}

.combo_paquetes .custom-control-input{
  display: none;
}

.side_menu{
  box-shadow: 1px 3px 5px #DDD;
}

.img-thumbnail{
  cursor: pointer;
}

.info-contact a{
  color: #FFF;
}