/*modal*/
[class*="modal-ovr"] {
  display: block;
  /* min-width: 30rem;
  max-width: 100%;
  min-height: 40rem;
  max-height: 100%; */
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5%;
}

.closed {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  /* background: rgba(250, 250, 250, 0.8); */
  background: rgba(0, 0, 0, 0.8);
}
[class*="modal-guts"] {
  /* position: absolute;
  top: 0;
  left: 0; */
  min-height: 30vh;
  min-width: 20vw;
  padding: 3rem;
  display: flex;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
  /* background: rgba(2, 115, 104, 1); */
  background-image: linear-gradient(42deg, #7d5da1fa, #26bdb0);
  color: white;
  border-radius: 25px;
}
[class*="modal-ovr"] .close-button {
  position: absolute;
  /* don't need to go crazy with z-index here, just sits over .modal-guts */
  z-index: 1;
  top: 10px;
  /* needs to look OK with or without scrollbar */
  right: 20px;
  border: 0;
  background: none;
  color: white;
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

[class*="modal-ovr"] .voltar-button {
  position: absolute;
  /* don't need to go crazy with z-index here, just sits over .modal-guts */
  z-index: 1;
  top: 10px;
  /* needs to look OK with or without scrollbar */
  left: 20px;
  border: 0;
  background: none;
  color: white;
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.header-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: solid aqua; */
  border-radius: 5px;
}

.div-login,
.div-register {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
}

.div-login {
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}

.div-register {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}

.body-modal-login {
  width: 100%;
  /* border: solid blue 1px; */
  padding: 2rem;
}

.is-tab-selected {
  transition: all 0.5s;
  background-position: 0;
}

.frm-mp {
  display: none;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.frm-login {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 800px) {
  [class*="modal-guts"] {
    min-height: 40vh;
    min-width: 80vw;
  }

  .body-modal-template .table-responsive {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 80%;
  }

  .tr-template-mobile {
    display: flex;
    flex-direction: column;
    border: solid;
    margin: 0 0 1rem;
  }

  .body-modal-template {
    height: 60vh;
  }
}

/* modal template */

.modal-guts-template {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(42deg, #7d5da1fa, #26bdb0);
  font-size: 1.8rem;
}

.body-modal-template {
  width: 60vw;
}

.btn-icon {
  font-size: 1.5rem;
}

.th-template-title {
  color: black;
  padding: 2rem 0 !important;
  font-size: 2rem;
}

.tr-template-mobile td,
.tr-template-mobile:hover {
  color: black;
  font-weight: 500;
}
