@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}

/* Estilizando a barra de rolagem */

body::-webkit-scrollbar {
    width: 10px !important;               /* width of the entire scrollbar */
    
  }
  
  body::-webkit-scrollbar-track {
    background: #1b1b1b !important;        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #05a081 !important;    /* color of the scroll thumb */
    border-radius: 20px !important;       /* roundness of the scroll thumb */
    border: 3px solid #1b1b1b !important;  /* creates padding around scroll thumb */
  }
/* Fim do estilo da barra. */

.resumo{
    font-size: 11px;
}

#logomenu
{
  width: 130px;
  height: 130px;
  border-style: double;
  border-radius: 50%; 
  border-color: #fff;
  background-color: #1b1b1b;
}

.fotoaliado
{
  width: 80px;
  height: 80px;
  border-style: double;
  border-radius: 50%; 
  border-color: #fff;
  background-color: #05a081;
}


.btnmenu {
    position: absolute;
    top: 2px;
    left: 1px;
    width: 37px;
    text-align: center;
    background: #05a081;
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.4s ease;
}

.btnmenu.click {
    left: 252px;
}

.btnmenu span {
    color: #fff;
    font-size: 26px;
    height: 35px;
    line-height: 35px;
}

.btnmenu.click span:before {
    content: '\f00d';
    color: #fff;
}

@media(min-width: 501px) and (max-width: 5000px){
    .sidebar {
    position: fixed;
    width: 250px;
    height: 100%;
    background: #1b1b1b;
    transition: left 0.4s ease;
    z-index: 999;
    }
}

@media(min-width: 0px) and (max-width: 500px){
    .sidebar {
    position: fixed;
    width: 250px;
    height: 100%;
    left: -250px;
    background: #1b1b1b;
    transition: left 0.4s ease;
    z-index: 999;
    }
}

.sidebar.show {
    left: 0px
}

.sidebar .text {
    color: white;
    font-size: 19px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background: #1b1b1b;
    letter-spacing: 1px
}

nav ul {
    background: #1b1b1b;
    height: 100%;
    width: 100%;
    list-style: none;
    padding-left: 10px
}

nav ul li {
    line-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1)
}

nav ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding-left: 14px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent
}

nav ul li.active a {
    color: #05a081;
    background: #1e1e1e;
    border-left-color: #05a081
}

nav ul li a:hover {
    background: #1e1e1e
}

.feat-show {
    transition: all 0.5s
}

nav ul li.active ul {
    transition: all 0.5s
}

nav ul ul {
    position: static;
    display: none
}

nav ul.show {
    display: block;
    transition: all 0.5s
}

nav ul ul li {
    line-height: 42px;
    border-top: none
}

nav ul ul li a {
    font-size: 12px;
    color: #e6e6e6
}

nav ul li.active ul li a {
    color: #e6e6e6;
    background: #1b1b1b;
    border-left-color: transparent
}

a:hover {
    color: #05a081 !important
}

nav ul ul li a:hover {
    color: #05a081 !important;
    background: #1e1e1e !important
}

nav ul li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 15px;
    transition: transform 0.4s
}


@media(min-width: 0px) and (max-width: 500px){
    .content {
        padding-top: 20px;
        margin: 0px 0px 10px 00px;
        color: #fff;
        z-index: 0;
        }
      }
    
      @media(min-width: 501px) and (max-width: 5000px){
    .content {
        padding-top: 20px;
        margin: 0px 0px 10px 250px;
        color: #fff;
        z-index: 0;
        }
      }

      #enviarbtt{
          background-color: #05a081;
          color: white;
          -webkit-appearance: none;
      }

      .form-control:focus{
        border-color: #05a081 !important;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.0) !important;
      }

      .form-select:focus{
        border-color: #05a081 !important;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.0) !important; 
      }

      .form-select{
          background-color: #1b1b1b;
          color: #05a081;
          -webkit-appearance: none;
      }

      .form-check-input{
          margin-top: 0px;
          width: 38px;
          height: 38px;
          background-color: #1b1b1b;
          border-color: #fff;
      }

      .form-check-input:checked{
        -webkit-appearance: none;
        background-color: #05a081 !important;
        border-color: #05a081 !important;
      }
      .form-check-input:focus{
        -webkit-appearance:none;
        border-color: #05a081 !important;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.0) !important; 
      }

      .form-check-input[type=checkbox] {
        border-radius: 2em !important;
    }

    .form-control{
        background-color: #1b1b1b;
        color: #05a081; 
    }

    .form-control:focus{
        background-color: #1b1b1b;
        color: #05a081; 
    }

    .btnsmith {
        color: #05a081;
        background-color: #1b1b1b;
        border-color: #fff;
       
    }

    .btnsmith:hover{
        color: #05a081 !important;
        background-color: #1b1b1b;
      }

      .btnsmith:focus{
        -webkit-appearance:none;
        border-color: #05a081 !important;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.0) !important; 
      }

      .btnalertasmith {
        color: #f43628;
        background-color: #1b1b1b;
        border-color: #fff;
       
    }

    .btnalertasmith:hover{
        color: #f43628 !important;
        background-color: #1b1b1b;
      }

      .btnalertasmith:focus{
        -webkit-appearance:none;
        border-color: #f43628 !important;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.0) !important; 
      }

      input::placeholder {
        color: #05a081 !important;
      }

      input:disabled {
        background-color: #1b1b1b !important;
      }

      select:disabled {
        background-color: #1b1b1b !important;
      }

      textarea:disabled {
        background-color: #1b1b1b !important;
      }

      .hoje
      {
          width: 100%;
          color: #fff;
          background-color: #a074c4;
          border-radius: 10px;
          padding-left: 30px;
          margin-top: -20px;
          margin-bottom: -20px;
      }
     
      .next
      {
          width: 100%;
          color: #1b1b1b;
          background-color: #68d0fe;
          border-radius: 10px;
          padding-left: 30px;
          margin-top: -20px;
          margin-bottom: -20px;
      }

      .amanha
      {
          width: 100%;
          color: #1b1b1b;
          background-color: #FF7F50;
          border-radius: 10px;
          padding-left: 30px;
          margin-top: -20px;
          margin-bottom: -20px;
      }

      .vencida
      {
          width: 100%;
          color: #fff;
          background-color: #f43628;
          border-radius: 10px;
          padding-left: 30px;
          margin-top: -20px;
          margin-bottom: -20px;
      }

      .concluidas
      {
          width: 100%;
          color: #fff;
          background-color: #05a081;
          border-radius: 10px;
          padding-left: 30px;
          margin-top: -20px;
          margin-bottom: -20px;
      }

      /* Auto preencimento do meu jeito! */
      input:-webkit-autofill,
      input:-webkit-autofill:hover, 
      input:-webkit-autofill:focus,
      textarea:-webkit-autofill,
      textarea:-webkit-autofill:hover
      textarea:-webkit-autofill:focus,
      select:-webkit-autofill,
      select:-webkit-autofill:hover,
      select:-webkit-autofill:focus {
    -webkit-text-fill-color: #05a081 !important;
    transition: background-color 5000s ease-in-out 0s;
    }

    .mes{
        border: 1px;
        border-color: #05a081;
        border-color: #05a081;
        border-radius: 10px;
        border-style: double;
    }

    #exampleFormControlTextarea1{
        resize: none  !important; /* impede que o próprio usuário altere o tamanho do textarea */
        overflow-y: auto !important;
        width: 100% !important;
        height: 100% !important;
        border: 1px !important;
        border-color: #05a081 !important;
        border-radius: 10px !important;
        border-style: double !important;
        margin-left: 10px;
        margin-right: 10px;
        /* overflow-x:hidden !important;
        overflow-y:hidden !important;
         */
    }

    .lado{
        margin: 0px 5px 10px -10px !important;
        float: left !important;
        width: 40% !important;
    }

    .lomouse{
        cursor: pointer;
    }

    @media(min-width: 0px) and (max-width: 500px){
        .lado {
            width: 100% !important;
            }
          }

    .disc{
        font-size: 12px;
        margin-top: 20px;
        padding-left: 30px;
    }

    .nolink, a:link, a:visited{
        text-decoration: none;
        color: white;
    }

    .nolink, a:hover{
        text-decoration: none;
        color: white;
    }

    .nolink, a:active{
        text-decoration: none;
        color: white;
        
    }

    .x{
        margin-top: 20px !important;
        background-color: #ee3a1f;
        float: right;
        width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%;
        align-items:center;
        text-align: center;
    }

    .lapis{
        position: relative;
        left: -40px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        align-items: center;
        text-align: center;
    }


    .copiaIdAlly{
            background-color: #1b1b1b;
            color: #05a081;
            border: none !important;
            outline:none !important;
            text-align: center !important;
    }

    .sobedata{
        font-size: 11px;
        margin-top: -2px;
    }

    .botaozin{
        background-color: green !important;
        font-size: 12px !important;
        width: 58px !important;
        border-radius: 10px !important;
    }

    .botaozinbad{
        background-color: red !important;
        font-size: 12px !important;
        width: 58px !important;
        border-radius: 10px !important;
    }

    .legenda{
        font-size: 11px !important;
        float: left;

    }

    .barraderolagem{
        overflow: auto !important;
    }
    .barraderolagem::-webkit-scrollbar {
        width: 0px;
    }

    .subtaskoins{
        margin-top: -7px;
        font-size: 11px;
    }

    .titulohora{
        margin-top: -10px;
    }
    


    @media(min-width: 0px) and (max-width: 500px){
        .lapis {
            left: 175px !important;
            bottom: 95px !important;
            }
          }



       /* BARRA DE ROLAGEM TEXTAREA    */
        textarea::-webkit-scrollbar {
            width: 2px;
        }
        
        textarea::-webkit-scrollbar-thumb {
          background-color: #05a081;
        }
        /* FIM DA BARRA DE ROLAGEM PERSONALIZADA */
   

        @media(min-width: 501px) and (max-width: 50000000000000000000px){
            .tarefaIndex {
            width: 49%;
              }
        }

        @media(min-width: 501px) and (max-width: 1400px){
            .recorrente {
                position: relative;
                left: 23px;
              }
        }

        @media(min-width: 1401px) and (max-width: 50000000000000000000px){
            .recorrente {
                position: relative;
                left: 25px;
              }
        }

        
        @media(min-width: 0px) and (max-width: 500px){
            .myspace {
                height: 41px;
              }
        }

       
            .myspace2 {
                height: 3px;
              }

    @media(min-width: 1401px) and (max-width: 50000000000000000000px){
        .ps16{
        width: 18%;
        height: 28px;
        float: left;
        margin-right: 10px;
        font-size: 12px;
        line-height: 1 !important;
    }    
}

    @media(min-width: 0px) and (max-width: 1400px){
        .ps16{
        width: 100%;
        height: 28px;
        margin-right: 10px;
        font-size: 12px;
        line-height: 1 !important;
    }
    }

    @media(min-width: 1401px) and (max-width: 50000000000000000000px){
        .ps16adm{
        width: 14%;
        height: 28px;
        float: left;
        margin-right: 10px;
        font-size: 12px;
        line-height: 1 !important;
    }    
}

    @media(min-width: 0px) and (max-width: 1400px){
        .ps16adm{
        width: 100%;
        height: 28px;
        margin-right: 10px;
        font-size: 12px;
        line-height: 1 !important;
    }
    }

     .psbt{
        height: 28px !important;
        font-size: 12px !important;
        line-height: 1 !important;
        margin-top: 27px;
    }

    .psbtrel{
        height: 28px !important;
        font-size: 12px !important;
        line-height: 1 !important;
        float: left!important;
    }


    @media(min-width: 1401px) and (max-width: 50000000000000000000px){
        .ps16rel{
        width: 45%;
        height: 28px;
        float: left;
        margin-right: 10px;
        font-size: 12px;
        line-height: 1 !important;
    }
}
    
    @media(min-width: 1401px) and (max-width: 50000000000000000000px){
        .ps16reladm{
        width: 30%;
        height: 28px;
        float: left;
        margin-right: 10px;
        font-size: 12px;
        line-height: 1 !important;
    }
}
 

    @media(min-width: 1401px) and (max-width: 5000000000px){.pstitulo{
        background-color: #1e1e1e;
        border-color: none;
        height: 28px !important;
        font-size: 12px !important;
        color: #05a081;
        width: 18%;
        height: 28px;
        float: left;
        margin-right: 10px;
        font-size: 12px;
        padding-top: 10px;
    }
}

@media(min-width: 1401px) and (max-width: 5000000000px){.pstituloadm{
    background-color: #1e1e1e;
    border-color: none;
    height: 28px !important;
    font-size: 12px !important;
    color: #05a081;
    width: 14%;
    height: 28px;
    float: left;
    margin-right: 10px;
    font-size: 12px;
    padding-top: 10px;
}
}

@media(min-width: 0px) and (max-width: 1400px){.pstituloadm{
    display: none;
}
}

.pstitulorel{
    background-color: #1e1e1e;
    border-color: none;
    height: 28px !important;
    font-size: 12px !important;
    color: #05a081;
    width: 45%;
    height: 28px;
    float: left;
    margin-right: 10px;
    font-size: 12px;
    padding-top: 10px;
}

.pstituloreladm{
    background-color: #1e1e1e;
    border-color: none;
    height: 28px !important;
    font-size: 12px !important;
    color: #05a081;
    width: 30%;
    height: 28px;
    float: left;
    margin-right: 10px;
    font-size: 12px;
    padding-top: 10px;
}


.progress-container-index {
    width: 100%;
    background-color: lightgray;
    height: 15px;
    position: relative;
}

.progress-bar-index {
    background-color: #198754;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    animation: fillProgress-index 4s ease forwards;
}

@keyframes fillProgress-index {
    from {
        width: 0;
    }
    to {
        width: var(--progress-width, 0%);
    }
}

.progress-text-index {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.sobup{
    margin-top: -12px;
}


@media(min-width: 0) and (max-width: 1400px){.pstitulo{
    display: none;
}
}



@media(min-width: 0) and (max-width: 1400px){.pstitulorel{
    display: none;
}
}

@media(min-width: 0) and (max-width: 1400px){.pstituloreladm{
    display: none;
}
}


    @media(min-width: 0px) and (max-width: 1400px){.pstitulomobile{
        background-color: #1e1e1e;
        border-color: none;
        height: 28px !important;
        font-size: 12px !important;
        color: #05a081;
        width: 100%;
        height: 28px;
        margin-right: 10px;
        font-size: 12px;
        padding-top: 10px;
    }
}


@media(min-width: 1401px) and (max-width: 500000px){.pstitulomobile{
    display: none;
}
}

@media(min-width: 0px) and (max-width: 1400px){.pstitulomobileadm{
    background-color: #1e1e1e;
    border-color: none;
    height: 28px !important;
    font-size: 12px !important;
    color: #05a081;
    width: 100%;
    height: 28px;
    font-size: 12px;
    padding-top: 10px;
    margin-right: 10px;
}
}


@media(min-width: 1401px) and (max-width: 500000px){.pstitulomobileadm{
display: none;
}
}



      