/*
DESENVOLVIDO POR AGENCIA MAYIA COMUNICAÇÃO E MARKETING LTDA
Desenvelvedor responsável: Jonathan Veloso 
Versão: 1.0 / Março de 2024
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif !important;
    
}

body, html {
    height: 100%;
    background: #fff;
    font-family: "Axiforma", sans-serif;
  }
.content{
    max-width: 500px;
    min-height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

input[type=email], input[type=text], input[type=phone], input[type=number], input[type=password]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #c2c8d0;
    border-radius: 6px;
    box-sizing: border-box;
    color: #2d333a;
    font-family: inherit;
    font-size: 16px;
    height: 52px;
    line-height: 1.1;
    outline: none;
    padding-block: 1px;
    padding-inline: 2px;
    padding: 0 16px;
    width: 100%;
    margin: 5px 0;
}
.content-center h1, .content-center p{
    text-align: center;
    color: #0062af;
}
.content-center{
    text-align: center;
}
.content-center img{

    bottom: 50px;
    margin: 0 auto;
}
.form{
    margin-top: 30px;
}
.continuar{
width: 100%;
border-radius: 6px;
border:none;
line-height: 50px;
margin-top: 10px;
background: #ffeb00;
font-size: 16px;
-webkit-box-shadow: -1px 25px 33px -10px rgba(255,234,0,1);
-moz-box-shadow: -1px 25px 33px -10px rgba(255,234,0,1);
box-shadow: -1px 25px 33px -10px rgba(255,234,0,1);
cursor: pointer;
display: block;
}

.box-check{
    text-align: left;
    font-size: 18px;
}
.box-check p{
    text-align: left;
    margin: 10px 0;
}



/* Caixa para o marcador */
input[type="checkbox"] {
    appearance: none;
    position: relative;
    /* Tamanho */
    width: 20px;
    height: 20px;
    /* Cor do fundo e borda */
    background-color: #fff;
    border: 0.125rem solid #ccc;
    border-radius: 0.25rem;
    margin-top: 10px;
  }
  
  /* Características do marcador */
  input[type="checkbox"]::before {
    content: "";
    /* Posicionar no meio */
    position: absolute;
    top: 50%;
    left: 50%;
    /* Tamanho do marcador */
    width: 0.75rem;
    height: 0.75rem;
    /* Formato do marcador */
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    /* Posicionar no meio */
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition: 0.125s transform ease-in-out;
    /* Cor do marcador */
    box-shadow: inset 1rem 1rem #fff;
  }
  
  /* Cor da caixa para o marcador */
  input[type="checkbox"]:checked {
    background-color: #0062af;
    border-color: #0062af;
  }
  
  /* Características do marcador quando selecionado */
  input[type="checkbox"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* Características do marcador quando selecionado */
  input[type="checkbox"]:disabled {
    opacity: 0.25;
  }
  
  input[type="checkbox"]:focus {
    border-color: #0062af;
  }
  
  input[type="checkbox"]:focus + label {
    color: #0062af;
  }
  .error-text{
    color:red;
    font-size: 14px;
    text-align: left;
    display: none;
  }
  .show-error{
    display: inherit;
  }
  .error {
    border: 1px solid red !important;
    display: inherit;
  }
  
  .continuar:disabled{
    background: #bebebe;
    font-size: 16px;
    box-shadow: none;
  }

  .content-ingresso{
    width: 500px;
    background: rgb(242, 242, 242);
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    page-break-after: always;
  }
  .content-ingresso img{
    margin: 0 auto;
  }
  .content-ingresso p{
    width: 50%;
    margin: 20px auto;
  }

  .content-ingresso h1{
    color: #0062af;
  } 
  .content-ingresso h2{
    margin-bottom: 30px;
    color: #0062af;
    font-size: 20px;
  }
  .atention{
    background: rgb(59, 169, 96);
    padding: 10px;
    color: #b8ffc0;
    border-radius: 10px;
  }

  .download-btn{
    width: 100%;
border-radius: 6px;
border:none;
line-height: 50px;
background: #ffeb00;
font-size: 16px;
-webkit-box-shadow: -1px 25px 33px -10px rgba(255,234,0,1);
-moz-box-shadow: -1px 25px 33px -10px rgba(255,234,0,1);
box-shadow: -1px 25px 33px -10px rgba(255,234,0,1);
cursor: pointer;
display: block;
text-decoration: none;
color:#0062af;
margin-top: 20px;
  }



  /* PAINEL DE ADMINISTRAÇÃO */


  .menu-lateral{
    width: 400px;
    height: 100%;
    background: #0062af;
    justify-content: center;
    flex-wrap: wrap;
    align-items: start;
    position: absolute;
    
  }
  .menu-lateral .logo{
    display: block;
    width: calc(100% - 40px);
    text-align: center;
    padding: 20px;
  }

  .option-menu{
    width: calc(100% - 40px);
    padding: 20px;
  }
  .option-menu li{
    list-style: none;
  }
  .option-menu li a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
  }
  .option-menu li a:hover{
    background: #147ccb;
  }
.box-full-content{
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  position: relative;
  
}

.content-admin{
  width: calc(70% - 40px);
  margin: 20px auto;
  padding: 20px;
  margin-left: 440px;
}

.title-page{
  font-weight: bold;
  font-size: 20px;
}

.evento{
  background: rgb(236, 236, 236);
  margin-top: 2px;
  padding: 20px;
  border-radius: 5px;
}
.evento a{
  text-decoration: none;
  color: #000;
}
.data-evento{
  font-weight: 400;
  font-size: 16px;
}
.title-evento{
  font-weight: bold;
}
.dash-infos-3col{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.dash-infos-3col .col{
  background: rgb(190, 217, 255);
  padding: 20px;
  text-align: center;
  width: calc(100% - 40px);
  border-radius: 5px;
}
.dash-infos-3col .col span{
  display: block;
}
.dash-infos-3col .col strong{
  display: block;
  font-size: 30px;
}
.lista-inscritos{
  margin-top: 20px;
  background: rgb(236, 236, 236);
  padding: 20px;
  border-radius: 5px;
}
.inscrito{
  background: rgb(236, 236, 236);
  padding: 10px 0px;
  margin-top: 1px;
  border-bottom: 1px solid #ccc;
}
.inscrito:last-of-type{
  border-bottom: none;
}
.inscrito .name-inscrito{
  font-weight: bold;
}


.menu-mobile-header{display: none}
.modal-relatorio{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #00000080;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.modal-relatorio .modal-center{
 background: #FFF;
 padding: 20px;
 border-radius: 5px;
 position: relative;
 width: 80%;
 max-width: 400px;
}
.modal-relatorio .modal-center input[type=submit]{
  width: 100%;
  border-radius: 6px;
  border:none;
  line-height: 50px;
  background: #17a435;
  font-size: 16px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color:#fff;
  margin-top: 20px;
}
.modal-relatorio .modal-center span{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 10px auto;
  display: block;
}
.close-modal{
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  font-size: 30px;
  line-height: 28px;
  background: #FFF;
  border-radius: 50%;
  cursor: pointer;

}
.show-modal{
  display: flex;
}
.btn-padrao{
  border: none;
  background: #5dff68;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px auto;
}
@media (max-width: 900px) {
  
  .menu-lateral{
    display: none;
  }
  .menu-mobile-header{
    position: fixed;
    top: 0;
    left: 0;
    margin-bottom: 100px;
    height: 50px;
    background: #0062af;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }
  .menu-mobile-header .icon-open-menu{
    font-size: 20px;
    color: #FFF;
    cursor: pointer;
  }
  .content-admin{
    margin-top: 100px;
    width: 100%;
    margin-left: 0;
  }
  .open-mobile{
    display: block;
    position: fixed;
    width: 100%;
    margin-top: 72px;
  }
  .open-mobile .logo{
    display: none;
  }
  .dash-box{
    width: 100%;
  }
}
/*PESQUISA DE SATISFAÇÃO*/
.satisfacao-form select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #c2c8d0;
  border-radius: 6px;
  box-sizing: border-box;
  color: #2d333a;
  font-family: inherit;
  font-size: 16px;
  height: 52px;
  line-height: 1.1;
  outline: none;
  padding-block: 1px;
  padding-inline: 2px;
  padding: 0 16px;
  width: 100%;
  margin: 5px 0;
}


.satisfacao-form  textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #c2c8d0;
  border-radius: 6px;
  box-sizing: border-box;
  color: #2d333a;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.1;
  outline: none;
  padding-block: 1px;
  padding-inline: 2px;
  padding: 16px 16px;
  width: 100%;
  margin: 5px 0;
  resize: none;
  height: 200px;
}

.satisfacao-form{
  text-align: left !important;
}

.message{
  width: calc(100% - 40px);
  background: #b8ffc0;
  border-radius: 5px;
  padding: 20px;
  border:1px solid #17a435;
}
.error-message{
  background: #ff9f9f;
  border: 1px solid red;

}
.off-message{
  display: none;
}
.dash{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  margin:10px;
}
.dash-box{
  background:#efefef;
  border:1px solid #ccc;
  padding: 10px 20px;
  border-radius:5px;
  margin-bottom:20px;
}
.dash-box p{
  font-size:14px;
}
.dash-box span{
  font-size:25px;
  font-weight:bold
}

.validarManual{
    border: none;
    background: #0062af;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px auto;
    color: #FFF;
}