.model-success,
.loading-area {
    position: fixed;
    background: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    visibility: 0;
    opacity: 0;
    transition: all 0.6 ease-in-out;
    pointer-events: none;
}

.model-success.show, .loading-area.show {
    visibility: 1;
    opacity: 1;
    pointer-events: all;
}

.model-success .inner {
    border-radius: 40px;
    background: #FFF;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 500px;
}

.model-success h2 {
    color: #484848;
    text-align: center;
    font-family: var(--font-Libre-Baskerville);
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.model-success p {
    color: #484848;
    text-align: center;
    font-family: var(--font-EB-Garamond);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 22.68px */
    letter-spacing: 0.81px;
    max-width: 300px;
}


.loading-area {
    display: grid;
    place-items: center;
    height: 100vh;
}

.loader div {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    transform: scale(0);
    animation: animate 1.5s ease-in-out infinite;
    display: inline-block;
    margin: .5rem;
}

.loader div:nth-child(0) {
    animation-delay: 0s;
}

.loader div:nth-child(1) {
    animation-delay: 0.2s;
}

.loader div:nth-child(2) {
    animation-delay: 0.4s;
}

.loader div:nth-child(3) {
    animation-delay: 0.6s;
}

.loader div:nth-child(4) {
    animation-delay: 0.8s;
}

.loader div:nth-child(5) {
    animation-delay: 1s;
}

.loader div:nth-child(6) {
    animation-delay: 1.2s;
}

.loader div:nth-child(7) {
    animation-delay: 1.4s;
}

@keyframes animate {

    0%,
    100% {
        transform: scale(0.2);
        background-color: #BAD2CF;
    }

    40% {
        transform: scale(1);
        background-color: #8ed5cc;
    }

    50% {
        transform: scale(1);
        background-color: #BAD2CF;
    }
}