#loadArea-2.fixed {
    background: rgba(0,0,0,0.3) ;
    padding-top: 20px;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 100%;
    z-index: 100;
}

#loadArea-2.fixedin {
   animation: slidein .3s linear forwards;
}

#loadArea-2.fixedout {
    animation: slideout .3s linear forwards;
}

.customize-btn-1 p {
    text-align: center;
    padding: 10px 0;
    color: red;
    font-size: 14px;
    font-weight: bold;
}

.customize-btn-1 button {
    padding: 13px 0px 14px;
    background-color: rgb(229, 17, 26);
    color: rgb(255, 255, 255);
    width: 95%;
    border: none;
    border-radius: 64px;
    font-weight: bolder;
    line-height: 21px;
    font-size: 16px;
    margin: 0px 2.5% 8px;
}

@keyframes slidein {
    0% {
        top: 100%;
        height: 0;
    }

    100% {
        top: 0;
        height: 100vh;
    }
}

@keyframes slideout {
    0% {
        top: 0;
        height: 100vh
    }
    100%{
        top: 100%;
        height: 0;
    }
}
 
