@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  /* // Cores principais */
  --cor1: #007bf7;
  --cor2: #143755;
  --cor3: #236298;
  --cor4: #1c4b75;
  --cor5: #09ff00;
  --cor6: #f1f1f1;
  --cor7: #0B233B;

  /* // Paleta auxiliar */
  --cor11: #bee4e7;
  --cor12: #d3bedd;
  --cor13: #9ddbf0;
  --cor14: #fbf6bc;
  --cor15: #f4cfe1;
  --cor16: #f8c9d3;

  --aberto: #c1c1c1;
  --andamento: #dee499;
  --atendido: #97de96;
  --cancelado: #e38888;
  --aprovado: #458fcc;

  --icons: #9c9c9c;
  --span: #000;
  --status: #808080;
  --bg: #eee;

  /* // Dimensões padrão */
  --aside-width: 15rem;
  --transition: 0.3s ease;
  --radius: 0.5rem;
  --shadow: 0 0 1rem #0003;
  --wd: 100%;
  --grid: 50% 50%; 
  --mw: 20%;
  --tc: 12rem;
}

/* // ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}
& strong{
  font-weight: 500;
}
& span{
  color: var(--span);
}

body {
  font-size: 1.1em;
  background-color: var(--bg);
  color: #111;
  /* // overflow-x: hidden; */
}

  
.termica{width: 10cm;height: 11cm;}
.a6{width: 10cm;height: 13cm;}
.a5l{width: 21cm;height: 13.5cm;}
.a5{width: 14.5cm;height: 20cm;}
.a4{width: 21cm;height: 28cm;}
/* // ============================================= */
header {
  position: fixed;
  width: calc(100% - var(--tc));
  top: 0;
  left: var(--tc);
  z-index: 110;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 3.5rem;
  background: var(--cor7);
  box-shadow: 0 2px 8px #0002;
  transition: background var(--transition);
  color: #9c9c9c;
  & >div{
    display: flex;
    align-items: center;    
    & >span{
      color: var(--icons);
      display: flex;
      align-items: center;
      transition: .3s;
      height: 3.5rem;
      padding: 0 1rem;
      position: relative;
      & i{
        font-size: 1.2em;
        margin-left: .3rem;
      }
    }
    & >button{
      width: 3.5rem;
      height: 3.5rem;
      color: var(--icons);
      border: 0;
      transition: .3s;
      background-color: transparent;
      position: relative;
      & .sinal{
        position: absolute;
        display: inline-block;
        right: .5rem;
        top: .5rem;
        width: .5rem; height: .5rem;
        border-radius: 50%;
        background-color: red;
        animation: piscar 2s infinite;
      }
    }
    & >span:hover, button:hover{      
      color: #fff;      
      background-color: var(--cor3);
      & .oculto{
        display: block;        
      }
    }
    & .oculto{
      position: absolute;
      display: none;
      top: 3.5rem;
      right: 0;
      & button, a{
        text-decoration: none;
        display: flex;
        align-items: center;
        width: 10rem;
        background-color: var(--cor3);
        color: #fff;
        text-align: left;
        padding: 0 1rem;
        height: 3rem;
        border: 0;
        & i{
          margin-right: .7rem;
          font-size: 1.2em;
        }
      }
      & button:hover, a:hover{
        background-color: var(--cor2);
      }
    }
  }
  & .caminho{
      & .logo{
        width: 1.7rem;
        height: 1.7rem;
        fill: #909294;
        margin-right: .3rem;
      }
      display: flex;
      align-items: center;
      & a{
        text-decoration: none;
        color: #909294;
      }
      & a:hover{
        color: #fff;
      }
      & i{
        font-size: .7em;
        margin: 0 .3rem;
      }    
    }
}
nav{
  display: none;
}
aside{
  position: fixed;
  top: 0;
  left: 0;
  width: var(--tc);
  height: 100vh;
  background-color: var(--cor2);
  z-index: 114;
  
  & a{
    width: var(--tc);
    height: 3rem;
    display: flex;
    align-items: center;
    color: var(--icons);
    transition: .3s;
    text-decoration: none;
    & svg, i{
      width: 2rem;
      height: 2rem;
      margin-right: .5rem;   
      margin-left: 1rem;
      color: var(--icons);
      fill: var(--icons);
      transition: .3s;
    }
    & span{
      color: var(--icons);
    }
  }
  & a:hover{
    color: #fff;
    background-color: var(--cor3);
    & span, svg, i{
      color: #fff;
      fill: #fff;
    }
  }
}


/* // ============================================= */
main{
  width: calc(100% - var(--tc));
  margin-left: var(--tc);
  margin-top: 4rem;
  & .breadcrumbs{
    padding: .5rem 2rem;
    color: #b1b1b1;
    & a{
      color: gray;
      font-size: 1em;
      text-decoration: none;
      transition: .3s;
    }
    & a:hover{
      color: #4e4e4e;
    }
  }
  & .contain{
    & .wellcome{
      display: grid;
      place-items: center;
      height: 30vh;
      text-align: center;
    }
    & .atalhos{
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      & a{
        display: flex;
        width: 15rem;
        height: 5rem;
        box-shadow: var(--shadow);
        text-decoration: none;
        margin: 1rem;
        transition: .3s;
        & div, span{
          display: grid;
          place-items: center;
        }
        & div{
          width: 5rem;
          height: 5rem;
          background-color: #fff;
          & i{
            font-size: 2em;
            color: var(--cor2);
          }
        }
        & span{
          width: 10rem;
          height: 5rem;
          background-color: var(--cor2);
          color: #fff;
          font-weight: 400;
        }
      }
      & a:hover{
        & span{
          background-color: var(--cor4);
        }
      }
      & #sets{
        display: none;
        position: absolute;
        top: -1.5rem;
        right: 5rem;
        border: 0;
        background-color: transparent;
        font-size: 1.2em;
        padding: .2rem;
        border-radius: 50%;
        transition: .3s;
      }
      & #sets:hover{
        box-shadow: var(--shadow);
      }
    }
    & .atalhos:hover{
      & #sets{
        display: inline;
      }
    }
    & .telas{
      & .cabecalho{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;    
        & div{
          display: flex;
          align-items: center;
        }    
      }
      & .flex{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        & >div{
          flex: 1;
          min-width: 400px;
          width: var(--wd);
          padding: 1rem;
          margin: .5rem;
          box-shadow: var(--shadow);
          & >p{
            margin-bottom: .5rem;
          }
        }
      }
    }
    & .tabela{
      & >div, >button{
        width: 100%;
        padding: .5rem 1.5rem;
        display: grid;
        grid-template-columns: var(--grid);
        align-items: center;
        border: 0;
        text-align: left;
        font-size: 1em;
        & >div{
          padding: 0 .3rem;
          & i, button{
            font-size: 1em;
          }
        }
        & >div:last-child(){
          text-align: right;
        }
        & .hashtag{
          display: inline-block;
          padding: .3rem .5rem;
          background-color: #cec1c1;
          margin-right: .3rem;
          border-radius: .5rem;
          font-size: .6em;
          font-weight: 400;
        }
        & .status{
          display: block;
          width: 1rem;
          height: 1rem;
          border-radius: 50%;
        }
        & a, button{
          text-decoration: none;
          border: 0;
          background-color: transparent;
          color: var(--cor2);
          padding: 0 .3rem;
        }
      }
      & >div:nth-child(1){
        color: gray;
      }
      & >div:nth-child(even), >button:nth-child(even){
        background-color: #fff;
      }
      & >button{
        cursor: pointer;
      }
      & >button:hover{
        background-color: var(--cor13);
      }
    }
    & .paginas{
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 2rem;
      & a{
        display: grid;
        place-items: center;
        text-decoration: none;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        margin: 0 .5rem;
        border: 0;
        background-color: #fff;
        box-shadow: var(--shadow);
        transition: .3s;
        color: #000;
      }
      & a:hover{
        background-color: var(--cor1);
        color: #fff;
      }
      & .active{
        background-color: var(--cor5);
      }
      & p{
        color: gray;
      }
    }
  }
  & .chatia{
    display: flex;
    padding: 0 1rem;
    & .side{
      width: 15rem;
      height: calc(100vh - 5rem);
      & a{
        display: flex;
        padding: .5rem;
        background-color: var(--aprovado);
        border-radius: .5rem;
        margin-bottom: .5rem;
        text-decoration: none;
        color: #fff;
        transition: .3s;
        align-items: center;
        & p{
          margin-left: .5rem;
        }
      }
      & a:hover{
        background-color: var(--cor1);
      }
    }
    & .chat{
      width: calc(100% - 16rem);
      margin-left: 1rem;
      height: calc(100vh - 5rem);
      & .response{
        width: 100%;
        height: calc(100% - 4rem);
        margin-bottom: 1rem;
        overflow-y: auto;
        & .well{
          display: grid;
          place-items: center;
          width: 100%;
          height: 100%;
          & h1{
            background: linear-gradient(45deg, var(--aprovado), var(--cancelado), var(--cor3));
            -webkit-background-clip: text;
            color: transparent;
          }
        }
        & .msg{
          & >div{
            width: 100%;
            display: flex;
            & >div{
              width: fit-content;
              max-width: 70%;
              margin: .5rem;
              padding: .5rem;
              box-shadow: var(--shadow);
            }
          }
          & .user{
            justify-content: flex-end;
            & div{
              background-color: var(--cor11);
              border-radius: .5rem  .5rem 0 .5rem;
            }
          }
          & .ia{
            justify-content: flex-start;
            & div{
              background-color: var(--cor12);
              border-radius: .5rem  .5rem  .5rem 0;
            }
          }
          & .space{
            padding: 1rem;
            margin-right: 1.5rem;
          }
        }
      }
      & .input{
        display: flex;
        align-items: center;
        flex: 1;
        width: 100%;
        height: 3rem;
        background-color: #fff;
        box-shadow: 0 0 1rem #0003;
        border-radius: 3rem;
        padding: .3rem;
        & input{
          width: 100%;
          padding: .5rem;
          margin: .3rem;
          font-size: 1.1em;
          border: 0;
        }
        input:focus {
            border-color: transparent; /* cor que você quiser */
            outline: none;
            box-shadow: 0;
            background-color: transparent;
        }
        & button{
          width: 2.5rem;
          height: 2.5rem;
          display: grid;
          place-items: center;
          font-size: 1.1em;
          margin: .3rem;
          border: 0;
          cursor: pointer;
          transition: .3s;
          border-radius: 50%;
        }
        & button:hover{
          background-color: var(--aprovado);
          color: #fff;
        }
      }
    }
  }
  & .forms{
    width: 60%;
    min-width: calc(500px - 5rem);
    max-width: 40rem;
    margin-left: 50%;
    background-color: #fff;
    border-radius: .8rem;
    box-shadow: var(--shadow);
    transform: translate(-50%, 0);
    padding: 1rem;
    & .title{
      padding: .5rem;
      margin-bottom: .5rem;
      text-align: center;
      font-weight: 400;
      font-size: 1.2em;
    }
    & .inputs{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      input, textarea, select{
        width: 100%;
        padding: .5rem;
        box-shadow: var(--shadow);
        border: .1rem solid transparent;
        border-radius: .5rem;
        font-size: 1em;
        margin: 0 .5rem;
      }
      & button{
        padding: .5rem;
        background-color: var(--aprovado);
        border: none;
        box-shadow: var(--shadow);
        border-radius: .5rem;
        color: #fff;
        font-size: 1.2em;
      }
      .is-invalid{
        border: .1rem solid red;
      }
      & textarea{
        min-height: 5rem;
      }
    }    
    & .buttons{
      display: flex;
      justify-content: center;
      & button{
        display: flex;
        align-items: center;
        padding: .5rem 1.5rem;
        background-color: #92b3ce;
        border: 0;
        box-shadow: var(--shadow);
        border-radius: .5rem;
        font-size: 1em;
        font-weight: 400;
        transition: .3s all;
        cursor: pointer;
        margin: .5rem;
      }
      & button:hover{
        background-color: #4a8fc7;
        color: #fff;
      }
    }
    & .listProds{
      min-height: 5rem;
      display: flex;
      justify-content: center;
      & >div{
        position: relative;
        width: 7rem;
        height: 4rem;
        display: flex;
        flex-wrap: wrap;        
        align-items: center;
        box-shadow: var(--shadow);
        border-radius: .8rem;
        margin: 0 .5rem;
        & img{
          padding: .25rem;
          width: 3.5rem;
          height: 3.5rem;
          object-fit: cover;
        }
        & >div{
          width: 3rem;
          text-align: center;
        }
        & button{
          display: none;
          position: absolute;
          top: -0.5rem;
          right: -0.5rem;
          width: 1.5rem;
          height: 1.5rem;
          border-radius: 50%;
          background-color: rgba(255,0,0,.8);
          color: #fff;
          place-items: center;
          border: 0;
          box-shadow: var(--shadow);
          transition: .3s all;
        }        
      }
      & div:hover button{
        display: grid;
      }
    }
    
  }
  & .resposta_input{
      position: absolute;
      width: 100%;
      left: 0;
      top: 4.5rem;
      & button, div{
        display: block;
        margin: auto;
        width: 90%;
        margin-bottom: .5rem;
        background-color: var(--cor11);
        padding: .5rem;
        text-align: center;
        border: 0;
        box-shadow: var(--shadow);
        cursor: pointer;
      }
      & span{
        display: block;
        margin: auto;
        width: 90%;
        margin-bottom: .5rem;
        background-color: var(--cor16);
        padding: .5rem;
        text-align: center;
        border: 0;
        box-shadow: var(--shadow);
      }
    }
  & .filter{
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    & input, select{
      flex: 1;
      padding: .5rem;
      border: 0;
      border-radius: .3rem 0 0 .3rem;
      box-shadow: var(--shadow);
      font-size: 1em;
      margin: .5rem;
    }
  }
  & .acompanhe{
    & >div{
      display: flex;
      align-items: center;
      margin-bottom: .9rem;
      & i{
        font-size: 1em;
        margin-right: .5rem;
      }
    }
  }
  & .checks{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    & label{
      flex-grow: 1;
      display: flex ;
      align-items: center;
      padding: 0 .8rem;
      min-width: 8rem;
      margin: .3rem;
      height: 2.5rem;
      background-color: var(--cor12);
      box-shadow: var(--shadow);
      font-weight: 400;
      transition: .3s;
      font-size: .9em;
      cursor: pointer;
      & span{
        display: flex;
        align-items: center;
        & .check{
          display: grid;
          place-items: center;
          width: 1.3rem;
          height: 1.3rem;
          margin-right: .5rem;
          border-radius: 50%;
          box-shadow: 3px 3px 5px #76598a,
            -3px -3px 5px #ffffff;
          & svg, i{
            display: none;
          }
        }
      }
    }
    & label:hover{
      background-color: var(--cor13);
    }
    & input[type="checkbox"]:checked + label {
      background-color: var(--cor11);
      & .check{
        box-shadow: inset 3px 3px 5px #416f72,
            inset -3px -3px 5px #92bec0;
      }
      & svg, i{
        display: block;
      }
    }
    & input{
      display: none;
    }
  }
  & .listaExiste{
    padding: 1.5rem;
    text-align: center;
    & >div{
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 2rem;
      flex-wrap: wrap;
      & >div{
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #bbdcce;
        padding: .5rem;
        box-shadow: var(--shadow);
        max-width: 20rem;
        border-radius: .3rem;
        margin: .5rem;
        & img{
          width: 5rem;
          height: 5rem;
          border-radius: .5rem;
          object-fit: cover;
          margin-right: .5rem;

        }
        & span{
          font-size: 1.2em;
          font-weight: 500;
        }
        & button{
          display: block;
          position: absolute;
          right: -.8rem;
          top: -.8rem;
          width: 1.6rem;
          height: 1.6rem;
          background-color: red;
          border: 0;
          color: #fff;
          border-radius: 50%;
          display: none;
          transition: .3s;
          cursor: pointer;
        }
      }
      & >div:hover button{
        display: block;
      }
    }
  }
}
/* // ============================================= */
.aviso{
  width: 90%;
  margin: auto;
  background-color: rgb(214, 214, 165);
  padding: 1.5rem;
  border-radius: .8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);

}
.btn{
  padding: .5rem 1rem;
  margin: 0 .3rem;
  border: 0;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-size: .9em;
  cursor: pointer;
  text-decoration: none;
  & p{
    margin-left: .5rem;
  }
  & svg, i{
    width: 1.3rem;
    height: 1.3rem;
  }
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: .3s;
    pointer-events: none;
    & svg, i, p{
      z-index: 99;
    }
}

.btn:hover::after {
    background: rgba(0,0,0,.3); 
}
.btn-anexar{
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  margin-top: .5rem;
  border-radius: .5rem;
  box-shadow: var(--shadow);
  & i{
    font-size: 1.3em;
  }
}
/* ----------------------------- */
.sucess{
  background: linear-gradient(45deg, #4a8fc7, #326188);
  color: #fff;
}
.active{
  background: linear-gradient(45deg, #67c74a, #438130);
  color: #fff;
}
.cancell{
  background: linear-gradient(45deg, #cc3c3c, #832727);
  color: #fff;
}
.white{
  & svg, i{
    fill: #fff;
    color: #fff;
  }
}
/* ----------------------------- */
.MANUTENCAO{background: linear-gradient(#ffeb7d, #e4cd4d);}
.SUPRIMENTO{background: linear-gradient(#b9ffb3, #87de87);}
.COMPRAS{background: linear-gradient(#a6f9ff, #73d8df);}
.ENVIO{background: linear-gradient(#ffd298, #dca55e);}
.SUBSTITUICAO{background: linear-gradient(#f6b2ff, #d36de0);}
.ASSISTENCIA{background: linear-gradient(#d28ab3, #9f6485);}
.INSTALACAO{background: linear-gradient(#b0b9d1, #9199af);}
.RECOLHIMENTO{background: linear-gradient(#e0a4a4, #b88484);}
/* ----------------------------- */
.aberto{background: #888888;}
.andamento{background: #f3f352;}
.atendido{background: #8dec55;}
.cancelado{background: #f35252;}
.aprovado{background: #529df3;}
/* ----------------------------- */
.cSucess{color: #73d8df; & svg{fill: #73d8df;}}
.cActive{color: #8dec55; & svg{fill: #8dec55;}}
.cCancell{color: #f35252; & svg{fill: #f35252;}}
/* // ============================================= */
footer{
  display: grid;
  place-items: center;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  width: calc(100% - var(--tc));
  margin-left: var(--tc);
  & a{
    text-decoration: none;
    color: var(--cor2);
    font-weight: 400;
    transition: .3s;
  }
  & a:hover{
    color: var(--cor5);
  }
}
.tooltip_stts {
  position: relative;
  cursor: pointer;
}

.tooltip_stts:hover::after {
  content: attr(data-title);
  position: absolute;
  display: flex;
  align-items: center;
  top: -1rem;
  right: 2rem;
  padding: 0 1.5rem;
  background: var(--cor3);
  color: #fff;
  height: 3rem;
  font-size: 14px;
  white-space: nowrap;
  z-index: 10;
  transition: .3s all;
  box-shadow: var(--shadow);
  border-radius: .5rem;
}

/* // ============================================= */
.toast{
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 211;
  & .msg{
    padding: .5rem 1.5rem;
    margin-top: -50rem;
    animation: alert 5s linear;
    border-radius: .5rem;
    
  }
  & .erro{
    background-color: #cf8e8e;
  }
  & .alert{
    background-color: #cfae8e;
  }
  & .confirm{
    background-color: #8ecf93;
  }
}
.modal{
  display: none;
  width: 60%;
  min-width: calc(500px - 3rem);
  max-width: 800px;
  max-height: calc(100vh - 7rem);
  position: fixed;
  top: 50vh;
  left: calc(50vw + 1.5rem);
  background-color: #fff;
  border-radius: .3rem;
  box-shadow: var(--shadow);
  transform: translate(-50%, -48%);
  overflow: hidden;
  z-index: 200;
  & .sobe{
    position: relative;
    height: auto;
    & h2{
      text-align: center;
    }
    & span{
      display: block;
      padding: 0 .8rem;
      text-align: center;
    }
  }
  & .erro{
    padding: 1rem;
    background-color: #fff45a;
    text-align: center;
  }
  & .sair{
    position: fixed;
    top: .5rem;
    right: .5rem;
  }
  & .title{
    margin: 0 1rem;
    margin-top: 1rem;
    font-size: 1.3em;
  }
  & .formulario{
    margin: 1.5rem;
    & .title{
      text-align: center;
      font-size: 1.2em;
      margin-bottom: 1rem;
    }
    & .inputs{
      display: flex;
      flex-wrap: wrap;
    }
    & input, select, textarea{
      flex: 1;
      width: 100%;
      padding: .5rem;
      box-shadow: var(--shadow);
      border: .1rem solid transparent;
      border-radius: .5rem;
      font-size: 1em;
      margin-bottom: 1rem;
      margin: .5rem;
    }
    .is-invalid{
      border: .1rem solid red;
    }
    & button{
      display: block;
      padding: .5rem 1.5rem;
      background-color: #92b3ce;
      border: 0;
      box-shadow: var(--shadow);
      border-radius: .5rem;
      font-size: 1em;
      font-weight: 400;
      transition: .3s all;
      margin: auto;
    }
  }
  & .tabela{    
    overflow-y: auto;
    max-height: 10rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
    & >div{
      display: grid;
      padding: .3rem 1.5rem;
      grid-template-columns: var(--grid);
    }
    & >div:nth-child(1){
      color: gray;
    }
    & >div:nth-child(even){
      background-color: #eee;
    }
  }
  & .acoes{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    & >div{
      display: flex;
      flex-wrap: wrap;
      & button, a{
        display: flex-;
        font-size: 1em;
        text-decoration: none;
        color: #000;
        flex: 1;
        width: 100%;
        padding: .5rem 1rem;
        margin: .5rem;
        box-shadow: var(--shadow);
        min-width: 15rem;
        border: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        & svg, i{
          margin-right: .5rem;
          color: var(--cor2);
        }
      }
    }
  }
}

.formulario{
    margin: 1.5rem;
    & .title{
      text-align: center;
      font-size: 1.2em;
      margin-bottom: 1rem;
      & span{
        background-color: var(--cor1);
        color: #fff;
        padding: 0 .5rem ;
        border-radius: .5rem;
      }
    }
    & .inputs{
      display: flex;
      flex-wrap: wrap;
    }
    & .radio{
        margin-bottom: 1rem;
        & input{
            width: auto;
        }
    }
    & input, select, textarea{
      flex: 1;
      width: 100%;
      padding: .5rem;
      box-shadow: var(--shadow);
      border: .1rem solid transparent;
      border-radius: .5rem;
      font-size: 1em;
      margin-bottom: 1rem;
      margin: .5rem;
    }
    & .inputerror{
        border: .1rem solid red;
    }
    & button{
      display: block;
      padding: .5rem 1.5rem;
      background-color: #92b3ce;
      border: 0;
      box-shadow: var(--shadow);
      border-radius: .5rem;
      font-size: 1em;
      font-weight: 400;
      transition: .3s all;
      margin: auto;
    }
}
.checkout{
    display: flex;
    justify-content: space-between;
    align-items: start;
    & >div{
        width: calc(33% - 1rem);
        margin: 0 .5rem ;
        & >div{
            background-color: #fff;
            padding: 1rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
        }
    }
    & input[type="radio"]{
        min-width: 1rem;
        width: 1rem;
    }
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-= */
@keyframes alert{
  0%{
    margin-top: -5rem;
  }
  10%{
    margin-top: 4rem;
  }
  90%{
    margin-top: 4rem;
  }
  100%{
    margin-top: -5rem;
  }
}
.fundoTodo{
  display: none;
  top: 0; left: 0;
  z-index: 150;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #bdb0b07b;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%); /* Safari */
}
.notificacoes{
  position: fixed;
  top: 3.5rem;
  right: 0;
  width: 0rem;
  height: calc(100vh - 3.5rem);  
  background-color: #9db3cc7b;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%); /* Safari */
  z-index: 110;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--shadow);
  transition: .3s width;
  & >button{
    display: flex;
    align-items: center;
    width: 19rem;
    margin: auto;
    border-radius: .7rem;
    margin-top: .5rem;
    background-color: #fff;
    padding: .3rem;
    border: 0;
    text-align: left;
    box-shadow: var(--shadow);
    transition: .3s;
    & svg, i{
      margin-right: .5em;
      width: 1.5rem;
      height: 1.5rem;
    }
    & h1{
      font-size: 1.1rem;
    }
    & p{
      font-size: 1em;
      & a{
        color: var(--cor2);
      }
    }
  }
  & .lidoY{
    color: gray;
  }
  & >button:hover{
    background-color: var(--cor2);
    color: #fff;
  }
  & >.lidoY:hover{
    background-color: gray;
    color: #fff;
  }
}
.mc{display: none;}
/* // ============================================= */
/* From Uiverse.io by kennyotsu */ 
.card {
  /* color used to softly clip top and bottom of the .words container */
  --bg-color: #fff;
  background-color: var(--bg-color);
  padding: 1rem 2rem;
  border-radius: 1.25rem;
}
.loader {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 40px;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
}

.words {
  overflow: hidden;
  position: relative;
}
.words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--bg-color) 10%,
    transparent 30%,
    transparent 70%,
    var(--bg-color) 90%
  );
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: var(--cor1);
  animation: spin_4991 4s infinite;
}

@keyframes spin_4991 {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}
@keyframes piscar {
  0%{
    background-color: red;
  }
  50% {
    background-color: var(--cor5);
  }
  100%{
    background-color: red;
  }
}

/* From Uiverse.io by kennyotsu */ 
/* // ============================================= */
/* // ============================================= */
@media screen and (max-width: 1200px){
  body{
    --tc: 3rem;
  }
  aside{
    & a{
      & span{
        display: none;
      }
    }
    .tooltip {
      position: relative;
      cursor: pointer;

    }

    .tooltip:hover::after {
      content: attr(data-title);
      position: absolute;
      display: flex;
      align-items: center;
      top: 0;
      left: 3rem;
      padding: 0 1.5rem;
      background: var(--cor3);
      color: #fff;
      height: 3rem;
      font-size: 14px;
      white-space: nowrap;
      z-index: 10;
      transition: .3s all;
    }
    
  }
  main{
    & .contain{
      position: relative;
      & .atalhos{
        width: 100%;
        flex-wrap: wrap;
        & a{
          flex: 2;
          & span{
            width: calc(100% - 5rem);
            min-width: 10rem;
          }
        }
      }
    }
  }
  .modal{
    max-width: 800px;
    width: 90%;
    height: 100vh;
    left: calc(50vw);
  }
}
@media screen and (max-width: 900px){
  main{
    & .chatia{
      & .side{
        width: 3rem;
        & a{
          position: relative;
          justify-content: center;          
          width: 100%;
          & p{
            display: none;
            background-color: var(--aprovado);
          }
        }
        & a:hover{
          justify-content: flex-start;
          & p{
            display: block;
            position: absolute;
            background-color: var(--cor1);
            margin-left: 1.5rem;
            width: 10rem;
            padding: .5rem;
            border-radius: .5rem;
          }
        }
      }
      & .chat{
        width: calc(100% - 4rem);
      }
    }
    & .forms{
      & .inputs{
        flex-wrap: wrap;
        margin-bottom: 0;
        input, textarea, select{
          margin-bottom: 1rem;
        }
      }
    }
  }
}
@media (max-height: 600px) and (min-width: 700px){
  body{
    --tc: 3rem;
  }
  aside{
    display: none;
  }
  nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 3rem;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--cor2);
    padding: .8rem;
    & a, button{
      text-decoration: none;
      background-color: transparent;
      border: none;
      font-size: 1.5em;
      margin: 1rem 0;
      margin-left: -.5rem;
      & svg, i{
        width: 2rem;
        height: 2rem;
        margin-right: .5rem;   
        margin-left: 1rem;
        color: var(--icons);
        fill: var(--icons);
        transition: .3s;
        font-size: 1em;
      }
      & span{
        display: none;
      }
    }
    #menuSuspenso{
      display: none;
      height: calc(100dvh - 3.5rem);
      width: 70dvw;
      position: absolute;
      top: 3.5rem;
      left: 3rem;
      padding: .5rem;
      background-color: var(--cor4);
      padding-top: 1rem;

      & a{
        display: block;
        margin-bottom: .5rem;
        & i{
          color: #fff;
        }
        & span{
          display: inline-block;
          color: #fff;
        }
      }

    }
  }
}
@media screen and (max-width: 700px){
  body{
    --tc: 0rem;
  }
  aside{
    display: none;
  }
  nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    display: flex;
    background-color: var(--cor2);
    padding: .8rem;
    justify-content: space-around;
    align-items: center;
    & a, button{
      text-decoration: none;
      background-color: transparent;
      border: none;
      font-size: 1.5em;
      & svg, i{
        width: 2rem;
        height: 2rem;
        margin-right: .5rem;   
        margin-left: 1rem;
        color: var(--icons);
        fill: var(--icons);
        transition: .3s;
        font-size: 1.2em;
      }
      & span{
        display: none;
      }
    }
    #menuSuspenso{
      display: none;
      width: 100%;
      position: absolute;
      bottom: 3.5rem;
      left: 0;
      padding: .5rem;
      background-color: var(--cor4);
      padding-top: 1rem;

      & a{
        display: block;
        margin-bottom: .5rem;
        & i{
          color: #fff;
        }
        & span{
          display: inline-block;
          color: #fff;
        }
      }

    }
  }
  footer{
    margin-bottom: 7rem;
  }
  .oc{display: none;}
  .mc{display: inline-block;}
  .modal{
    min-width: 100%;
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translate(0,0);
    border-radius: 0;
    place-items: start;
  }
  main{
    & .contain{
      & .tabela{
        & >div{
          grid-template-columns: var(--gSmall);
        }
      }
    }
  }
}

@media print{
    header, aside, footer, .breadcrumbs, nav{
        display: none;
        height: 0rem;
        overflow: hidden;
        box-shadow: none;
        input{
          display: none;
        }
    }
    main{
      width: 100%;
      margin-left: 0rem;
      margin-top: 0rem;
      & .contain{
       & .telas{
         & .filter, .cabecalho{
          display: none;
        }
       }
      }
    }
     th {
        background-color: #000 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact; /* Safari / Chrome */
        print-color-adjust: exact;         /* Firefox / Edge */
        font-weight: 600;
    }
}