.modal {
    position: fixed;
    height: 100vh;
    background-color: rgba(20, 10, 10, 0.7);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    transition: 2s all;
}

@keyframes open {
    0% {
        transform: scale(0.4);
    }

    25% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}


.modal .modal-body {
    width: 60vw;
    padding: 0em .9em;
    padding-top: .5em;
    padding-bottom: 2em;
    background-color: var(--white-smoke);
    -webkit-box-shadow: 3px 4px 16px 4px rgba(0, 0, 0, 0.45);
    box-shadow: 3px 4px 16px 4px rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: .2em;
    transform: scale(1.1);
    animation: open 0.5s forwards;
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1em;
}
.svg-inline--fa{
    font-size: 2em;
    color: var(--white-smoke);
    cursor: pointer;
    background-color: var(--light-blue);
    width: 1em;
    height: 1em;
    border-radius: 50%;
}

.ready {
    color: var(--light-blue);
    font-family: var(--Gilda);
    font-size: 1.2em;
    padding-bottom: .09em;
    border-bottom: 3px solid var(--light-blue);
}

.modal-body h4 {
    margin-top: 1em;
    color: var(--light-blue);
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
    font-family: var(--Lato);
}

.modal-text {
    margin-top: 1em;
    color: var(--light-blue);
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
    font-family: var(--Lato);
}

.ready-btn {
    padding: .2em 1.1em;
    cursor: pointer;
    background-color: var(--light-blue);
    color: var(--white-smoke);
    border: none;
    margin: 0em .2em;
    margin-bottom: .5em;
    font-family: var(--Poppins);
    font-size: 1em;
    font-weight: 400;
}

#close {
    padding: .4em 3em;
    cursor: pointer;
    background-color: var(--light-blue);
    color: var(--white-smoke);
    border: none;
    font-family: var(--Poppins);
    margin-top: 1em;
    font-size: 1em;
    font-weight: 400;
}