.header-title {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-center {
    width: 100% !important;
    margin: 0 auto;
}

.notification {
    display: flex;
    gap: 8px;
    background: #E6F8FD;
    border: 1px solid #0198C8;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 300;
    padding: 16px;
    margin-bottom: 32px;
    color: #07222D;
    align-items: start;
}

.notification-yellow {
    border: 1px solid #CFAC43;
    background: #FEFAEE;
}
.mb-16 {
    margin-bottom: 16px;
}

.f-dropzone {
    background: none !important;
}

.notification p {
    margin: 0;
}

.smaller-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 24px;
}

.file-block {
    border-radius: 16px;
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    background: #F4F6F8;
    padding: 16px;
    gap: 16px;
    justify-content: space-between;
}

.file-block__name {
    margin-bottom: 4px;
    word-break: break-all;
}

.f-dropzone {
    padding: 16px !important;
    border-radius: 16px !important;
}

.documentTips {
    flex-wrap: wrap;
    gap: 21px;
}

.docTip {
    display: flex;
    gap: 16px;
    align-items: center;
    font-weight: 300;
    color: #7D8591;
    font-size: 12px;
}

.file-block__size {
    font-weight: 300;
    font-size: 14px;
    color: #A6B0BF;
    text-align: left;
}

.file-block__delete {
    cursor: pointer;
    font-weight: 500;
    font-size: 24px;
    color: #1F2632;
}

.chooseFileBlock {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documents {
    margin-bottom: 24px;
}

.document {
    display: flex;
    gap: 16px;
    border-radius: 16px;
    padding: 16px;
    background: #F4F6F8;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 16px;
    color: #1F2632;
}
.document-size {
    font-size: 12px;
    color: #7D8591;
}

.ConfirmedEcsCard {
    overscroll-behavior: contain;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.blacker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.success-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
}

.success-content {
    z-index: 1001;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 16px;
}

.mobile-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 8px;
    position: relative;
}

.success-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
}

.mobile-success img {
    margin-bottom: 20px;
}

.mobile-close {
    position: absolute;
    bottom: 32px;
    left: 16px;
    right: 16px;
}

.desktop-success {
    display: none;
}

@media (min-width: 768px) {
    .desktop-close {
        cursor: pointer;
        background: #EBF4FE;
        border-radius: 16px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2F88F0;
        font-size: 18px;
    }
    .desktop-success {
        display: block;
    }
    .mobile-success {
        display: none;
    }
    .success-title {
        font-size: 22px;
        line-height: 120%;
        margin-bottom: 16px;
    }
    .success-text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .success-img {
        margin-bottom: 24px;
        text-align: center;
        padding-bottom: 20px;
        padding-top: 19px;
    }
    .mobile-close {
        display: none;
    }
    .success-content {
        padding: 24px;
        z-index: 1001;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 518px;
        height: 526px;
        margin-left: -259px;
        margin-top: -263px;
        border-radius: 32px;
    }
    .blacker {
        display: block;
    }
    .documents {
        margin-bottom: 32px;
    }
    .header-title {
        font-size: 34px;
        margin-bottom: 60px;
    }
    .document {
        font-size: 16px;
    }
    .document-size {
        font-size: 14px;
    }
    
    .notification {
        margin-bottom: 48px;
    }
    .form-center {
        width: 700px !important;
    }
    .smaller-title {
        font-size: 22px;
        line-height: 120%;
        margin-bottom: 32px;
    }
    .f-dropzone {
        padding: 24px !important;
    }
    .documentTips {
        gap: 32px;
    }
    .docTip { 
        max-width: 250px;
    }
    .chooseFileBlock {
        display: flex;
        align-items: flex-start;
    }
    .mb-16 {
        margin-bottom: 16px;
    }
}