*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family: "Nunito";
}

html{
    height:100%;
}

html,body{
	background: white;
    min-width: 350px;
}

body{
    overflow-x: hidden;
}

header{
    background: #0048D0;
    padding:8px 15px;
    text-align: center;
    color:white;
    font-weight: bold;

}

header img{
    width:60%;
    max-width:400px;
    max-height:100px;
    /*width:auto;
    max-height:60px;*/
}

.header-flex {
    width:100%;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: row;
}

header #button-side-menu{
    float:left;
    font-size:20px;
}

.side-menu{
    display:flex;
    margin-top:5px;
    flex-direction:column;
    gap:10px;
}

.side-menu a{
    width:100%;
    border:1px solid;
    border-radius:5px;
    text-decoration:none;
    color:white;
    padding:10px;
}

.alert{
    width: 100%;
    padding: 10px;
    text-align: center;
}

.sucess{
    background: #68d600;
    color:white;
    border-radius: 6px;
}

.erro{
    background: #E02823;
    color:white;
    border-radius: 6px;
}

.alerta{
    background: #F7FB00;
    border-radius: 6px;
}

.message{
    background: #386BFF;
    color:white;
    border-radius: 6px;
}

.left{
	float:left;
}
.right{
	float:right;
}

.clear{
	clear:both;
}

.center{
	padding: 0 2%;
	margin: 0 auto;
}

.content{
    padding: 0 0 10px 0;
    height:100%;
    width:95%;
    max-width: 1200px;
	margin: 0 auto;
}

.box-content{
    height:100%;
    background: #EEE;
    padding: 8px;
    overflow-y:auto;
}

.dados-titulo{
    background:#ffffff;
    color:black;
    padding:8px;
    font-weight:600;
    border-radius:6px;
    font-size:18px;
    margin-bottom:5px;
}

.title-dados-titulo{
    text-align:center;
    padding:5px;
}

.dados-titulo-individual{
    padding:8px;
}

.dados-titulo-individual span{
    font-weight:bold;
}

.form-group{
    padding:5px;
}

.form-group label{
    font-size:18px;
    font-weight:700;
}
.form-group textarea{
    resize:vertical;
}

.form-group input,
.form-group textarea,
.form-group select,
.form-group button{
    margin-top:10px;
    width:100%;
    padding:8px;
    border-radius:6px;
    border:none;
    font-size:20px;
    border-bottom:1px solid #000;
    background:#F0F0F0;
}

.group-login input{
    border-bottom:1px solid #000;
    background:#F0F0F0;
}

.enviar button{
    background:#02962e;
    color:white;
    font-size:20px;
    font-weight:700;
}

.cancelar button{
    background:#e82323;
    color:white;
    font-size:20px;
    font-weight:700;
}

.search-field{
    position:relative;
}

.search-field input,
.search-field button{
    padding:8px;
    border:none;
}

.error-search input{
    border-left:2px solid #ff1f40 !important;
    border-bottom:2px solid #ff1f40 !important;
    border-top:2px solid #ff1f40 !important;
}

.error-search button{
    border-right:2px solid #ff1f40;
    border-bottom:2px solid #ff1f40;
    border-top:2px solid #ff1f40;
}

.error-message{
    color:#ff1f40;
    font-size:14px;
    display:none;
}

.search-field input{
    width:100%;
    font-size:20px;
    height:55px;
    border-radius:6px;
}

.search-field input:focus{
    box-shadow:0;
    border:0 none;
    outline:0;
}

.search-field button{
    position:absolute;
    border-radius:0 6px 6px 0;
    top: 0; 
    right: 0;
    background:#0048D0;
    color:white;
    cursor:pointer;
    font-size:20px;
    height:55px;
}

.box-login{
    padding:52px 17px;
    background:#FFF;
    border-radius:8px;
}

.box-login h1{
    font-weight:500;
}

.main-menu{
    height:100%;
}

.main-menu a{
    text-decoration:none;
}

.main-menu-title{
    font-size:22px;
    text-align:center;
    font-weight:600;
    padding:15px;
}

.main-menu-individual{
    display:table;
    padding:10px;
    height:30%;
    width:100%;
    border-radius:8px;
    border:none;
    font-size:48px;
    text-align:center;
    vertical-align: middle;
    margin-bottom:20px;
}

.main-menu-individual span{
    display:table-cell;
    vertical-align:middle;
}

.client-area{
    background-color:#0972db;
    color:white;
}

.vendor-area{
    background-color:#2ef2d5;
    color:white;
}

.error-not-found{
    position:relative;
    height:100%;
    background:#FFF;
    border-radius:9px;
}

.error-not-found span{
    position:absolute;
    text-align:center;
    width:100%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:28px;
}

.error-not-found i{
    color:red;
}

.btn-disabled{
    background:#CCC !important;
}

.box-titulo{
    background:#FFF;
    padding:12px;
    border-radius:8px;
    text-align:center;
    margin:20px 0;
}
.box-titulo hr{
    margin:25px 0;
}

.box-titulo strong{
    font-size:32px;
}

.button-back{
    background:#e82323;
    border-radius:8px;
    padding:20px;
    text-align:center;
    font-size:30px;
}

.button-back a{
    text-decoration:none;
    color:white;
}

.dados-cliente{
    text-align:left;
    font-size:18px;
    font-weight:bold;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: none;
    /*background-color: #f1f1f1;*/
}
  
/* Style the buttons that are used to open the tab content */
.tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-weight:bold;
    border-radius:6px 6px 0 0;
    background:#333;
    color:white;
    border:1px solid #333;
    margin-right:3px;
}
  
/* Change background color of buttons on hover */
  
/* Create an active/current tablink class */
.tab button.active {
    background:white;
    color:#333;
    border-top:1px solid #333;
    border-bottom:1px solid #FFF;
    border-left:1px solid #333;
    border-right:1px solid #333;
}
  
/* Style the tab content */
.tabcontent {
    margin-top:-1px;
    display: none;
    padding: 6px 12px;
    border: 1px solid #333;
    border-radius:0 6px 6px 6px;
}

.table-bolinhas{
    display:flex;
    flex-wrap:wrap;
    gap:4px;
    align-items:center;
    justify-content: center;
    padding:6px;
}

.bolinha{
    width:50px;
    height:50px;
    border:1px solid #333;
    border-radius:50%;
    display:table;
}

.bolinha span{
    display:table-cell;
    vertical-align:middle;
    font-size:25px;
}

.title-sorteio{
    background:#3446eb;
    color:white;
    padding:5px;
    margin-bottom:5px;
}

.sorteio{
    display:none;
}


.pdv-menu{
    background:#FFF;
    padding:15px;
    border-radius:8px;
}

.pdv-menu a{
    text-decoration:none;
}

.form-group a{
    text-decoration:none;
}

.link-voltar{
    display:table;
    padding:9px;
    width:100%;
    border-radius:8px;
    border:none;
    font-size:23px;
    text-align:center;
    vertical-align: middle;
    margin-bottom:20px;
    background:#e82323;
    color:white;
}

.link-voltar span{
    display:table-cell;
    vertical-align:middle;
}

.pdv-menu-individual{
    display:table;
    padding:20px;
    height:30%;
    width:100%;
    border-radius:8px;
    border:none;
    font-size:25px;
    text-align:center;
    vertical-align: middle;
    margin-bottom:20px;
}

.pdv-menu-individual span{
    display:table-cell;
    vertical-align:middle;
}

.alterar-area{
    background-color:#4a33f5;
    color:white;
}

.reposicao-area{
    background-color:#47e66c;
    color:white;
}

.historico-area{
    background-color:#8524ed;
    color:white;
}

.distribuicao-area{
    background-color:#184080 !important;
    color:white;
}

.checkin-area{
    background-color:#5809ad;
    color:white;
}

.consulta-area{
    background-color:#32a4a8;
    color:white;
}

.cadastro-area{
    background-color:#EFB23B;
    color:white;
}

.vendas-area{
    background-color:#27D838;
    color:white;
}

.bg-cadastro-cliente{
    height:calc(100% + 8px);
    background:#FFF;
    border-radius: 0 0 6px 6px;
    margin-top:-8px;
    padding:10px;
    overflow-y:auto;
}

.title-cadastro-cliente{
    text-align:center;
    font-size:25px;
}

.buttons-venda{
    padding:10px;
}

.finaliza-venda{
    margin:20px 0;
}

.finaliza-venda button{
    width:100%;
    background:#27D838;
    color:white;
    border:none;
    border-radius: 8px;
    padding: 20px;
    font-size: 30px;
}

.bolinha-marcada{
    background:#3de0e3;
}

.table-dados-titulo{
    width:100%;
}

.table-dados-titulo td{
    font-size:20px;
}

.table-distribuicao td{
    font-size:15px !important;
}

.table-dados-titulo td, th{
    padding:2px 5px;
    background:#eee;
    border-radius:5px;
    font-weight:bold;
}

.table-dados-titulo th{
    font-size:25px;
}

.proposta-estornada{
    background:#f72843;
    color:#FFF;
}

.proposta-em-aberto{
    background:#f7f728;
}

.proposta-vendida{
    background:#28f755;
    color:#FFF;
}

.dados-hide-cliente{
    font-size:20px;
    text-align:center;
}

.ponto-individual{
    overflow-y:auto;
    margin-top:5px;
    background:#FFF;
    padding:8px;
    border-radius: 6px;
}

.linha-pdv-individual{
    border-bottom:1px dotted #CCC;
}

.linha-pdv-individual span{
    font-weight:bold;
}

.button-next{
    text-align:center;
    border-radius:0 0 6px 6px;
    top: 0; 
    right: 0;
    background:#0048D0;
    color:white;
    cursor:pointer;
    font-size:20px;
    height:100%;
}

.loading-class{
    text-align:center;
    font-size:20px;
}

.loading-class img{
    width:40px;
}

.list-pontos a{
    text-decoration:none;
    color:#000;
}

.input-search{
    background:#FFF;
    border:1px solid #CCC;
    border-radius:15px;
    padding:2px 8px;
}

.input-search input{
    width:90%;
    border:none;
    padding:0 6px;
    font-size:16px;
    text-align:center;
}

.input-search input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

.ponto-individual table{
    width:100%;
}

.ponto-individual td{
    text-align:center;
    border-bottom:1px solid #ccc;
    padding:5px;
}

.ponto-individual td button{
    width:100%;
    border:none;
    background:transparent;
    cursor:pointer;
}

.check{
    width:100%;
    text-align:center;
}

.check p{
    font-size:25px;
}

.field-distribuicao{
    display:table-cell;
    width:49%;
    padding:3px;
}

.field-distribuicao input{
    width:100%;
    padding:6px;
    border-radius:6px;
    font-size:18px;
    text-align:center;
}

.field-distribuicao label{
    font-size:18px;
}

.qtd-padrao{
    margin-top:8px;
}

.qtd-padrao input[type=radio]{
    display:none;
}

.qtd-padrao label{
    font-size:16px;
    padding:8px;
    border-radius:8px;
}

.qtd-padrao input[type=radio]:checked + label{
    background:#1d3ae0;
    color:white;
    font-weight:bold;
}

.plus-minus{
    background:#1d3ae0;
    color:white;
    font-weight:bold;
    border:none;
    border-radius:5px;
    padding:0 8px;
    text-align:center;
    font-size:20px;
}

.qtd-distrib{
    margin:0 8px;
}

.inicio-fim{
    font-size:24px;
}

.btn-unlock{
    width:auto !important;
    font-size:15px !important;
    padding:5px 15px !important;
    background: #0bb018 !important;
    color: #FFF !important;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius:8px;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    background:#c21024;
    width:100%;
    border:none;
    border-radius:8px;
    color:white;
    font-size:18px;
    padding:7px;
    margin-top:15px;
  }

  .confirma {
    background:#0bba4b;
    width:100%;
    border:none;
    border-radius:8px;
    color:white;
    font-size:18px;
    padding:7px;
    margin-top:15px;
  }

  #myProgress {
    border-radius:8px;
    width: 100%;
    background-color: #CCC;
  }

  #myBar {
    border-radius:8px;
    width: 0%;
    height: 10px;
    background-color: #04AA6D;
    text-align: center; /* To center it horizontally (if you want) */
    line-height: 10px; /* To center it vertically */
    color: white;
  }

  #msg-status{
    display:none;
    text-align:center;
    padding:10px;
  }

  .add-range{
    font-size:20px;
    width:30px;
    height:30px;
    border-radius:50%;
    padding:1px 1px 0 0;
    border:none;
    background:green;
    color:white;
  }
  
  .remove-range{
    font-size:15px;
    width:20px;
    height:20px;
    border-radius:50%;
    border:none;
    background:red;
    color:white;
  }

  .label-ranges{
    font-weight:bold;
  }

.table-ranges table{
    width:100%;
    text-align:center;
    font-size:18px;
}

.alternate-table{
    background: #eee;
    border-radius: 5px;
}

.table-historico{
    overflow-y:auto;
    margin-top:5px;
    background:#FFF;
    padding:8px;
    border-radius: 6px;
    border:1px solid #111;
}

.table-historico table{
    width:100%;
}

.table-historico td{
    text-align:center;
    border-bottom:1px solid #ccc;
    padding:5px;
}

.table-historico td button{
    width:100%;
    border:none;
    background:transparent;
    cursor:pointer;
}

.bg-historico{
    margin-top:10px;
    background:#FFF;
    border-radius:8px;
    padding:8px;
}

.bg-historico table{
    font-size:18px;
}

.bg-historico td{
    padding:5px;
    border-radius:6px;
}

.bg-historico tr{
    background:#ededed;
}

.check-in-ok{
    background:#42f584 !important;
}

.check-in-error{
    background:#f54248 !important;
}

.check-in-alert{
    background:#ecf542 !important;
}

.check-in-longe{
    background:#eb9e34 !important;
}

.title-distribuicao{
    font-size:26px;
    font-weight:bold;
}

.buttons-distribuicao button{
    font-size:16px;
    border:none;
    border-radius:5px;
    padding:5px;
    cursor:pointer;
    float:right;
}

.buttons-distribuicao .inserir-distribuicao{
    background:#3aeb34;
    color:#fff;
}

.vendido{
    color:green;
}

.estornado{
    color:red;
}

.aberto{
    color:#c4be10;
}

.nova-consulta-pdv{
    text-align:center;
}

.nova-consulta-pdv a{
    text-decoration:none;
    color:#000;
}

.desc-produto-selecionado{
    font-size:20px;
}

.desc-produto-selecionado label{
    font-weight: 800;
}

.select-produto{
    display:none;
    padding:8px;
}

.btn-toggle-prod{
    background-color: #0048D0;
    color:#FFF;
    border-radius:5px;
    border:none;
    padding: 3px;
    width: 100%;
    font-size:17px;
    margin-top:8px;
}

.span-prod-selecionado{
    background-color: #CCC;
    padding: 3px;
    border-radius:5px;
}

.select-produto select{
    margin-top:10px;
    width:100%;
    padding:8px;
    border-radius:6px;
    border:none;
    font-size:20px;
    border-bottom:1px solid #000;
    background:#FFF;
}

.placar{
    float:right;
    background:#ddd;
    padding:10px;
    font-size:19px;
    border-radius:5px;
    font-weight: bold;
    margin:10px;
}