.bg-white{  background-color: #fff;}

.block{display:block!important;}
.cursor-pointer{cursor: pointer;}


/* position */
.fixed{position:fixed;}  
.absolute{position:absolute;}  
.relative{position: relative;} 
.top-0{top:0;} 
.top-10{top:10px;} 
.top-20{top:20px;} 
.top-30{top:30px;} 
.left-0{left:0;}
.left-10{left:10px;}
.left-20{left:20px;}

/* flex */
.flex{display: flex;} 
.inline-flex{display: inline-flex;} 
.flex-col{flex-flow: column;}
.flex-wrap{flex-wrap:wrap;}
.items-center{align-items: center;} 
.items-baseline{align-items: baseline;} 
.self-baseline{align-self: baseline;} 
.justify-center{justify-content: center;}  
.justify-between{justify-content: space-between;}
.justify-around{justify-content: space-around;}

/* grid */
.grid{display: grid;}
.grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr)); gap:20px} 
.grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));column-gap: 20px;} 
.grid-cols-3{grid-template-columns: repeat(3, minmax(0, 1fr));column-gap: 20px;} 
.grid-cols-12{grid-template-columns: repeat(12, minmax(0, 1fr));} 
.col-span-4{grid-column: span 4 / span 4;}
.col-span-6{grid-column: span 6 / span 6;}
.col-span-8{grid-column: span 8 / span 8;}
.col-span-12{grid-column: span 12 / span 12;}
.gap-0{gap: 0;}
.gap-4{gap: 4px;}
.gap-8{gap: 8px;}
.gap-10{gap: 10px;}
.gap-12{gap: 12px;}
.gap-15{gap: 15px;}
.gap-20{gap: 20px;}

@media (min-width: 768px) {
 .md-col-span-8{grid-column: span 8 / span 8;}
}


@media (max-width: 768px) {
    .md-grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr)); gap:20px;} 
}
/* height */
.h-0{height: 0!important;}
.h-12{height: 3rem;} 
.h-24{height: 6rem;} 
.h-48{height: 12rem;}
.h-screen{height: 100vh;} 
.min-h-screen{min-height: 100vh;}

/* width */
.w-12{width:3rem;}
.w-24{width:6rem;}
.w-48{width:12rem;}
.w-1-3{width: 33.333333%;}
.w-1-2{width:50%;}
.w-2-3{width:75%;}
.w-3-4{width:85%;}
.w-full{width:100%;} 

/* zindex */
.z-20{z-index: 20!important;} 
.z-50{z-index: 50!important;} 

/* padding */
.p-0{padding: 0!important;} 
.p-3{padding: 0.75rem;} 
.p-5{padding: 1.25rem;} 
.px-3{padding-left: 0.75rem;padding-right: 0.75rem;} 
.px-5{padding-left: 1.25rem;padding-right: 1.25rem;} 
.py-3{padding-top: 0.75rem;padding-bottom: 0.75rem;}
.py-5{padding-top: 1.25rem;padding-bottom: 1.25rem;}
.py-10{padding-top:2.5rem;padding-bottom: 2.5rem;}



/* margin */
.m-0{margin: 0;} 
.mt-0{margin-top: 0;} 
.mt-3{margin-top: 0.75rem;}
.mt-5{margin-top: 1.25rem;}
.mb-0{margin-bottom: 0;}
.mb-3{margin-bottom: 0.75rem;}
.mb-5{margin-bottom: 1.25rem;}
.mb-10{margin-bottom: 2.50rem;}
.mr-2{margin-right: 0.5rem;} 
.mr-3{margin-right: 1rem;} 
.ml-0{margin-left: 0;}
.ml-5{margin-left: 1.25rem;}


/* text */
.text-center{text-align: center!important;}

.text-light{color:#fff;}
.text-red{color:red;}

/* font */
.font-light{font-weight: 300} 
.font-semibold{font-weight: 600} 
.text-xs{font-size: 0.75rem;line-height: 1rem;}
.text-base{font-size: 1rem;line-height: 1.5rem;}
.text-xl{font-size: 1.25rem!important;line-height: 1.75rem;}
.text-2xl{font-size: 1.5rem!important;line-height: 2rem;}
.text-3xl{font-size: 1.875rem;line-height: 2.25rem;}

.space-x-2 > * + * {margin-left: 0.5rem;}
.space-x-4 > * + * {margin-left: 1rem;}
.space-y-2 > * + * {margin-bottom: 0.5rem;}
.space-y-4 > * + *,
.space-y-4 > * {margin-bottom: 1rem;}
.space-y-6 > * + * {margin-bottom: 1.5rem;}
.space-y-8 > * + *,
.space-y-8 > * {margin-bottom: 3rem;}
.space-y-7 > * {margin-bottom: 2rem;}

.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide{
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all .4s;
}

.show{
  opacity: 1;
  visibility: visible;
  height: auto;
}

.d-none{display: none;}

.flex-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mb-3{margin-bottom: 0.75rem!important;}
.mb-5{margin-bottom: 1.5rem!important;}
.mb-10{margin-bottom: 3rem!important;}

.responsive{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.ba-loader {
    opacity:0;
    visibility: hidden;
    position: absolute;
    top: 10%;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #0a0a0a;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.ba-loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-left: 4px solid #ede8e4;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
} 

.btm-payonboard-btn.loading .ba-loader{
    opacity: 1;
    visibility: visible;
}
  
.ba-btn-text{
    opacity: 1;
    visibility: visible;
    transition: all ease .4s;
}
.btm-payonboard-btn.loading .ba-btn-text{
    opacity: 0;
    visibility: hidden;
}


.page-id-222 .container{
  max-width: 100% !important;
padding: 0 3vw;
}


.countdown-container *{
color:#fff!important;
font-weight:900;
}

#site-header{
position: fixed;
top: 0;
left: 0;
}
#countdown-main{
top:13vh!important;
}

#bnd-main-section,
#bnd-main-section .row-bg-wrap,
.h-full{
height:100vh;
}


.countdown-container *{
color:#fff!important;
font-weight:900;
}
#countdown-main{
top:13vh!important;
}

.audiolibro-main{opacity:0;visibility: hidden;}
.audiolibro-main.active{opacity:1;visibility: visible;transition: all .4s ease-in;}

@media only screen and (max-width:1024px){
.countdown-container *{
color:#333!important;
}
.site-header, .site-header .slide-menu-gr-container {
background-color:#eae8e4!important;
padding:0 15px;
}
}

@media only screen and (max-width:1024px){

  .countdown-container *{
    color:#333!important;
  }
  .sm-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm-gap-0{
    gap:0;
  }
  .sm-flex-col{
    flex-flow: column;
  }
}

@media screen and (max-width:600px){
  .xs-flex-col{
    flex-flow: column;
  }
  .site-header .artist-logo{
    min-width:80px!important;
  }

  .xs-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xs-gap-0{
    gap:0;
  }
  .xs-col-span-12{grid-column: span 12 / span 12;}

}