/* ***********************  MODAL POPUP *********************** */
.modal-popup .label-title {
  min-height: 3.75rem;
  height: 100%;
}
.btn-check:checked+label.checkbox-invalid, 
.btn-check:hover+label.checkbox-invalid{
  border: 2px solid red !important;
  background-color: rgb(240 90 90 / 8%) !important;
}

.modal-body .checkbox-text.inputValid {
  font-family: "Red Hat Display", sans-serif;
}

/* ***********************  ANIMATIONS MODAL CONTENT *********************** */
.animate-modal-next {
  animation: fadeInContent 500ms ease-out backwards;
  overflow: visible;
}

@keyframes fadeInContent {
  from {
    transform: translateX(250px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* ***********************  MODAL SCROLLBAR *********************** */

.modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  height: 1px;
  padding-right: 0;
  margin-right: 1.5rem !important;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.modal-body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.modal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(129, 90, 240, 0.4);
}

.modal-body::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:active {
  background: rgba(129, 90, 240, 0.8);
}
