// We need this outside the modal.scss file because the overlays are parents of the actual modals

.ReactModal__Overlay {
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.ReactModal__Overlay--after-open {
    opacity: 1 !important;
}

.ReactModal__Overlay--before-close {
    opacity: 0 !important;
}
