@import url("https://fonts.googleapis.com/css2?family=Questrial:wght@700&display=swap");
.content {
  display: none;
}

.btn {
  cursor: pointer;
  color: rgba(68, 69, 70, 0.3);
  font-family: "Questrial", sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 60px;
}

.cmimet-container {
  background: rgba(217, 217, 217, 0.8);
}

.table-container {
  width: 100%;
  margin: 0 auto;
  /* Centers the div horizontally */
}

table {
  width: 100%;
  border-collapse: collapse;
}

tr,
td {
  text-align: left;
  border: 1px solid #d4d0d0;
  background: #fff;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
  color: rgb(0, 0, 0);
  padding: 10px;
  width: 50%;
}

th {
  background-color: #f4f4f4;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
}

.material-icons {
  vertical-align: middle;
  margin-left: 8px;
}

.lista-title {
  font-family: "Questrial", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 65px;
  color: rgb(68, 69, 70);
}

.table-1 {
  margin-top: 0px;
}

.table-2 {
  background: rgba(217, 217, 217, 0.8);
  margin-top: 0px;
  color: #111;
}

body > section > div > table > tbody > tr:nth-child(1) {
  background-color: rgba(217, 217, 217, 0.8);
  padding: 10px 0;
  display: block;
  color: rgba(68, 69, 70, 0.5);
}

body > section > div > table > tbody > tr:nth-child(3) {
  background-color: rgba(217, 217, 217, 0.8);
  display: block;
  padding: 10px 0;
  color: rgba(68, 69, 70, 0.5);
}

thead th {
  color: rgba(0, 0, 0, 0.8);
  background: rgba(185, 187, 189, 0.3);
  font-family: "Questrial", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  padding: 10px;
}

.popup .overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}

.popup .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 2000px;
  height: 1500px;
  z-index: 2;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  font-size: 30px;
}

.popup .close-btn {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background: rgb(148, 195, 218);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.popup.active .overlay {
  display: block;
}

.popup.active .content {
  transition: all 300ms ease-in-out;
  transform: translate(-50%, -50%) scale(1);
  width: 1000px;
  height: auto;
  padding: 0;
}

.modal-dialog {
  width: 90vw;
  max-width: initial !important;
}

.btn-close {
  background: #94c3da;
  border-radius: 50%;
  width: 60px;
  height: 58px;
  color: white;
  font-size: 36px;
}

.modal-body {
  padding: 0px;
}

@media (max-width: 1200px) {
  .popup.active .content {
    width: 700px;
    height: auto;
  }
  .title {
    font-size: 20px;
    line-height: 35px;
  }
  .table-2 {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .popup.active .content {
    width: 300px;
    height: auto;
    font-size: 10px;
  }
  .title {
    font-size: 20px;
    line-height: 40px;
  }
  .table-2 {
    font-size: 15px;
  }

  .modal-dialog {
    width: 100vw;
    margin: auto;
  }
}
