::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	-webkit-border-radius: 0px;
}

::-webkit-scrollbar-track-piece {
	background-color: #00000000;
	-webkit-border-radius: 5px;
}

::-webkit-scrollbar-thumb:vertical {
	height: 5px;
	background-color: #666;
	-webkit-border-radius: 3px;
}

::-webkit-scrollbar-thumb:horizontal {
	width: 5px;
	background-color: #666;
	-webkit-border-radius: 3px;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #1e1e2f;
	transition-duration: 3s;
}

.perfil_dashboard{
    background-color: #393e50;
    width: 350px;
    border-radius: 9px;
    padding: 10px;
    text-align: center;
    position: absolute;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    transition-duration: 2s;
    color: #aaadb4;
    z-index: 1;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 145px;
}

.deslogar{
    background-color: #393e503d;
    color: #aaadb4;
    border-radius: 9px;
    border: solid 1px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 90%;
    text-align: center;
    position: relative;
    left: 50%;
    transition-duration: 0.5s;
    transform: translate(-50%);
}

.deslogar:hover{
    background-color: #221313;
    color: #ff0000;
}

.perfil_dashboard_img{
    width: 150px;
}

.go_perfil{
    position: relative;
    width: 100%;
    height: 55px;
}

.go_perfil_dashboard_img{
    width: 70px;
    right: 0px;
    position: absolute;
    cursor: pointer;
    border-radius: 50%;
    transition-duration: 1s;
}

.go_perfil_dashboard_img:hover{
    background-color: #0f121a;
}

.go_perfil_mensagem{
    position: absolute;
    right: 70px;
    top: -100%;
    color: #cacac9;
    background: #00000052;
    padding: 10px;
    border-radius: 9px 9px 0px 9px;
    border: solid #04c9f5 1px;
    animation: user_perfil_msg 5s 3s linear;
}

.perfil_fechar{
    width: 55px;
    height: 20px;
    padding: 5px;
    text-align: center;
    background: #131722;
    position: absolute;
    right: -1px;
    font-size: 17px;
    color: #04eaf5;
    top: 0px;
    border-radius: 0px 9px 0px 9px;
}

@keyframes user_perfil_msg {
    0%{
        top:50px;
        opacity: 0;
    }
    5% {
        top:-5px;
        opacity: 1;
    }
    95% {
        top:-5px;
        opacity: 1;
    }
    100%{
        top:-45px;
        opacity: 0;
    }
}


#modos{
    background-color: #27293b;
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0px 10px 0px;
    border-radius: 5px;
    transition-duration: 1s;
}

#tipos{
    background-color: #27293b;
    width: 100%;
    position: relative;
    display: flex;
    padding: 10px 0px 0px 0px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 5px;
    transition-duration: 1s;
}

#divisores{
    background-color: #27293b;
    height: 80px;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 5px;
    transition-duration: 1s;
}

#alerta_aviso{
    display: none;
    color: black;
    font-family: monospace;
    font-size: 30px;
    text-align: center;
    background-color: #ff9800;
    padding: 0px;
    border: solid black 1px;
    border-radius: 5px;
    animation: fade 2s linear infinite;
}

@keyframes fade {
    to{
        opacity: 0.0;
    }
    from{
        opacity: 1.0;
    }
}

#dados{
    background-color: #27293b;
    width: 100%;
    position: relative;
    border-radius: 5px;
    transition-duration: 1s;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#visualizador{
    background-color: #27293b;
    width: 100%;
    position: relative;
    border-radius: 5px;  
    display: none;  
}

#status {
    color: white;
    font-size: 20px;
    text-align: center;
    font-family: monospace;
}

.contorno_dados{
    height: 100%;
    position: relative;
    padding: 10px 10px 10px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 9px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.telas{
    margin-top: 15px;
    /* padding: 15px; */
    background-color: #393e50;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    max-width: 250px;
}

.imagem{
	width: 250px;
	height: auto;
    border-radius: 5px;
    transition-duration:2s;
}

.divisor_geral{
    padding: 10px;
    margin: 0px;
    position: inherit;
    height: 100%;
    transition-duration: 1s;
}

.divisor_intermediario{
	margin-bottom: 25px;
}

.buttom_modos{
    color: #00ff66;
    background-color: #393e50;
    padding: 10px;
    width: fit-content;
    border-radius: 9px;
    font-size: 20px;
    cursor:pointer;
	transition-duration: 0.5s;
}

.buttom_tipos{
    color: #aaadb4;
    background-color: #393e50;
    padding: 10px;
    width: fit-content;
    border-radius: 9px;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: sans-serif;
    cursor:pointer;
	transition-duration: 0.5s;
}

.buttom_tipos:hover, .btn_open:hover, .btn_linkcom:hover, .btn_map:hover, .btn_visualizer:hover, .btn_close:hover, .btn_close:hover, .btn_restart:hover, .btn_reimpress:hover, .btn_code:hover, .btn_map:hover, .telas:hover, .btn_bombona:hover, .btn_capture:hover, .btn_bot:hover {
	background-color: #131722;
    color: #04eaf5;
    cursor: pointer;
}

.buttom_modos:hover{
    background-color: #131722;
    color: #e91e63;   
}

.title{
	color: #aaadb4;
    font-size: 18px;
    font-family: sans-serif;
	text-align: center;
    transition-duration:2s;
}

.animation_coletor{
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
}


#coletorsvg{
    transition-duration: 2s;
}

.visualize_tela{
    position: relative
}

.visualize_imagem{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 147px;
    height: 96px;
    background: url(./../imagem/barr.gif);
    background-repeat: no-repeat;
    background-size: 147px 110px;
    background-position-y: -7px;
    animation: fants 2s;
}

.dimen_propriedades{
    position: relative;
    width: 100%;
    height: 520px;
    transition-duration: 0.5s;
}

#dimen_coletor{
    display: none;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

#dimen_impressora {
    display: none;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

#dimen_amassfix {
    display: none;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes fants{
    from {opacity: 0}
    to {opacity: 1}
}

svg .svg-elem-1 {
  stroke-dashoffset: 5345.326171875px;
  stroke-dasharray: 5345.326171875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0s;
          transition: stroke-dashoffset 1s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

#led_indicator{
    position: absolute;
    margin-left: 50%;
    top: 0px;
    transform: translateX(-50%);
}

.btn_vermelho{
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #6c0000;
    top: 159px;
    left: 61px;
    border-radius: 7px;
    box-shadow: 0px 0px 0px #ff0000;
}

.btn_verde{
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #006a03;
    top: 183px;
    left: 61px;
    border-radius: 7px;
    box-shadow: 0px 0px 0px #04ff00;
}

.luz_scaner{
    width: 28px;
    top: 154px;
    height: 28px;
    left: -84px;
    border-radius: 50%;
    position: absolute;
    background-color: #ffffff;
    /* box-shadow: 0px 0px 18px white; */
    filter: blur(40px);
    animation: 3s infinite pisca
}

.led_scaner{
    width: 3px;
    top: 167px;
    height: 3px;
    left: -72px;
    border-radius: 7px;
    position: absolute;
    background-color: #ffffff80;
}

@keyframes pisca {
    0% {opacity: 1}
    50% {opacity: 0}
    100% {opacity: 1}
}

.carga_bombona{
    width: 255px;
    height: 3px;
    top: 300px;
    position: absolute;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 9px;
    animation: 4s linear bombona;
    transition-duration: 2s;
}

@keyframes bombona {
    from {opacity: 0; top: 460px;}
    to {opacity: 1; top: var(--top-value1,300px); }
}

.carga_cor{
    left: 50%;
    top: 301px;
    opacity: 0.4;
    width: 164px;
    height: 175px;
    position: absolute;
    background-color: #000000;
    transform: translateX(-50%);
    animation: 4s linear cor_bombona;
    transition-duration: 2s;
}

@keyframes cor_bombona {
    from {top: var(--top-value1,460px); height: 0px;}
    to {top: var(--top-value2,301px); height: var(--height-value2,175px);}
}

.valor_bombona{
    top: 290px;
    left: 130px;
    color: white;
    font-size: 20px;
    border-radius: 9px;
    position: absolute;
    font-family: sans-serif;
    transition-duration: 2s;
    animation: 4s linear valor_bombona;
}

@keyframes valor_bombona {
    0% {opacity: 0; transform: translateX(270%);}
    99% {opacity: 0; transform: translateX(270%);}
    100% {opacity: 1; transform: translateX(324%);}
}

.gaveta_status{
    left: 50%;
    top: 169px;
    text-align: center;
    color: white;
    font-size: 20px;
    border-radius: 9px;
    position: absolute;
    font-family: sans-serif;
    transform: translateX(-50%);
    animation: 4s linear status_gaveta;
}

@keyframes status_gaveta {
    0% {opacity: 0; transform: translateX(-48%);;}
    99% {opacity: 0; transform: translateX(-48%);}
    100% {opacity: 1; transform: translateX(50%);}
}

.vizualizador{
    display: block;
}

.visualizador_grafico{
    display: none;
}

.grafic_imagem{
    width: 380px;
    height: 380px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.pizza_orbit{
    width: 403px;
    height: 403px;
    border: solid 1px white;
    border-radius: 360px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

circle {
    cx: 0;
    cy: 0;
    r: 7;
    transform: rotate(270deg);
    stroke-width: 0.6px;
    stroke-dasharray: 0, 44;
    stroke: #00b8ff;
    fill: none;
    transition: 3s;
}

.pie_grafic{
    width: 462px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.valor_grafic{
    position: absolute;
    top: -25px;
    right: 30px;
    color: #aaaba4;
    font-size: 100px;
    font-family: sans-serif;
}

.micromenu1{
    position: absolute;
    top: 0px;
    color: #aaadb4;
    font-size: 20px;
    font-family: sans-serif;
}

.leds{
    position: absolute;
    top: 0;
    left: 15px;
    background-color: #393e50;
    padding: 5px;
    border-radius: 9px;
}

.gaveta_text{
    position: absolute;
    top: 114px;
    left: 15px;
    background-color: #393e50;
    padding: 5px;
    border-radius: 9px;
}

.btn_status_ledverde, .btn_status_ledvermelho{
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 9px;
}

.btn_status_ledverde{
    background-color: #393e50;
    top: 50px;
    left: 15px;
}

.btn_status_ledvermelho{
    background-color: #393e50;
    top: 50px;
    left: 80px;
}


.bolinha{
    position: absolute;
    width: 20px;
    height: 20px;

}

.verde, .vermelho{
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.verde{
    background-color: #00ff00;
    box-shadow: 0px 0px 15px lime;
}

.vermelho{
    background-color: #a90000;
    box-shadow: 0px 0px 0px red;
}

.btn_status_gaveta{
    position: absolute;
    width: 225px;
    height: 190px;
    background-color: #393e50;
    top: 162px;
    left: 15px;
    border-radius: 9px;
}

.gaveta{
    width: 215px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
}

.micromenu2{
    position: absolute;
    top: 0px;
    right: 0px;
    color: #aaadb4;
    font-size: 20px;
    font-family: sans-serif;
    height: 100%;
}

table {
    position: relative;
    top: 50%;
    top: -23px;
    right: 15px;
    background: #1e1e2f;
    padding: 15px;
    border-radius: 9px;
    border: solid #393e50;
    z-index: 1;
    font-size: 14px;
}

td {
  border-radius: 9px;
  background-color: #393e50;
  padding: 10px;
}

.btn_close {
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 5px;
    position: absolute;
    right: 35px;
    top: -18px;
    cursor: pointer;
    transition-duration: 0.5s;
    z-index: 1;
}

.btn_linkcom{
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 15px;
    font-family: sans-serif;
    padding: 5px;
    cursor: pointer;
    width: 120px;
    text-align: center;
    bottom: 85px;
    position: absolute;
    right: 20px;
    transition-duration: 0.5s;
}

.btn_linkcom_imagem{
    width: 120px;
    border-radius: 5px;
}

.btn_linkcom_text{
    font-size: 15px;
    font-family: sans-serif;
}

.btn_linkcom_barra_fundo{
    width: 100%;
    height: 10px;
    background: #04040463;
    border-radius: 9px;
}

.btn_linkcom_barra_progresso{
    width: 50%;
    height: 10px;
    border-radius: 9px;
    background-color: #f9ad00;
}

.btn_open {
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: -446px;
    position: relative;
    right: 20px;
    transition-duration: 0.5s;
}

.btn_map {
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: 21px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
}

.btn_map2 {
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: 21px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
}

.btn_restart{
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: 85px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
}

.btn_reimpress{
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: 150px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
}

.btn_capture{
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: 332px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
}

.btn_code{
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    height: auto;
    text-align: center;
    bottom: 239px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
    backdrop-filter: blur(3px) opacity(1);
}

.btn_bombona{
    display: none;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    height: auto;
    text-align: center;
    bottom: 150px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
    backdrop-filter: blur(3px) opacity(1);
}

.btn_bot{
    display: block;
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    height: auto;
    text-align: center;
    bottom: 240px;
    position: absolute;
    left: 20px;
    transition-duration: 0.5s;
    backdrop-filter: blur(3px) opacity(1);
}

.btn_visualizer {
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    left: 21px;
    position: absolute;
    top: -23px;
    transition-duration: 0.5s;
}

.qr_code{
    display: none;
    height: auto;
    width: 200px;
    top: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(3px) opacity(1);
}

.foto_bombona{
    display: none;
    height: 500px;
    width: 600px;
    top: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(3px) opacity(1);
}

.options{
    display: none;
}

.loading{
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(0deg, rgba(37,37,43,0) 0%, rgba(65,168,255,1) 51%, rgba(45,45,255,0) 100%);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}
.wave:nth-child(2) {
  animation-delay: 0.1s;
}
.wave:nth-child(3) {
  animation-delay: 0.2s;
}
.wave:nth-child(4) {
  animation-delay: 0.3s;
}
.wave:nth-child(5) {
  animation-delay: 0.4s;
}
.wave:nth-child(6) {
  animation-delay: 0.5s;
}
.wave:nth-child(7) {
  animation-delay: 0.6s;
}
.wave:nth-child(8) {
  animation-delay: 0.7s;
}
.wave:nth-child(9) {
  animation-delay: 0.8s;
}
.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.load_notify{
    display: none;
    width: 320px;
    height: 100px;
    background-color: #0000004f;
    border-radius: 60px 0px 0px 60px;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
    position: fixed;
    right: 0px;
/*    top: 10px;*/
    top: 70px;
    backdrop-filter: blur(3px) opacity(1);
    animation: notify_on 0.2s linear;
}

@keyframes notify_on {
  from {
    right: -340px;
    opacity: 0.0;
  }

  to {
    right: 0px;
    opacity: 1.0;
  }
}

@keyframes notify_off {
  from {
    right: 0px;
    opacity: 1.0;
  }

  to {
    right: -340px;
    opacity: 0.0;
  }
}

.load_icon{
    width: 100px;
    height: 100px;
}

.mapbox{
    display: none;
}

.animation_impressora{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
}

.bobina{
    width: 60%;
    height: 50px;
    background-color: #000000d4;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    transition-duration: 2s;
    border-radius: 9px;
    animation: roll 1s linear;
    filter: drop-shadow(2px 4px 6px black);
}

@keyframes roll {
  from {
    width: 0%;
    opacity: 0.0;
  }

  to {
    width: 60%;
    opacity: 1.0;
  }
}

.rolo{
    right: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: white;
}

.sub_rolo{
    left: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: black;
}


.cupons{
    text-align: center;
    position: relative;
    top: 31px;
    left: 50%;
    width: 300px;
    transform: translate(-50%,-50%);
    font-size: 32px;
    background-color: #000000d1;
    color: white;
}

.consumo{
    background-color: #f9ad00;
    width: 0%;
    position: absolute;
    height: 50px;
    top: 0px;
    border-radius: 8px 0px 0px 8px;
    left: 0px;
    animation-duration: 1s;
}

svg .animation_impressora-1{
    stroke-dashoffset:4590.90576171875px;
    stroke-dasharray:4590.90576171875px;
    -webkit-transition:stroke-dashoffset 5s cubic-bezier(0.47,0,0.745,0.715) 0s;
    transition:stroke-dashoffset 5s cubic-bezier(0.47,0,0.745,0.715) 0s
}

svg.active .animation_impressora-1{
    stroke-dashoffset:0
}

.impressora_imagem{
    width: 100px;
    position: absolute;
    top: 50%;
    right: -27px;
    transform: translateY(-50%);
}

.bobina_menor{
    display: none;
    width: 100%;
    height: 10px;
    background-color: #000000d4;
    position: relative;
    top: -14px;
    border-radius: 0px 0px 4px 4px;
    transition-duration: 2s;
}

.consumo_menor{
    background-color: #f9ad00;
    width: 0%;
    position: relative;
    height: 10px;
    border-radius: 0px 0px 4px 4px;
    left: 0px;
}

.versao{
    position: fixed;
    bottom: 0px;
    left: -53px;
    color: white;
    background: #0000004f;
    padding: 5px;
    border-radius: 0px 9px 0px 0px;
    width: auto;
    height: auto;
    z-index: 1;
    transition-duration: 1s;
    font-size: 17px;
    backdrop-filter: blur(3px) opacity(1);
}

.versao:hover{
    left: 0px;
}

.impressora_led{
    position: absolute;
    width: 41px;
    height: 25px;
    background-color: #007eff;
    top: 16px;
    left: 50%;
    transform: rotate3d(0, 1, -1, -401deg) translateX(-50%);
}

.impressora_led_luz{
    width: 25px;
    height: 25px;
    background-color: #00f4ff;
    border-radius: 50%;
    transform: rotate3d(1, 1, 1, 318deg);
    filter: blur(15px);
    animation: 3s infinite pisca;
}

.alinhamento_luz{
    display: none;
    position: relative;
}

.menu_impressora{
    display: none;
    position: fixed;
    top: 50%;
    right: 15px;
    background: #1e1e2f;
    padding: 15px;
    transform: translateY(-50%);
    border-radius: 9px;
    border: solid #393e50;
    z-index: 1;
}

.info{
    background: #393e50;
    padding: 5px;
    border-radius: 9px;
    color: #aaadb4;
    font-size: 16px;
    font-family: monospace;
    margin-bottom: 5px;
}

.info2{
    background: #393e50;
    padding: 5px;
    border-radius: 9px;
    color: #aaadb4;
    font-size: 16px;
    font-family: monospace;
    margin-bottom: 5px;
    text-align: center;
    background-color: #131722;
    color: #e91e63;
    cursor: pointer;
    transition-duration: 1s;
}

.info2:hover{
    background-color: white;
    color: black;
}

.fechar{
}

#busca{
    position: relative;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #2aa6ff;
    background: #131722;
    color: #2aa6ff;
    width: 245px;
    height: 20px;
    padding: 10px;
    font-size: 15px;
    border-radius: 9px;
}

.buscador{

}

input[type="text"]:focus{
    border-color: #ced4da;
    box-shadow: 0 0 0 0;
    outline: 0;
}

.cell{
    color: #aaadb4;
    background-color: #131722;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    font-family: sans-serif;
    font-size: 13px;
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

.cell:hover{
    background-color: #393e50;
    color: #06cfda;
}

.cubic{
    width: 10px;
    height: 10px;
    background: #6c7fb1;
    border-radius: 4px;
}

.cubic:hover, .ao_cubic:hover{
    background-color: #2aa6ff;
}

.grade{
    width: 46px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 46px;
    position: relative;
}

.ao_cubic{
    width: 50px;
    height: 5px;
    background: #6c7fb1;
    border-radius: 4px;
}

.group_name{
    position: relative;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.continue{
    position: relative;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
}

.past_name{
    display: none;
    width: 100%;
    color: white;
    font-size: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-family: monospace;
}

.title_pasta{
    left: 5px;
    position: relative;
}

.bloqueio{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000052;
    top: 0px;
    backdrop-filter: blur(2px) opacity(3.5);
    z-index: 1;
    display: none;
    border-radius: 9px;
}

.aviso{
    width: 80%;
    color: #a5d3f5;
    font-size: 13px;
    font-family: monospace;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    text-align: center;
}

.close_icon{
    width: 55px;
    height: 20px;
    padding: 5px;
    text-align: center;
    background: #0b1226;
    position: absolute;
    right: -1px;
    font-size: 15px;
    top: 0px;
    border-radius: 0px 9px 0px 9px;
}

.edition{
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #393e50;
    cursor: pointer;
}


.middle{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    transition-duration: 0.5s;
}

.edition:hover{
    background: #131722;
}

.edition_input{
    display: none;
    background: #1e1e2f;
    color: white;
    padding: 15px;
    width: 390px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 9px;
}

.container_inputs{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 35px;
}

input{
    margin-left: 10px;
    border: 1px solid #2aa6ff;
    background: #131722;
    color: #2aa6ff;
    width: 245px;
    height: 20px;
    padding: 10px;
    font-size: 15px;
    border-radius: 9px;
}

.edition_btn{
    display: flex;
    align-items: center;
    align-content: space-around;
    justify-content: space-around;
}

.edition_cancel, .edition_confirm{
    background-color: #393e50;
    color: #aaadb4;
    border-radius: 9px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: -446px;
    transition-duration: 0.5s;   
}

.edition_confirm_submenu, .edition_cancel_submenu{
    background-color: #393e503d;
    color: #aaadb4;
    border-radius: 9px;
    border: solid 1px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    bottom: -446px;
    transition-duration: 0.5s;
}

.edition_cancel:hover, .edition_cancel_submenu:hover{
    background-color: #221313;
    color: #ff0000;
}

.edition_confirm:hover, .edition_confirm_submenu:hover{
    background-color: #152213;
    color: #17cf1f;
}

.progress_amassfix{
    position: absolute;
    bottom: 10px;
    width: 20px;
    height: 465px;
    background-color:#000;
    right: -30px;
    transition-duration: 2s;
}

.value_porcent{
    width: auto;
    background-color: #131722;
    border: solid 1px #393e50;
    border-radius: 9px;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaadb4;
    font-size: 20px;
    font-family: monospace;
    text-align: center;
    padding: 10px;
    transition-duration: 2s;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.seta{
    width: 25px;
}

.confirmation{
    background-color: #1317224d;
    color: #a9acb3;
    font-size: 20px;
    font-family: sans-serif;
    text-align: center;
    border-radius: 9px;
    /* display: flex; */
    display: none;
    flex-direction: column;
    position: fixed;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    backdrop-filter: blur(5px) opacity(5.5);
}

.card{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.0);
    padding: 15px;
    border-bottom: 2px solid #777a99;
    animation: ola linear 0.5s;
    backdrop-filter: contrast(130%) brightness(120%) blur(2px);
    background: radial-gradient( ellipse at 48.7% 146%, hsl(0deg 0% 100% / 17%) 24%, hsl(0deg 0% 100% / 29%) 25%, hsl(0deg 0% 100% / 24%) 60%, hsl(0deg 0% 100% / 12%) );
    background-size: 300% 100%;
    border-radius: 10px;
    box-shadow: 0 -3px 2px hsl(0deg 0% 100% / 43%) inset, 0 2px 2px hsl(218deg 70% 5% / 32%) inset, 0 1px 2px hsl(0deg 0% 100% / 27%);
    transition-duration: 2s;
    opacity: 1;
}

.perfil_photo{
    width: 100px;
    background: #131722;
    border: solid 1px #2aa6ff;
    border-radius: 50%;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

.credencial{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 145px;
}

.backlogin{
    background: rgb(80,83,117);
    background: linear-gradient(0deg, rgba(80,83,117,1) 0%, rgba(14,14,34,1) 100%);
}

.logo{
    width: 100px;
    left: 5px;
    bottom: 5px;
    position: absolute;
}

.logo_name{
    color: #aaadb4;
    font-family: monospace;
    font-size: 25px;
    text-align: center;
}

.confirmar_login{
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    background-color: #393e503d;
    color: #aaadb4;
    border-radius: 9px;
    border: solid 1px;
    font-size: 20px;
    font-family: sans-serif;
    padding: 15px;
    cursor: pointer;
    width: 250px;
    text-align: center;
    bottom: -446px;
    transition-duration: 0.5s;
    animation: ola linear 0.5s;
}

.confirmar_login:hover{
    background-color: #2140567a;
    color: #2aa6ff;
}

.wallpaper_login{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    animation: ola2 cubic-bezier(0.27, 0.66, 0.58, 1) 3s;
    transition-duration: 3s;
}

.control_notify{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    align-items: flex-end;
    position: absolute;
    right: 0px;
    transition-duration: 2s;
}

.notify_login{
    width: 300px;
    background: #00000052;
    color: #a0a3ac;
    font-size: 15px;
    font-family: monospace;
    padding: 15px;
    border-radius: 9px 0px 0px 9px;
    right: 5px;
    margin-right: 5px;
    margin-top: 5px;
    transition-duration: 0.5s;
    animation: ola linear 0.5s;
}

.red_notification{
    background-color: #a90000a3;
    color: #999faf;
}

.green_notification{
    background-color: #008aa98f;
    color: #999faf;
}

@keyframes ola{
    from{
        opacity: 0;
        top: 68%;
    }
    to{
        opacity: 1;
        top: 50%;
    }
}

@keyframes ola2{
    from{
        opacity: 0.2;
        top: 100%;
    }
    to{
        opacity: 1.0;
        top: 50%;
    }
}

@keyframes bye{
    from{
        opacity: 1.0;
        top: 0%;
    }
    to{
        opacity: 0.2;
        top: 50%;
    }
}

#popup_alerta{
    display: none;
    width: 235px;
    padding: 5px;
    background-color: #503939;
    border-left: solid 9px #ff4747;
    border-radius: 9px;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    position: fixed;
    cursor: pointer;
    transition-duration: 1s;
    animation: popup linear 1s;
}

#popup_alerta:hover{
    background-color: #9b3e3e;
}

#popup_mensagem{
    color: white;
    font-size: 15px;
    font-family: sans-serif;
    text-align: center;
}

@keyframes popup {
    from {
        bottom: -90px;
        opacity: 0.0;
    } 

    to {
        bottom: 10px;
        opacity: 1.0;
    }  
}

#rotas{
    display: none;
    background-color: #1317224d;
    color: #a9acb3;
    font-size: 20px;
    font-family: sans-serif;
    text-align: center;
    border-radius: 9px;
    position: fixed;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    padding: 20px;
    transition-duration: 1s;
    backdrop-filter: blur(5px) opacity(5.5);
    background-size: 30px;
}

.listagem{
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 70%;
    width: 70%;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    background: #0000007a;
    border-radius: 9px;
}

.titulo_listagem{
/*    margin-top: 10%;*/
}

.rotas_item_lista {
    margin-bottom: 5px;
    padding: 5px;
    text-align: initial;
}

.rotas_item_lista input{
    width: unset;
    height: unset;
    border-radius: unset;
    transform: unset;
    padding: unset;
    backdrop-filter: unset;
}

.btn_rotas{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    bottom: 35px;
    position: absolute;
    width: 100%;
}

.titulo_listagem{
    display: block;
}

.rotas_buscando{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
}

.localization{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.localization_load{
    display: none;
    position: fixed;
    filter: blur(3px);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 300px;
}

.barr_load{
    position: fixed;
    left: 50%;
    transform:translateX(-50%);
    width: 0%;
    height: 30px;
    bottom: 100px;
    transition-duration: 3s;
    background-color: #FFF;
}
