* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0px 10px 10px 10px;
  font-family: "Roboto", sans-serif;
}

h1 {
  padding: 10px;
  text-align: center;
  background-color: #3a8476;
  border-radius: 5px;
  color: #fff;
}

h3 {
  margin: 0;
}

fieldset {
  margin-top: 20px;
  padding: 15px;
  border: 2px solid #6c6c6c;
  border-radius: 5px;
}

legend {
  background-color: #dadada;
  padding: 5px;
  border-radius: 5px;
}

input[type="text"],
select {
  padding: 10px;
  font-size: 20px;
  border: 2px solid gray;
  border-radius: 5px;
  outline: none;
}

input[type="text"]:disabled,
select:disabled {
  border: 2px solid gray;
  background-color: #ececec;
}

input[type="text"]:focus,
select:focus {
  border: 2px solid black;
}

select {
  background-color: #fff;
}

select > option {
  padding: 10px;
}

label {
  font-size: 20px;
}

button {
  cursor: pointer;
  font-size: 15px;
  border-radius: 3px;
  padding: 10px 15px;
  border: 1px solid transparent;
}

button:disabled {
  opacity: 0.65;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.btn-principal {
  color: white;
  font-size: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3a8476;
}

.container {
  max-width: 800px;
  margin: auto;
}

.container-big {
  max-width: 1024px;
  margin: auto;
}

.atencao {
  display: inline-block;
  margin-bottom: 10px;
  background-color: #feca57;
  padding: 5px;
  border-radius: 5px;
}

.avisos {
  padding: 20px 30px;
  font-weight: bold;
  text-align: justify;
  border: 2px solid #6c6c6c;
  border-radius: 3px;
  background-color: #f6eac2;
}

.font-bold {
  font-weight: bold;
}

.formfield-fluid {
  display: block;
  margin-bottom: 15px;
}

.formfield-fluid:last-of-type {
  margin-bottom: 0;
}

#respBox {
  margin-top: 15px;
}

.flex {
  display: flex;
}

.matricula {
  margin-right: 5px;
  width: 110px;
}

.telefone {
  margin-left: 5px;
  width: 180px;
}

.full-control {
  text-transform: uppercase;
  width: 100%;
}

#inNome {
  text-overflow: ellipsis;
}

#alertaBox {
  margin-top: 10px;
  color: #d44950;
  text-align: justify;
}

.tab {
  overflow: hidden;
  border: 2px solid #6c6c6c;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #f1f1f1;
  margin-top: 20px;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px;
  font-size: 20px;
  margin-top: 0;
  color: black;
  border-radius: 0;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  padding: 15px;
  border: 2px solid #6c6c6c;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.tabcontent > h3 {
  margin-bottom: 10px;
}

.tabcontent .btn-nova-matricula {
  flex-grow: 1;
  color: white;
  background-color: #3498db;
}

.tabcontent .btn-nova-matricula:first-child {
  margin-right: 5px;
}

#listaMatriculados {
  margin-top: 20px;
}

.lista-vazia {
  color: red;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.form-control {
  margin-bottom: 10px;
}

.form-control-inline {
  display: inline-block;
}

.form-control-full {
  flex-grow: 1;
}

.form-control label {
  display: block;
  font-size: 17px;
  margin-bottom: 2px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-5-flex {
  margin-left: 5px;
}

.in-dt_nascimento {
  width: 160px;
}

.in-telefone {
  width: 180px;
}

.sp-idade {
  font-weight: bold;
}

.barra-botoes-fim {
  margin-top: 20px;
}

.barra-botoes-fim button:first-child {
  margin-right: 5px;
}

.btn-adicionar {
  color: white;
  background-color: #3498db;
}

.btn-cancelar {
  background-color: lightgray;
}

.autocomplete-suggestions {
  overflow: auto;
  cursor: default;
  background: #fff;
  border: 1px solid #999;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 3px 3px 3px #ccc;
}

.autocomplete-suggestion {
  font-size: 15px;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-no-suggestion {
  padding: 10px;
}

.autocomplete-selected {
  background: #f0f0f0;
}

.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399ff;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid black;
}

th {
  background-color: #dfe4ea;
}

td,
th {
  text-align: left;
  padding: 10px;
  border: 1px solid black;
}

.column-action {
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 720px) {
  label {
    font-size: 18px;
  }

  input[type="text"],
  select {
    font-size: 18px;
  }

  .avisos {
    padding: 10px 20px;
  }

  .flex {
    flex-direction: column;
  }

  .matricula {
    width: 100px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .telefone {
    margin-left: 0;
    margin-top: 10px;
  }

  .tab button {
    padding: 10px;
    font-size: 17px;
  }

  .tabcontent .btn-nova-matricula:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .barra-botoes-fim button:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .ml-5-flex {
    margin-left: 0;
  }

  .form-control-inline {
    display: block;
  }

  .column-responsive {
    display: none;
  }
}

.swal2-icon.swal2-info,
.swal2-icon.swal2-question,
.swal2-icon.swal2-warning {
  font-size: 16px;
  margin: 2.5em auto 0.6em;
}
