@font-face {
  font-family: "MontSerrat";
  src: url("../fonts/Montserrat_Alter/MontserratAlternates-Regular.ttf");
  font-family: "Roboto";
  src: url("../fonts/google_fonts/Roboto/Roboto-Regular.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "MontSerrat", "Roboto", sans-serif;
}
* ::-webkit-scrollbar {
  background-color: #fff;
  width: 8px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
* ::-webkit-scrollbar-thumb {
  background-color: #763ecd;
  width: 8px;
  border-radius: 5px;
}

.text-content {
  display: block;
  outline: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #763ecd;
  margin: 3px;
  background-color: #fff;
  color: #763ecd;
  font-weight: normal;
  font-size: 16px;
  padding: 10px;
}

.date-content {
  display: block;
  outline: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #763ecd;
  border-radius: 10px;
  width: 20%;
  height: 20px;
  margin: 3px;
  background-color: #fff;
  color: #763ecd;
  font-weight: normal;
  font-size: 16px;
  padding: 20px;
}

.selecao-content {
  display: block;
  outline: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #763ecd;
  width: 30%;
  height: 40px;
  margin: 3px;
  background-color: #fff;
  color: #763ecd;
  font-weight: normal;
  font-size: 16px;
  padding: 5px;
}
.selecao-content:focus {
  background-color: #ddd;
  border-bottom: 1px solid #763ecd;
  border-radius: 20px;
}

.check-content {
  display: block;
  outline: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #763ecd;
  width: 20%;
  height: 20px;
  margin: 3px;
  background-color: #fff;
  color: #763ecd;
  font-weight: normal;
  font-size: 16px;
  padding: 5px;
}
.check-content:focus {
  background-color: #ddd;
  border-bottom: 1px solid #763ecd;
  border-radius: 20px;
}

.text-content::-moz-placeholder {
  color: #763ecd;
}

.text-content::placeholder {
  color: #763ecd;
}

.text-content:focus {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background-color: #ddd;
  border-bottom: 1px solid #763ecd;
  border-radius: 20px;
}

.btn {
  display: block;
  outline: none;
  border: none;
  width: 50%;
  height: 40px;
  background-color: #763ecd;
  color: #fff;
  border-radius: 7px 7px 0 0;
  margin: 2px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.1s;
  letter-spacing: 1.5px;
}
.btn:hover {
  background-color: #fff;
  color: #763ecd;
  border-bottom: 4px solid #763ecd;
  border-top: 1px solid #763ecd;
  border-left: 1px solid #763ecd;
  border-right: 1px solid #763ecd;
}
@media screen and (max-width: 700px) {
  .btn {
    width: 100%;
  }
}

.btn-content {
  position: relative;
  display: block;
  outline: none;
  border: 2px solid #fff;
  width: 250px;
  height: 40px;
  margin: 3px;
  background-color: #763ecd;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.3s;
  letter-spacing: 1.5px;
}
.btn-content .progress {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 1px;
  right: 25px;
  opacity: 0;
  pointer-events: 0;
}
.btn-content .progressActive {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 1px;
  right: 25px;
  opacity: 1;
  pointer-events: all;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
  animation: efeito 2s ease infinite;
}

.btn-content:hover {
  box-shadow: 0 0 5px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.btn-content:focus {
  box-shadow: 0 0 5px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.btn-primary {
  background-color: #007bff;
}

.btn-secondary {
  background-color: #9fa6b2;
}

.btn-success {
  background-color: #28a745;
}

.btn-danger {
  background-color: #dc4c64;
}

.btn-warning {
  background-color: #e4a11b;
}

.btn-info {
  background-color: #17a2b8;
}

.btn-light {
  background-color: #fbfbfb;
}

.btn-dark {
  background-color: #332d2d;
}

.btn-info {
  background-color: #54b4d3;
}

.btn-bg {
  position: relative;
  display: block;
  width: 48%;
  height: 95%;
  outline: none;
  border: 2px solid #fff;
  box-shadow: 0.5px 0.5px 2px #395303;
  margin: 3px;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.3s;
  letter-spacing: 1.5px;
}

.btn-bg:hover {
  box-shadow: 0 0 8px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.btn-bg:focus {
  box-shadow: 0 0 8px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.btn-md {
  position: relative;
  display: block;
  width: 70%;
  height: 50%;
  outline: none;
  border: 2px solid #fff;
  box-shadow: 0.5px 0.5px 2px #395303;
  margin: 3px;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.3s;
  letter-spacing: 1.5px;
}

.btn-md:hover {
  box-shadow: 0 0 8px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.btn-md:focus {
  box-shadow: 0 0 8px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.text-format-rec {
  color: #0d1eb9;
  text-shadow: 0 2px 2px #aaa;
  font-size: 24px;
}
@media screen and (max-width: 700px) {
  .text-format-rec {
    font-size: 20px;
  }
}

.text-format-pag {
  color: #e21111;
  text-shadow: 0 2px 2px #aaa;
  font-size: 24px;
}
@media screen and (max-width: 700px) {
  .text-format-pag {
    font-size: 20px;
  }
}

.text-format-md {
  font-size: 38px;
  color: #333;
}
@media screen and (max-width: 700px) {
  .text-format-md {
    font-size: 22px;
  }
}

.titulo-content {
  color: #763ecd;
  font-weight: 600;
  align-items: flex-start;
}

.content-tabela {
  width: 98%;
  height: 71%;
  overflow-y: auto;
  border: 1px solid #ccc;
}
@media screen and (max-width: 700px) {
  .content-tabela {
    width: 99vw;
    margin-top: 3%;
  }
  .content-tabela .dtNascimento {
    display: none;
  }
}
.content-tabela .tTabela {
  width: 100%;
  height: 10vh;
  border-spacing: 0;
  margin: 0 auto;
}
.content-tabela .tTabela .tCabecalho tr {
  background-color: #763ecd;
  letter-spacing: 1px;
}
.content-tabela .tTabela .tCabecalho tr .crAD {
  display: none;
}
.content-tabela .tTabela .tCabecalho tr .cpAD {
  display: none;
}
.content-tabela .tTabela .tCabecalho tr th {
  border-top: 2px solid #763ecd;
  border-bottom: 2px solid #763ecd;
  padding: 2px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .content-tabela .tTabela .tCabecalho tr th {
    font-size: 12px;
  }
}
.content-tabela .tTabela .tCorpo tr:nth-child(odd) {
  background-color: #93cb27;
  color: #fff;
}
.content-tabela .tTabela .tCorpo tr {
  cursor: pointer;
}
.content-tabela .tTabela .tCorpo tr td {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .content-tabela .tTabela .tCorpo tr td {
    font-size: 14px;
  }
}
.content-tabela .tTabela .tCorpo tr:hover {
  background-color: #ddd;
  color: #763ecd;
}
.content-tabela .tTabela .tCorpo img {
  width: 25px;
  height: 25px;
}

.flt1 ~ .tFLT1 {
  margin-top: -30px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt1:focus ~ .tFLT1,
.flt1:valid ~ .tFLT1 {
  transform: translateY(-26px);
  font-size: 14px;
}

.flt2 ~ .tFLT2 {
  margin-top: -30px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt2:focus ~ .tFLT2,
.flt2:valid ~ .tFLT2 {
  transform: translateY(-26px);
  font-size: 14px;
}

.flt3 ~ .tFLT3 {
  margin-top: -30px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt3:focus ~ .tFLT3,
.flt3:valid ~ .tFLT3 {
  transform: translateY(-26px);
  font-size: 14px;
}

.flt4 ~ .tFLT4 {
  position: absolute;
  left: 5%;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt4:focus ~ .tFLT4,
.flt4:valid ~ .tFLT4 {
  transform: translateY(-25px);
  font-size: 14px;
}

.flt5 ~ .tFLT5 {
  position: absolute;
  left: 55%;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt5:focus ~ .tFLT5,
.flt5:valid ~ .tFLT5 {
  transform: translateY(-25px);
  font-size: 14px;
}

.flt6 ~ .tFLT6 {
  position: absolute;
  left: 55%;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt6:focus ~ .tFLT6,
.flt6:valid ~ .tFLT6 {
  transform: translateY(-25px);
  font-size: 14px;
}

.flt7 ~ .tFLT7 {
  margin-top: -30px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt7:focus ~ .tFLT7,
.flt7:valid ~ .tFLT7 {
  transform: translateY(-26px);
  font-size: 14px;
}

.flt8 ~ .tFLT8 {
  margin-top: -30px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

.flt8:focus ~ .tFLT8,
.flt8:valid ~ .tFLT8 {
  transform: translateY(-26px);
  font-size: 14px;
}

.progress {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 1px;
  right: 25px;
  opacity: 0;
  pointer-events: 0;
}

.progressActive {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 1px;
  right: 25px;
  opacity: 1;
  pointer-events: all;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
  animation: efeito 2s ease infinite;
}/*# sourceMappingURL=control.css.map */