:root {
    --primary-font: 'Fredoka', sans-serif;
    /* --primary-font: 'PT Sans', sans-serif; */
    /* --primary-font: 'Open Sans', sans-serif; */
    --primary-color: #0078FF;
    --bg-color: #000D1A;
    --bg-color-transp: rgba(0, 13, 26, 0.85);
    /* --primary-color-darken: #86AD34; */
    /*var(--primary-color)*/
}

body {
    /* background: red; */
    /* background-image: url("../../includes/images/pattern.jpg"); */
    /* background-size: contain; */
    /* background-color: blue; */
    overflow: hidden;
}

/* @media all and (display-mode: fullscreen) and (orientation: landscape) { */
@media all and (orientation: landscape) {
    body {
        overflow: auto;
    }
}

.glow-laranja {
    filter: drop-shadow(0 0 1.5rem #EA5B0C);
}
.glow-rosa {
    filter: drop-shadow(0 0 1.5rem #E5007D);
}
.glow-roxo {
    filter: drop-shadow(0 0 1.5rem #662383);
}
.glow-azul {
    filter: drop-shadow(0 0 1.5rem #009FE3);
}
.glow-verde {
    filter: drop-shadow(0 0 1.5rem #3AAA35);
}
.glow-branco {
    filter: drop-shadow(0 0 1.5rem #ffffff);
}


/* ////////////////////////////////////////////////////////////////////////// */
.menuscreen {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    font-family: var(--primary-font);
}
.dark-bg {
    /* background: #000D1A; */
    background: rgba(0, 13, 26, 0.85);
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.btn {
    padding: 0;
    color: #fff;
}
button.disabled, button:disabled, button:active, button:focus-visible,
img.disabled, img:disabled, img:active, img:focus-visible, div:focus-visible, :focus-visible {
    border: 0 !important;
    outline: none !important;
    outline-style: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

@media all and (orientation: landscape) {
    .menuscreen {
        overflow: auto;
    }
}




/* ////////////////////////////////////////////////// PRELOADER */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 100000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}

.sk-wave .sk-rect {
    background-color: #aaa;
    height: 100%;
    width: 6px;
    display: inline-block;
    transform-origin: 0 0;

      -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
              animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
    -webkit-animation-delay: -1.2s;
            animation-delay: -1.2s;
}
.sk-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
}
.sk-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
}
.sk-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
}
.sk-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
0%, 40%, 100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
            opacity: 1;
    }
20% {
    -webkit-transform: scaleY(0.95);
            transform: scaleY(0.95);
            opacity: 0.8;
    }
}

@keyframes sk-waveStretchDelay {
0%, 40%, 100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
            opacity: 1;
    }
20% {
    -webkit-transform: scaleY(0.95);
            transform: scaleY(0.95);
            opacity: 0.8;
    }
}





/* /////////////////////////////////////////////////// SPLASHSCREEN */
.splashscreen {
}

.splash-header {
    /* min-height: 35%; */
    min-height: 25%;
    display: flex;
    align-items: center;
    /* height: 25%; */
    /* background: red; */
}

.sub-title {
    font-family: var(--primary-font);
    color: #fff;
    color: #cacaca;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6rem;
    margin-top: 1.8rem;
    margin-bottom: 2.4rem;
}
.sub-title small {
    font-size: 1rem;
    color: #a1a1a1;
}
.sub-title--large {
    font-size: 1.6rem;
}

.splash-body {
    min-height: 60%;
    display: flex;
    align-items: center;
    /* background: grey; */
}
.decada { /* img */
    width: 160px;
}

.splash-footer {
    /* height: 10%; */
    min-height: 15%;
    display: flex;
    align-items: center;
    /* background: pink; */
}


@media(min-width: 768px) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
    /* .splash-header {
        height: 25%;
    }
    .splash-body {
        height: 60%;
    }
    .splash-footer {
        height: 15%;
    } */
    .decada { /* img */
        width: 250px;
    }
}

@media(orientation: portrait) {
    .splash-footer {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }
}
@media(max-width: 992px) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
    .sub-title {
        font-size: 1rem;
        line-height: 1.4rem;
        margin-top: 0.8rem;
        margin-bottom: 1.4rem;
    }
    .sub-title--large {
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
    }
    /* .splash-body {
        height: 50%;
    } */
}
@media(max-width: 992px) and (orientation: portrait) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
    .splash-footer {
        min-height: 10%;
    }
}
@media(max-width: 992px) and (orientation: landscape) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
    /* .splash-header {
        height: 25%;
    }
    .sub-title {
        font-size: 0.8rem;
        line-height: 1rem;
        margin-top: 0.2rem;
        margin-bottom: 1rem;
    }
    .splash-body {
        height: 60%;
    }*/
    .splash-footer {
        height: 15%;
    }
}

/* .infoicon {
    filter: drop-shadow(0 0 1rem #5A8DCA);
} */


/* /////////////////////////////////////////////////// PLAYSCREEN */
.playscreen {

}
.playscreen-header {
    min-height: 30%;
    /* background: red; */
}
.random-title {
    /* color: #a5a5a5; */
    color: #858585;
}
.song-title {
    font-weight: 600;
    /* font-weight: 300; */
}
.author-title {
    margin-bottom: 2rem;
    font-weight: 400;
}

.playscreen-body {
    min-height: 50%;
    display: flex;
    align-items: center;
    /* background: orange; */
}
.start-btn {
}
.playscreen-footer {
    min-height: 20%;
    /* background: blue; */
}
.infoicon {
    /* width: 40px; */
}

@media(min-width: 768px) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
    .author-title {
        margin-bottom: 0.5rem;
    }
    .infoicon {
        /* width: 90px; */
    }
}

@media(max-width: 992px) and (orientation: landscape) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
    .author-title {
        margin-bottom: 1rem;
    }
    .overlayscreen .song-title {
        margin-top: 2rem;
    }
}


/* /////////////////////////////////////////////////// COUNTDOWNSCREEN */
.countdown-wrapper {
    /* position: relative; */
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-img { /* img */
    transform: scale(0.5);
    object-fit: contain;
    position: fixed;
    visibility: hidden;
}
.countdown-img--final { /* img */

}

@media(max-width: 992px) and (orientation: landscape) { /* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
}

/* /////////////////////////////////////////////////// ENDSCREEN */
.endscreen {
    /* background: rgba(0, 13, 26, 0.85); */
/* }
.endingblock { */
    pointer-events: none;
}
.fim-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* /////////////////////////////////////////////////// REPEATSCREEN */
/* .repeatscreen {
    background: rgba(0, 13, 26, 0.85);
} */

.repeat-header {
    height: 55%;
    /* background: red; */
}

.repeat-body {
    height: 45%;
    display: flex;
    align-items: center;
    /* background: orange; */
}

/* .repeat-footer {
    height: 25%;
} */


/* /////////////////////////////////////////////////// INFOSCREEN */
.infoscreen {
}

.info-header {
    min-height: 10%;
    /* background: red; */
}

.info-body {
    /* height: 60%; */
    min-height: 70%;
    display: flex;
    align-items: center;
    /* background: orange; */
}
/* .carousel-item p {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}
.carousel-item ol {
    font-size: 1rem;
    font-weight: 600;
}
.carousel-item ol li::marker {
    color: var(--primary-color);
    font-weight: 600;
}
.info-carousel {
    height: 100%;
} */
/* (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)) */
/* @media(min-width: 768px) {
    .carousel-item p {
        font-size: 2rem;
    }
    .carousel-item ol {
        font-size: 2rem;
    }
}
.carousel-indicators [data-bs-target]{
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: 5px solid #fff;
    background-color: transparent;
} */
.info-footer {
    min-height: 20%;
    /* background: pink; */
}