.custom-file-upload-alert{
    max-width: 480px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #575455;
}
.custom-file-upload-alert .upload-status{
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
}
.custom-file-upload-alert .upload-status h1{
    color: #000000;
}
.custom-file-upload-alert .upload-status p{
    color: #575455;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}


#overlay {
    z-index:100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(217, 217, 217, 0.6);
    display: none;
}

#alert-box {
    z-index:200;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 3px 3px 33px rgb(0 0 0 / 7%);
    padding: 60px;
    display: none;
}

.custom-file-upload-alert .upload-status #alert-heading{
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
}
.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
}

.alert-content {
    line-height: 1.5;
}

.show {
    display: block !important;
}
.img-container img
{
    display:block;
    margin:auto;
}
.img-container{
    margin-bottom: 32px;
}
/*To spin an img*/
.spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 480px) {
    .custom-file-upload-alert .upload-status #alert-heading{
        text-align: center;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 36px;
    }
    .custom-file-upload-alert{
        max-width:320px;
    }
}

