*{
    font-family: 'Montserrat';    
}
html{
    font-family: 'Montserrat';
    height: 100%;
}
body{
    height: 100%;
    
}
/*-------HEADDER--------*/
.header-background{
    height: 68px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-container{
    padding: 0;
    width: 100%;
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* header responsive */
.header-logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    width: 114px;
    height: 44px;
}
.header-buttons-container{
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.header-search{
    justify-self: flex-start;
    background: url(../image/search.png) no-repeat scroll 200px 2px;
    background-color: #494949;
    border: 0;
    background-size: 21px;
    /*width: 300px;*/
    color: #fff;    
    padding-left:10px;   
    display:none;
    visibility: hidden;
}
.header-buttons{
    width: max-content;
    height: min-content;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}
.header-button-logout{
    margin-left: 5px;    
}
@media (min-width: 992px){
    .header-buttons{
        margin-right: 25%;
    }
}
@media (max-width: 992px){
    .header-logo-container{
        justify-content: start;
    }   
    .header-buttons-container{
        justify-content: end;
    }     
}
.header-buttons-a, .header-buttons-a a{
    height: min-content;
    display: contents;
    align-items: center ;
    cursor: pointer;
    text-decoration: none;
    color:#fff;
}
.header-buttons-p{
    margin: 0 0 0 5px;
    color: #FFFFFF;
    
}
.header-butotns-img{
    width: 18px;
    position: relative;
    bottom: -5px;    
}
.header-buttons-img-1{
    width:20px;
}
.header-buttons-img-2{
    width: 200%;
    height: 200%;
    padding-left: 10px;
}
.main-section-background{
    padding: 0;
    height: 600px;
    background-image: url("../image/background.png");
    background-color: #1f0533;
    background-repeat:no-repeat;
    background-position: center;  
    /*background-size: auto 100%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-title{
    padding: 80px 0 0 0;
    margin-bottom: 12px;
    /*width: 260px;*/
    font-size: 28px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    text-align: center;
}
.main-linea{
    width: 222px;
    height: 2px;
    background-color: #b8a968;
}
.main-fecha{
    margin: 16px 0 104px 0;
    width: 260px;
    font-size: 28px;
    line-height: 32px;
    color: white;
    text-align: center;
}
.main-btn{
    width: 128px;
    height: 32px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.main-btn-img{
    width: 22px;
    height: 22px;
}
.main-btn-text{
    width: min-content;
    margin: 0 6px 0 0;
    font-size: 16px;
    line-height: 14px;
    font-weight: bold;
    color: #221e1f;
    
}
.main-footer{
    padding:10px;
    background-color: #c1a762;
}
.main-footer-row{
    height: 100%;
}
.main-footer-btn{
    width: 180px;
    height: 60px;
    background-color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}
.main-footer-title{
    margin: 0 0 5px 0;
    font-size: 20px;
    line-height: 14px;
    text-align: center;
    color: black;
}
.main-footer-subtitle{
    margin: 0;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: black;
}
/*-------REGISTER--------*/
.register-section-background{
    padding: 0;
    height: calc(100% - 68px);;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register-section-row{
    width: 100%;
    height: 100%;
    max-width: 1400px;
    padding: 0 15px;
}
.register-title-container{
    width: 100%;
    margin: 20px 0 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.register-title{
    width: max-content;
    font-family : Montserrat;
    font-weight : bold;
    font-size : 24px;
    color : #221E1F;
    margin: 0;
}
.register-edit-img{
    width: 21px;
    height: 21px;
}
.register-form{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
}
.register-form-input{
    width: 100%;   
    height: 48px;
    background : rgba(208, 210, 211, 1);
    border: none;
    border-radius: 5px;
    margin: 2.5px 0px;
    padding-left: 16px;
}
.register-form-input::placeholder{
    font-family : Montserrat;
    font-size : 16px;
    color : #808183;
}
.register-btn-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register-form-btn{
    background : #B8A968;
    width: 100%;
    height: 32px;
    border: none;
    text-align: center;
    font-family : Montserrat;
    font-size : 14px;
    color : #221E1F;
    
}
.register-terminos{
    width: 306px;
    font-family : Montserrat;
    font-size : 10px;
    line-height: 10px;
    text-align: center;
    color : #221E1F;
    margin: 6px 0;
}
.register-terminos-a{
    color : #221E1F;
    text-decoration-color: #221E1F;
}
/*-------CONFIRMACION CANJE--------*/
.confir-section-background{
    padding: 0;
    height: calc(100% - 68px);;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.confir-section-row-1{
    width: 100%;
    height: calc(50% - 68px);
    min-height: 100px;
    background-color: #e5e6e7;

}
.confir-section-col-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}
.confir-section-title{
    font-family : Montserrat;
    font-weight : bold;
    font-size : 20px;
    color : #221E1F;
}
.confir-section-line{
    width: 50%;
    max-width: 314px;
    height: 2px;
    background-color: #b8a968;
    margin: 0 0 6px 0;
}
.confir-section-subtitle{
    font-family : Montserrat;
    font-size : 14px;
    color : #221E1F;
    margin: 6px 0 0 0;
}
.confir-section-row-2{
    width: 100%;
    height: 100%;
    margin-top: 5px;
}
.confir-section-col-2{
    padding: 0;
}
.confir-section-form{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.confir-select-container{
    width: 100%;
    padding: 0;
}
.confir-form-select{
    width: 100%;
    margin: 5px 0px;
    padding: 10px 8px 10px 8px;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    overflow: -moz-hidden-unscrollable;
    background: url("../image/select-arrow.png") no-repeat right #D0D2D3;
    background-origin: content-box;
    -moz-appearance: none;          /* Oculta la flecha por default */
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.confir-form-checkbox{
    appearance: none;
    background : #808183;
    margin: 0;
    width: 20px;
    height: 20px;
    border: 5px solid #D0D2D3;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(0.25em);
    margin-right: 5px;
}
.confir-form-checkbox:checked{
    background-color: #b8a968;
    border-color: #808183;
}
.confir-button-container{
    width: 100%;
    padding: 0;
}
.confir-precio-final{
    width: 100%;
    text-align: end;
    font-family : Montserrat;
    font-weight : bold;
    font-size : 16px;
    color : #221E1F;
    padding: 10px 12px;
    margin: 0;
    background : #ffffff;
}
.confir-button:hover{
    background-color: #b8a968b7;
}
.confir-button-box{
    display: flex;
    justify-content: center;
    width: 100%;
    background : #ffffff;
}
.confir-button{
    width: 100%;
    font-family : Montserrat;
    font-weight : 500;
    font-size : 16px;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    cursor: pointer;
    color : #FFFFFF;
    background : #B8A968;
}
/* button responsive */
@media (max-width: 576px){
    .confir-precio-final{
        background : #BABCBF;
    }
    .confir-button-box{
        padding: 10px 0px;
        background : #B8A968;
    }
    .confir-button{
        width: 60%;
        color : #000!important;
        background-color: white!important;
    }
    .comprar{
        color:#000!important;
        text-decoration: none!important;
    }
}
.confir-cancelar{
    display: block;
    width: 100%;
    text-align: center;
    color: black;
    text-decoration: none;
    cursor: pointer;
    padding: 0 12px;
    margin-bottom: 30px;
}
/*-------DETALLE COMPRA--------*/
.detalle-banner{

}
.detalle-title-container{
    background-color: #1C0634;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detalle-title{
    color: white;
    font-size: 64px;
}
.detalle-line{
    width: 80%;
    max-width: 500px;
    height: 2px;
    background-color: #B8A968;
}
.detalle-fecha{
    color: white;
    font-size: 28px;
    padding-top: 5px;
}
.detalle-img-container{
    background-color: #1C0634;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    padding: 0;    
    /*height: 380px;*/
    background-image: url("../image/background.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto 100%;    
}
.detalle-img{

}
.detalle-precio{
    font-size: 28px;
    max-height: 28px;
    color: #B8A968;
    font-weight: bold;
    text-align: left;
}
@media (max-width: 989px){
    .detalle-title-container{
        background-color: white;
    }
    .detalle-title{
        color: black;
        font-size: 36px;
    }
    .detalle-precio{
        text-align: center;
    }
}
.box{    
    padding:20px;
    background: #d2d2d2;
    
}
.modal-header{
    border:0;
}
.modal-content{
    color: #fff;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
}
.btn-silkey{
    color: #fff !important;
    background-color: #b0a263 !important;
    border-color: #b0a263 !important;    
}
.btn-login-plus{
    font-size: 12px;
    height: 50px;
    display: grid;
    align-items: center;    
}
.carousel-indicators li {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;    
    opacity:1;
}
.carousel-indicators .active {
    background-color: #c1a762;
}
.carousel-control-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c1a762' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c1a762' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 50px;
  height: 50px;
}
.view-evento-icon{
    width: 22px;    
}
.btn-comprar{
    color:#000!important;
}
.view-carrito-icon{
    width: 50px;
    position: absolute;
    top: -40px;
    right: 60px;
}


/* MENU MOBILE */
 /* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #000; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  z-index:999;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} 

@media (max-width: 989px){
    .detalle-img-container {
      display: unset;
      height:250px;
    }
    .view-carrito-icon{
        top: 263px;
        right: 10px;
        position: fixed;
    }
    .box {
      background: unset;
      font-size:14px;
    }    
    .detalle-precio{
        position: relative;
        top: 14px;        
    }
    .detalle-title{
        font-size:24px;
    }
    .detalle-text{
        font-size:12px;
    }    
    .detalle-text{
        font-size:12px;
    }       
    .comprar-desktop{
        display:none;
    }
    .comprar-mobile{
        display:initial;
    }
}

@media (min-width: 900px){
    .comprar-desktop{
        display:initial;
    }
    .comprar-mobile{
        display:none;
    }
}

.evento-virtual-index,.card-evento-virtual{
    background-color: #000;
}

.card-virtual{
    border:0px;
}

.card-img-virtual{
    background-color: #fff;
    background-clip: border-box;
    border: 4px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;    
}
.btn-inscribirse{
    border-radius: 0.55rem;    
    background: #B8A968;
    width: 100%;
    height: 32px;
    border: none;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    color: #221E1F;    
}
#modalinscribirse .modal-content{
    background-color: #fff;
    color:#000;
}

#modalregistrarte .modal-content{
    background-clip: border-box;
    border: 4px solid rgb(255, 255, 255);
    border-radius: 0.25rem;
}

.card-evento-virtual{
    padding-left: 0rem!important;
    padding-right: 0rem!important;
}

.card-img-virtual-ribbon {
  --d: 6px; /* folded part */
  --c: blue; /* color */
  --f: 16px; /* ribbon font-size */
  position: relative;
  display: inline-block;
  background: lightblue;
}

.card-img-virtual-ribbon::before {
  content: attr(data-ribbon);
  position: absolute;
  font-family: sans-serif;
  font-size: var(--f);
  top: 0;
  right: 0;
  transform: translate(29.29%, -100%) rotate(45deg);
  color: #fff;
  text-align: center;
  border: 1px solid transparent;
  border-bottom: 0;
  transform-origin: bottom left;
  padding: 5px 35px calc(var(--d) + 5px);
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) bottom/100% var(--d)
    no-repeat var(--c);
  background-clip: padding-box;
  clip-path: polygon(0 0,100% 0,100% 100%,calc(100% - var(--d)) calc(100% - var(--d)),var(--d) calc(100% - var(--d)),0 100%);
  -webkit-mask: linear-gradient(135deg,transparent calc(50% - var(--d) * 0.707),#fff 0) bottom left,
    linear-gradient(-135deg, transparent calc(50% - var(--d) * 0.707), #fff 0)bottom right;
  -webkit-mask-size: 300vmax 300vmax;
  -webkit-mask-composite: destination-in, xor;
  mask-composite: intersect;
}

.card-img-zoom{
    position: absolute;
    bottom: 72px;
    right: 0;
    z-index: 2;
    width: 40px;    
}