/* Modal styles */
.modal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(216, 141, 141, 0.1);
  padding: 20px;
  max-width: 500px;
  width: 100%;
}
.modal-body{
  box-shadow: 0 0 10px #e31b6d;
  border-radius: 6px;
}

.modal-wrap .title {
  font-family: "Raleway-bold";
  font-size: 16pt;
  line-height: 20pt;
}

.info-box {
  /* border-top: 3px solid #1b242f;  */
  margin-bottom: 20px;
  box-sizing: border-box;
  color: #444;
  padding: 15px 0px 45px 0px;
}
 .title {
  font-family: "Raleway-bold";
  font-size: 16pt;
  line-height: 20pt;
}
.tag {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #c0c0c0;
  display: block;
  font-family: "Raleway-bold";
  font-size: 8pt;
  font-weight: 300;
  padding-bottom: 15px;
}
.detail {
  font-size: 10pt;
  line-height: 14pt;
  margin-top: 13px;
}

.button_modal {
  padding: 10px 20px;
  background-color: #e31b6d;
  color: #fff;
  text-decoration:wavy;
  border-radius: 5px;
}

.button_modal:hover {
  transition: background-color 0.5s ease;
  background-color:  #dcdada;
  color: #e31b6d;
}

.btn-close {
  position: absolute;
  top: 4px;
  right: 6px;
  /* background: transparent; */
  border: none;
  font-size: 12px;
  color: #444;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

/* For screens smaller than 576px (extra small devices) */
@media (max-width: 575.98px) {
  .modal-content {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }
}

/* For screens between 576px and 991.98px (small devices) */
@media (min-width: 576px) and (max-width: 991.98px) {
  .modal-content {
    max-width: 90%;
    border-radius: 6px;
  }
}

/* For screens between 992px and 1199.98px (medium devices) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .modal-content {
    max-width: 80%;
  }
}

/* For screens larger than 1200px (large devices) */
@media (min-width: 1200px) {
  .modal-content {
    max-width: 500px; /* Your original max-width */
  }
}
