.ccninscr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: #1515159e;
    z-index: 100000;
    overflow: auto;
}

.ccninscr-modal > .ccninscr-modal-content {
    opacity: 0;
    transform: translateY(20px);
    margin-top: 6rem;
    margin-bottom: 3rem;
    padding: 2rem;
    padding-top: 2.5rem;
    position: relative;
    top: -3rem;
    min-width: min(100vw, 400px);
    background: white;
    border-radius: 4px;
    box-shadow: 0 3px 50px -5px #5f5f5fba;
    transition: all 0.3s ease-out;
}

.ccninscr-modal > .ccninscr-modal-content.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.2s ease-in;
}

.ccninscr-modal .fas.fa-times {
    cursor: pointer;
}

.ccninscr-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.6rem;
}