.bl-modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
.bl-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}
.bl-modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.bl-modal-content .close:hover,
.bl-modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.light-modal-wrapper {
  margin-top: 5%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.light-modal-content {
  border-radius: 20px;
  background-color: #fefefe;
  margin-top: 5%;
  margin-left: auto;
  padding: 1px 10px 30px 10px;
  border: 2px solid white;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.light-modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.light-modal-content .close:hover,
.light-modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.light-modal-content .message {
  font-size: 1.2em;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.rounded-modal-content {
  width: 450px;
  border-radius: 25px;
  padding: 0px;
  padding-bottom: 30px;
}
.rounded-modal-content .bl-modal-title {
  border-bottom: 1px solid #888;
  height: 50px;
  font-weight: bold;
  color: #888;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rounded-modal-content .bl-modal-body {
  padding: 20px;
}
.rounded-modal-content .bl-modal-action {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .light-modal-wrapper {
    max-width: 100%;
  }
  .light-modal-content {
    width: 100%;
    box-sizing: border-box;
  }
}
