.modal.fade {
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 1, 1);
}

.modal:not(.show) {
    pointer-events: none;
}

.modal.fade.show {
    opacity: 1;
    transition: opacity 200ms ease-out;
}

.modal.fade .modal-box {
    transform: scale(.95)
}

.modal.fade.show .modal-box {
    transform: scale(1);
}
