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

#welcome-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;
}

#welcome-modal h2 {
  color: #000;
  /* padding: 1rem; */
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 7vw, 2rem);
  line-height: 0.9;
}

#welcome-modal #welcome-modal-close {
  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;
}

#welcome-modal #welcome-modal-close:focus,
#welcome-modal #welcome-modal-close:hover {
  color: #000;
  background-color: #eee;
  outline: 0;
  cursor: pointer;
}

#welcome-modal p {
  font-size: 1rem;
  text-align: left;
  padding: 0.3rem 0.5rem;
  line-height: 1.3;
}

#welcome-modal h3 {
  text-align: center;
}

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

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

.float-right-modal {
  float: right;
  margin-left: 1rem;
}

@media (max-width: 500px) {
  .float-right-modal {
    float: none;
    margin: 1rem auto 0;
  }
}
/* end welcome modal */
