/* sms modal */
#sms-modalBG {
  background-color: rgba(0, 0, 0, 0.85);
  /* cursor: pointer; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

#sms-modal {
  background-color: #fff;
  cursor: default;
  width: 775px;
  max-width: 100%;
  margin: auto;
  padding: 0.25rem 0.25rem 1rem;
  z-index: 999;
  overflow: auto !important;
  max-height: 90vh;
  border-radius: 0.25rem;
  position: relative;
  font-family: "Lato", sans-serif;
}

#sms-modal .sms-modalHeader {
  padding: 0.5rem 0.25rem;
  display: grid;
  grid-template-columns: 75px 1fr 75px;
}

#sms-modal .sms-modalHeader img {
  width: 50px;
  justify-self: center;
}

#sms-modal .sms-modalHeader h3 {
  margin: 0;
  font-size: clamp(0.8rem, 5vw, 1rem);
  color: #000;
  text-transform: uppercase;
  align-self: center;
  padding: 0;
}

#sms-modal h2 {
  color: #000;
  padding-top: 1rem;
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 7vw, 2rem);
  line-height: 1.3;
}

#sms-modal #sms-modalClose {
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 0;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
}

#sms-modal #sms-modalClose:focus,
#sms-modal #sms-modalClose:hover {
  color: #000;
  background-color: #eee;
  outline: 0;
}

#sms-modal p:not(.modal-disclaimer) {
  font-size: 0.92rem;
  /* text-align: left; */
  /* padding: 0.3rem 0.5rem; */
  line-height: 1.5;
}

#sms-modal .sms-modalButton {
  display: block;
  padding: 0.6rem 0.25rem;
  max-width: 100%;
  width: 375px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  text-align: center;
  margin: 0.25rem auto;
  border-radius: 5px;
  font-size: clamp(1rem, 5vw, 1.1rem);
}

#sms-modal h3 {
  text-align: center;
  /* margin: 1rem auto; */
  color: #fff;
}

.modalSMSConsentMsg {
  font-size: 0.7rem !important;
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

@media screen and (max-width: 625px) {
  #sms-modal .sms-modalHeader {
    padding: 0.25rem 0.25rem;
  }

  #sms-modal .sms-modalHeader img {
    width: 40px;
  }

  #sms-modal #sms-modalClose {
    margin-top: 0;
  }

  #sms-modal h1 {
    margin: 0.75rem auto 0.25rem;
  }

  #sms-modal p {
    padding: 0.25rem 0.25rem;
  }

  #sms-modal .sms-modalButton {
    max-width: 85%;
    grid-template-columns: 50px 1fr;
  }

  #sms-modal .sms-modalButton img {
    height: 30px;
  }
}

@media (max-width: 575px) {
  .break-modal-hl {
    display: none;
  }
}

.modal-disclaimer {
  font-size: 0.6rem;
  color: #939393;
  text-align: center !important;
  line-height: 1.3;
  max-width: 700px;
  margin: 1rem auto 0.5rem;
}

p.modal-disclaimer a {
  color: #7d7d7d;
}

.modal-sms-input-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sms-modal-copy {
  padding: 0 0.5rem;
}

.sms-modal-report-img {
  filter: drop-shadow(0 0 5px #676767);
  border: 1px solid #a5a4a4;
}
/* end sms modal */
