/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-container {
  max-width: 500px;
  background-color: #f3c627;
  margin: auto;
  width: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modal-close-container {
  width: 100%;
  text-align: right;
  padding-right: 15px;
  padding-top: 15px;
}

.close {
  color: #fff;
  font-size: 26px;
}

.modal-content {
  padding: 5px 25px 35px 25px;
  text-align: center;
}

.modal-subtitle {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
