/**
 * Modales (referencia Claro)
 */
.modal-overlay {
  align-items: flex-start;
  position: fixed;
  justify-content: center;
  padding: 10rem 1rem 1rem 1rem;
  background: rgba(0, 0, 0, 0.56);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  animation: fadeIn 0.3s;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-overlay .modal {
  position: relative;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal .icon-button.modal__close,
.modal__close-icon {
  margin-left: auto;
  padding: 12px;
  margin-right: -12px;
  position: absolute;
  top: 0;
  right: 0;
}

.modal__title {
  font-family: var(--claro-font);
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-align: center;
  margin: 0 0 10px 0;
}

.modal__body {
  font-family: var(--claro-font);
  font-size: 1rem;
  line-height: 1.2rem;
  margin: 0;
}

.modal__body--center {
  text-align: center;
}

.modal-form .form-control {
  margin-bottom: 1rem;
}

#modal-helper {
  margin-top: 10px;
}

#btn-forgot-email {
  margin-top: 24px;
}

.modal__emails-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.modal__emails-list[hidden] {
  display: none;
}

.modal__helper {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--claro-gray);
}

.modal__helper[hidden] {
  display: none;
}

.text-bold {
  font-weight: bold;
}

#kc-check-line {
  display: flex;
  flex-direction: column;
}

#kc-check-line button {
  align-self: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
