/* Tela Inicial Vagas */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

footer {
    margin-top: auto;
}

.border-custom-md-bottom {
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 767px) {
    /* card lista de vagas no mobile */
    .containerListVagas {
        height: auto !important;
        max-height: none !important;
        padding: 0 !important;
    }
    
    .scrollVagas {
        height: auto !important;
    }
    
    .scroll_list_vagas {
        height: auto !important;
        overflow-y: visible !important;
    }
    
    .selectedJob {
        height: auto !important;
    }
    
    .details-mobile-content {
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    .containerCardVaga {
        margin-bottom: 1rem;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075) !important;
        border-radius: 0.5rem !important;
        border: 1px solid #dee2e6; 
    }
    .border-custom-md-bottom {
        border-bottom: none;
    }
} 

.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select > .dropdown-toggle {
    background-color: #fff;
}

.containerListVagas {
    max-width: 1240px;
    background-color: white;
    height: 750px;
    max-height: 750px;
}

.scrollVagas {
    height: 90vh;
}

.scroll_list_vagas {
    width: 100%;
    height: 700px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #F0F0F0 transparent;
}


.selectedJob {
    width: 100%;
    height: 700px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #F0F0F0 transparent;
}


/* Card das vagas */
.containerCardVaga {
    transition: background-color 0.2s ease-in-out;
}

.containerCardVaga:hover {
    cursor: pointer;
    background-color: #eeecec !important;
}

.boxIconVaga img {
    width: 95%;
}

@media (max-width: 767px) {
    .boxIconVaga img {
        width: 14%;
    }
}

.boxIconVagaDetails img {
    width: 70%;
}

.titleVaga {
    font-size: 17px !important;
    font-weight: bold;
}

.contentCardVaga span {
    font-size: 14px;
}


/* Detalhes das vagas */
.details-mobile-content {
    height: 40rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #F0F0F0 transparent;
}


.containerDetailsVagas {
    border-radius: 6px;
    width: 100%;
}

.info_vaga {
    font-size: 1rem;
    font-weight: bold;
}

.content_vaga {
    font-size: 0.95rem;
    line-height: 3px;
}

.text-favoritas {
    color: #e98205;
}

/* Estilo Card Loading */
@keyframes colorTransaction {
    0% {
        background-color: #f0f0f0; /* cor inicial */
    }
    50% {
        background-color: #dcdcdc; /* cor intermediária */
    }
    100% {
        background-color: #f0f0f0; /* cor final */
    }   
}

.containerBoxLoading {
    width: 100%;
    height: 90px;
    border-radius: 6px;
    animation: colorTransaction 2s infinite;
}