@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
.modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.199);
  z-index: -1;
  opacity: 0;
}

.modal.active {
  opacity: 1;
  z-index: 1;
}

.modal.active .modal-content {
  -webkit-animation: show .3s ease;
          animation: show .3s ease;
}

@-webkit-keyframes show {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes show {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.modal-content {
  background-color: #134a92;
  width: 50vw;
  margin: 15vh auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.144);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.144);
}

.modal-content .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 100%;
  line-height: 40px;
  font-size: 1rem;
  background-color: transparent;
}

.modal-content .modal-header .modal-close {
  position: absolute;
  right: 0;
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  border-radius: 50%;
  background-color: transparent;
  color: #6ba3e2;
  margin-right: 1rem;
}

.modal-content .modal-header .modal-close:hover {
  color: #d15a82;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.modal-content .modal-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 0 5px;
  width: 90%;
  margin: 1rem 0;
}

.modal-content .modal-form .modal-field {
  width: calc(50% - 10px);
  height: 38px;
  outline-style: none;
  border-style: none;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.397);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.397);
  padding: 0 10px;
  font-size: 1rem;
  border: 1px solid rgba(191, 201, 206, 0.548);
  background-color: transparent;
  color: white;
}

.modal-content .modal-form .modal-field:focus {
  border: 1px solid #f0f0f0;
}

.modal-content .modal-form .modal-field::-webkit-input-placeholder {
  color: #5385b4;
}

.modal-content .modal-form .modal-field:-ms-input-placeholder {
  color: #5385b4;
}

.modal-content .modal-form .modal-field::-ms-input-placeholder {
  color: #5385b4;
}

.modal-content .modal-form .modal-field::placeholder {
  color: #5385b4;
}

.modal-content .modal-footer {
  text-align: right;
  padding: 0 20px;
}

.modal-content .modal-footer .button {
  height: 30px;
  width: 100px;
  margin: 2rem 8px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  color: white;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.modal-content .modal-footer .save {
  background-color: #168cec;
  -webkit-transition: .3s;
  transition: .3s;
}

.modal-content .modal-footer .save:hover {
  background-color: rgba(22, 140, 236, 0.795);
}

.modal-content .modal-footer .cancel {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.637);
}

@media (max-width: 475px) {
  .modal-content {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .modal-content .modal-footer .button {
    height: 50px;
    width: 200px;
    border-radius: 30px;
    font-size: 1.2rem;
  }
  .modal-content .modal-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    padding: 0;
  }
  .modal-content .modal-form .modal-field {
    width: 80%;
    height: 50px;
    padding-left: 2px;
    font-size: .9rem;
  }
  .modal-content .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #1279a1;
  color: white;
  font-family: 'montserrat',sans-serif;
  font-size: .9rem;
}

header {
  background-color: #0a5979;
  height: 70px;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.082);
          box-shadow: 0 1px 8px rgba(0, 0, 0, 0.082);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
}

header h2 {
  font-size: 2rem;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 90%;
  margin: 5vh auto;
  padding: 40px;
  -webkit-box-shadow: 2px 2px 10px var(--shadow-color);
          box-shadow: 2px 2px 10px var(--shadow-color);
  gap: 20px;
  background-color: rgba(41, 66, 88, 0.26);
  min-height: 75vh;
  height: auto;
  border-radius: 6px;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.055);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.055);
}

main table {
  width: 100%;
}

main table thead {
  text-align: left;
}

main table th {
  border-left: 7px solid transparent;
  background-color: rgba(24, 61, 94, 0.452);
  font-size: 1.1rem;
  border-radius: 2px;
}

main table th:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(8, 65, 114, 0.904);
}

main table tr:hover {
  background-color: rgba(24, 61, 94, 0.452);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: .2s;
  transition: .2s;
}

main table td {
  border: 7px solid transparent;
}

main table td button {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: white;
  margin: 0 4px;
  font-size: 1.5rem;
}

main table td button i {
  pointer-events: none;
}

main table td .edit {
  color: #40df87;
}

main table td .delete {
  color: #e06868;
}

main table td:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

main .cadastrar {
  height: 40px;
  width: 180px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  color: #113557;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.247);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.247);
  background-color: #16a8b3;
  color: white;
  letter-spacing: .5px;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

main .cadastrar i {
  font-size: 1.1rem;
  position: absolute;
  right: -1rem;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
  pointer-events: none;
}

main .cadastrar:hover {
  background-color: #139aa3;
  padding-right: .5rem;
}

main .cadastrar:hover i {
  right: .5rem;
  opacity: 1;
}

.popUp-alunoAdd {
  background-color: #159c9c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 200px;
  gap: 6px;
  position: absolute;
  left: 43%;
  top: -1rem;
  opacity: 0;
}

.popUp-alunoAdd i {
  font-size: 1.2rem;
}

.popUp-alunoAdd.showPopup {
  top: 1rem;
  opacity: 1;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}

@media (max-width: 425px) {
  main {
    margin: 5vh 0;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main .table {
    font-size: .5rem;
    min-width: 100%;
    width: 400px;
  }
  main .table th {
    font-size: .6rem;
  }
}

@media (max-width: 375px) {
  main .table {
    width: 375px;
  }
}

@media (max-width: 320px) {
  header h2 {
    font-size: 1.5rem;
  }
  main .table {
    width: 320px;
  }
}
/*# sourceMappingURL=main.css.map */