@charset "utf-8";

.modal *, .modal ::before, .modal ::after { box-sizing: border-box; }

.modal-open { overflow: hidden; }

.modal-open .modal { overflow: hidden auto; }

.modal { position: fixed; top: 0px; left: 0px; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0px; background-color: rgba(0, 0, 0, 0.6); }

.modal-dialog { position: relative; width: auto; margin: 0.5rem; pointer-events: none; }

.modal.fade .modal-dialog { transition: transform 0.3s ease-out; transform: translate(0px, -50px); }

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog { transition: none; }
}

.modal.show .modal-dialog { transform: none; }

.modal.modal-static .modal-dialog { transform: scale(1.02); }

.modal-dialog-scrollable { display: flex; max-height: calc(100% - 1rem); }

.modal-dialog-scrollable .modal-content { max-height: calc(-1rem + 100vh); overflow: hidden; }

.modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer { flex-shrink: 0; }

.modal-dialog-scrollable .modal-body { overflow-y: auto; }

.modal-dialog-centered { display: flex; align-items: center; min-height: calc(100% - 1rem); }

.modal-dialog-centered::before { display: block; height: min-content; content: ""; }

.modal-dialog-centered.modal-dialog-scrollable { flex-direction: column; justify-content: center; height: 100%; }

.modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none; }

.modal-dialog-centered.modal-dialog-scrollable::before { content: none; }

.modal-content { position: relative; display: flex; flex-direction: column; width: 100%; pointer-events: auto; background-color: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0px; outline: 0px; }

.modal-content { padding: 0.5rem; }

@media (min-width: 768px) {
  .modal-content { padding: 1rem 1.5rem 1.5rem; }
}

.modal-backdrop { position: fixed; top: 0px; left: 0px; z-index: 1040; width: 100vw; height: 100vh; background-color: rgb(0, 0, 0); }

.modal-backdrop.fade { opacity: 0; }

.modal-backdrop.show { opacity: 0.5; }

.close { float: right; font-size: 1.5rem; font-weight: 700; line-height: 1; color: rgb(0, 0, 0); text-shadow: rgb(255, 255, 255) 0px 1px 0px; opacity: 0.5; }

.close:hover { color: rgb(0, 0, 0); text-decoration: none; }

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { opacity: 0.75; }

button.close { padding: 0px; background-color: transparent; border: 0px; }

.modal-content .modal-header { margin: 0px 15px; padding-bottom: 0px; }

.modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 0.5rem 0px; border-bottom: 1px solid rgb(221, 221, 221); border-top-left-radius: 0px; border-top-right-radius: 0px; }

.modal-header .close { padding: 0.5rem; margin: -0.5rem; }

.modal-content .close { font-size: 2.25rem; opacity: 1; }

.modal-title { font-size: 1.5rem; margin-bottom: 0px; line-height: 1.2; }

.modal-body { position: relative; flex: 1 1 auto; padding: 1rem 0px; }

.modal-content .modal-body { padding: 0.5rem 0px; }

@media (min-width: 768px) {
  .modal-content .modal-body { padding: 1rem 0px; }
}

.modal-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; border-top: 1px solid rgb(221, 221, 221); border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; }

.modal-footer > * { margin: 0.25rem; }

.modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog { max-width: 80%; margin: 4rem auto; }
  .modal-dialog-scrollable { max-height: calc(100% - 8rem); }
  .modal-dialog-scrollable .modal-content { max-height: calc(-8rem + 100vh); }
  .modal-dialog-centered { min-height: calc(100% - 8rem); }
  .modal-dialog-centered::before { height: min-content; }
  .modal-sm { max-width: 300px; }
}

@media (min-width: 992px) {
  .modal-lg, .modal-xl { max-width: 940px; }
}

@media (min-width: 1200px) {
  .modal-xl { max-width: 1140px; }
}