table{
   white-space: wrap;
}

.resultado_pesquisa{
    width:60%;
    position: fixed;
    margin: auto;
    top:45px;
    left: 50%;
    background-color: #fff;
    border: solid 1px #666; 
    z-index: 99;
    padding:10px
}

.background{
    width:100vw;
    height: 100vh;
    position: fixed;
    top:0px;
    left: 0px;
    z-index: -1;
}
.fundo-login{
    width: 30vw;
    height: 100vh;
    position: fixed;
    top:0px;
    left: 0px;
    background-color: rgba(255,255,255,0.5);
}
.load{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top:0px;
    left:0px;
    background-color: rgba(66,66,66,0.3);
    z-index: 99;
}
.img-load{
    width: 10vw;
    height: 10vw;
    position: fixed;
    top:50%;
    left: 50%;
    margin-top: -5vw;
    margin-left: -5vw;
}
.fundo-menu{
    background-color: #252526;
    width: 290px;
    height: 100vh;
    position: fixed;
    top:0px;
    left:0px;
    overflow-y: auto;
    overflow-x: hidden;
}
.topo{
    width: calc(100vw - 290px);
    position: fixed;
    height: 50px;
    top:0px;
    left: 290px;
    padding: 10px;
    border-bottom: solid 1px #999;
}
.foto-perfil{
    width: 80px;
    height: 80px;
}
.conteudo{
    width: calc(100vw - 290px);
    position: fixed;
    top:50px;
    left: 290px;
    padding: 10px;
    height: calc(100vh - 50px);
    padding: 20px;
    overflow-y: auto;
}
.menu{
    width: 290px;
    background-color: #282C34;
}

.opcao{
    width:100%;
    padding:10px;
    border-left: solid 5px #000;
    cursor: pointer;
  }
  
.opcao_ativa{
    border-left: solid 5px #17A2B8;
    padding-left: 20px;
}

.opcao:hover{
padding-left: 20px;
border-left: solid 5px #17A2B8;
}
.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;
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #17A2B8 #282C34;
  }
  
  /* Works on Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }
  
  *::-webkit-scrollbar-track {
    background: #282C34;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: #17A2B8;
    border-radius: 20px;
    border: 3px solid #282C34;
  }

  .gap-3{
    gap: 15px;
  }

  @media only screen and (max-width: 600px) {
   .fundo-login{
    width:100%
   }
  }