/* Global styles for the Fbtc application */
.spinner {
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    top: calc( 50% - ( 40px / 2) );
    right: calc( 50% - ( 40px / 2) );
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.btn-play {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
}

    .btn-play .fa-play {
        color: white !important;
        font-size: xxx-large !important;
    }

    .btn-play:hover .fa-play {
        color: #646C9A !important;
    }

    .btn-play:focus .fa-play {
        color: #646C9A !important;
    }

    .btn-play:hover {
        box-shadow: 0 0 0 .25rem #646C9A !important;
        background-color: white !important;
    }

    .btn-play:focus {
        box-shadow: 0 0 0 .25rem #646C9A !important;
        background-color: white !important;
    }

.cards-conteudo .col {
    margin-bottom: 1.25em;
}

.historico-associacao .row {
    padding: 0 1rem 0 1rem !important;
}

.selo-certificacao {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 40px;
    transition: all 0.2s;
    transform: translatex(calc(var(--bs-gutter-x) * -.5));
}

.scroll-telefone-processo-seletivo {
    overflow-y: scroll !important;
    max-height: 105px !important;
}

@media(max-width: 768px) {
    .scroll-telefone-processo-seletivo {
        overflow-y: scroll !important;
        max-height: 190px !important;
    }
}

.scroll-supervisor-processo-seletivo {
    overflow-y: scroll !important;
    max-height: 105px !important;
}

@media(max-width: 768px) {
    .scroll-supervisor-processo-seletivo {
        overflow-y: scroll !important;
        max-height: 280px !important;
    }
}


.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #fcaf17;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Carregando");
    }

@media(min-width:768px) {
    .conteudo-exclusivo-placeholder{
        width: 100%;
        height: 398px !important;
    }
}

@media(max-width:769px) {
    .conteudo-exclusivo-placeholder{
        width: 100%;
        height: 322px !important;
    }
}