.modal-dialog {
  width: 100%;
  max-width: 640px;
  padding: 0;
  border: none;
  border-radius: 1rem;
  background: transparent;
}

.modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.modal-box {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.modal-content {
  padding: 1.5rem;
  color: #334155;
}

.bt-modal-close{
  background-color: #daaf3e;
  width: 12vw;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: italic;
  cursor: pointer;
  font-size: 16px;
}
.bt-modal-close:hover{
  background-color: #c49736;
}
.bt-icon{
  width: 16px;
}

div.title-modal{
  color: #daaf3e;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}