/*Write your custom style or CSS code here*/
.img-circle {
    border-radius: 50%;
}


.fade {
  transition: opacity 0.15s linear;
}

.modal-backdrop {
  background-color: rgba(255, 255, 255, 0.5) !important; /* Mayor opacidad y prioridad */
  backdrop-filter: blur(6px) !important; /* Aplica desenfoque */
  transition: opacity 0.15s linear;
}

.modal-backdrop.show { /* Bootstrap 5 usa "show" en lugar de "in" */
  opacity: 1 !important;
}

.modal-dialog {
  top: 50%;
  transform: translateY(-50%) !important;
}

.modal-content {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  border: 0;
}
.modal .modal-header {
    background-color: #ffffff !important;
}
.modal-content .panel-heading.modal-header {
  background-color: #fff !important;
  border-color: #e9eaec !important;
  color: #5e636e !important;
  padding: 16px 24px;
}

.modal-content .panel-heading.modal-header .modal-title {
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  justify-content: space-between;
  flex-flow: row-reverse;
}

.modal-content .panel-heading.modal-header .close {
  margin: 0;
  color: #acafb9 !important;
  font-size: 26px;
  opacity: 1;
  font-weight: 400;
}
.close{
    color: #acafb9 !important;
}
 
.modal-content .modal-body {
  padding: 24px;
  color: #5e636e;
}

.modal-content .modal-footer {
  border-color: #e9eaec;
  padding: 16px 24px;
}
