
body{
    background-color: #efefef;
}

.bg-primary{
    background-color: #01005d !important;
}

.btn-primary{
    background-color: #01005d !important;
    border: solid 1px #01005d !important;
}

.btn-outline-primary{
    border: solid 1px #01005d !important;
    color:#01005d !important;
}

.bt_recolhe{
    background-color: #FFF;
    padding: 5px;
    float:right;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    margin-top: 10px;
    margin-right: -15px;
    cursor: pointer;
    z-index: 99;
}

#logo_fit{
    width: 40px;
    z-index: 98;
}

.fundo{
    position: fixed;
    top:0px;
    left:0px;
    z-index: -1;
    opacity: 0.4;
    height: 100vh;
}

.fundo-login{
    width: 400px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -200px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
}

.base{
    width: 100%;
    margin: auto;
    max-width: 1800px;
    height: 100vh;
    background: rgb(219,236,255);
    background: linear-gradient(0deg, rgba(219,236,255,1) 0%, rgba(255,255,255,1) 100%);
    box-shadow: 0px 0px 100px #000000;
    z-index: 98;
}

.topo{
    background-color: #EFEFEF;
    height: 9vh;
    padding-left: 20px;
    padding-right: 20px;
}

.painel{
    height: 7vh;
}

.foto-perfil{
    width: 7vh;
    border-radius: 10px;
}

.load{
    background-color: rgba(219,236,255,0.3);
    height: 90vh;
    width: 80vw;
    z-index: 99;
    position: absolute;
    margin-left: -35px;
    margin-top: -37px;
}

.img-load{
    font-size: 200px;
    position: fixed;
    top:54%;
    left: 58%;
    margin-top: -100px;
    margin-left: -100px;
}

.conteudo{
    background-color: #FEFEFF;
    border-radius: 15px;
    width: 100%;
    box-shadow: 2px 2px 5px #ccc;
    padding: 20px;
}

.toggle > input {
    display: none;
}

.toggle > label {
    position: relative;
    display: block;
    height: 20px;
    width: 44px;
    background: #898989;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle > label:after {
    position: absolute;
    left: -2px;
    top: -3px;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
    content: '';
    transition: all 0.3s ease;
}
.toggle{
  margin-top: 5px;
}
.toggle > label:active:after {
    transform: scale(1.15, 0.85);
}
.toggle > input:checked ~ label {
    background: #6fbeb5;
}
.toggle > input:checked ~ label:after {
    left: 20px;
    background: #179588;
}
.toggle > input:disabled ~ label {
    background: #d5d5d5;
    pointer-events: none;
}
.toggle > input:disabled ~ label:after {
    background: #bcbdbc;
}

.back_etapa{
    padding: 10px;
    background-color: #eee;
    width: 350px;
    border-radius: 8px;
    margin: 5px;
    height: 50vw;
    display: inline-block;
    overflow-y: auto;
}

.card{
    width: calc(100% - 10px);
    background-color: #fff;
    box-shadow: 5px 5px 10px #ccc;
    padding: 10px;
}


*::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}
  
*::-webkit-scrollbar-track {
    background: #ccc;        /* color of the tracking area */
}
  
*::-webkit-scrollbar-thumb {
    background-color: #666;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #ccc;  /* creates padding around scroll thumb */
}