.ec-layoutRole .ec-layoutRole__main {
    width: 100%;
    background-color: #F8F9FC;
}

.download-container {
    margin: auto;
    max-width: 1200px;
}

.suggest-banner-container {
    position: relative;
}

#documents .document-sub-text {
    font-size: 16px;
    line-height: 1.5;
    color: #1B1F27;
    font-weight: 500;
}

#documents .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

#documents .checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #fff;
}

#documents .text-header {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 600;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

#documents .checkbox.checked {
    background-color: #0017C1;
    border-color: #0017C1;
}

#documents .checkbox.checked:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    background-color: transparent;
}

.bg-img-documents-item {
    min-height: 130px;
    background-repeat: no-repeat;
    background-position: center;
}

.document-suggest-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    position: absolute;
    top: 120px;
    right: 30px;
    color: #000;
    z-index: 10;
}

.document-suggest-list li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.document-suggest-sub-list-point {
    font-size: 35px;
    color: #1B1F27;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-56%);
}
#download-form .form-label {
    font-weight: 500;
    line-height: 1.5;
    color: #1B1F27;
    font-size: 17px;
    margin-bottom: 0.5rem;
}

.suggest-banner>div.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suggest-banner-info {
    position: absolute;
    font-size: 2.6em;
    font-weight: 500;
    color: #1B1F27;
    top: 0.3em;
    right: 1em;
}

.document-suggest-sub-list {
    font-size: 16px;
    font-weight: 500;
    color: #1B1F27;
}

.suggest-banner>div.banner>img {
    width: 100%;
}

.document-suggest>ul {
    margin: 0px;
}

.document-suggest>ul>li {
    display: grid;
    grid-template-columns: 55px 1fr;
    padding: 0;
    margin-bottom: 15px;
}

.document-suggest>ul>li:last-child {
    margin-bottom: 0px;
}

.document-suggest-info>sub {
    font-size: 1em;
    color: #525263;
}

.document-suggest-info>p {
    font-size: 1.2em;
    color: #22BA9E;
}

.documents-choice-item {
    text-align: center;
}

.documents-choice-item-img {
    position: relative;
}

.documents-choice-item .title {
    font-size: 1.2em;
    color: #DA1F85;
}

.load-more {
    font-size: 1.2em;
    color: #22BA9E;
    text-decoration: underline;
}

label.form-label.required::after {
    content: " *";
    color: red;
}

.ec-required {
    background-color: #F34F4F;
    color: white;
    padding: 0 2px;
    margin: 0 2px 0 0;
}

.privacy-policy-link {
    color: #0FA88B;
    text-decoration: underline
}

#documents>div {
    border: 2px solid #f0f0f0;
    background-color: #fff;
    padding: 42px 30px 42px 30px;
    border-radius: 12px;
    /* box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2); */
}

.download-complete-height {
    height: 240px;
}

#download-form form {
    font-size: 1.2em !important;
}

.btn-download:disabled,
.btn-download:disabled:hover {
    background-color: #c0c0c0 !important;
    color: #fff !important;
    border: 0;
    padding: 10px 22px;
    border-radius: 80px;
}

.btn-download:disabled .button-arrow-icon svg {
    fill: #c0c0c0 !important;
    color: #c0c0c0 !important;
    opacity: 0.7;
}

.btn-download {
    background-color: #22BA9E !important;
    color: #fff !important;
    border: 0;
    padding: 10px 22px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-width: 220px;
    max-width: 100%;
    gap: 0;
    overflow: hidden;
}

.button-arrow-icon {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    position: static;
}

.apply-button {
    width: 330px;
    height: 72px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s;
    margin-bottom: 13px;
    position: relative;
}

.download-completed-header{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #23272F;
}

.custom-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.custom-checkbox:checked {
    background-color: #007bff;
}

.custom-checkbox:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.custom-checkbox:hover {
    border-color: #888;
}

.ellipsis {
    width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.ellipsis-name {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.tooltip {
    position: relative;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 6px 10px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    border-radius: 4px;
    font-size: 32px;
    white-space: normal;
    margin-top: 4px;
    z-index: 999;
    max-width: 250px;
    line-height: 1.4;
}


@media screen and (max-width: 1172px) {
    .document-suggest-list li {
        font-size: 14px;
    }

    .document-suggest-list {
        top: 87px;
        right: 8px;
    }

    .suggest-banner-info {
        font-size: 28px;
        right: 55px;
    }

    .custom-checkbox-wrapper {
        width: auto !important;
    }

      .document-suggest-sub-list-point {
        top: 32%;
    }

    .document-suggest-sub-list-point {
        transform: translateY(-50%);
    }

}

@media screen and (max-width: 992px) {
    .ellipsis-name {
        max-width: 90%;
    }

    .custom-checkbox-wrapper {
        width: 100% !important;
    }

    .document-suggest-list {
        top: 186px;
        right: 54px;
    }

    .suggest-banner-info {
        font-size: 28px;
        right: 220px;
        top: 91px;
    }

    .ellipsis {
        width: 300px;
    }

   
}

@media screen and (max-width: 900px) {
    .document-suggest-list {
        top: 186px;
        right: 16px;
    }

    .suggest-banner-info {
        font-size: 28px;
        right: 182px;
        top: 91px;
    }
}


@media screen and (max-width: 768px) {
 

    .document-suggest-list {
        top: 150px;
        right: 54px;
    }

    .suggest-banner-info {
        right: 160px;
        top: 50px;
    }

    .ellipsis {
        width: 240px;
    }
}

@media screen and (max-width: 767px) {
    .ellipsis-name {
        white-space: wrap;

    }

}


@media screen and (max-width: 700px) {
    .document-suggest-list {
        top: 130px;
        right: 46px;
    }

    .suggest-banner-info {
        top: 34px;
        right: 110px;
    }

    .ellipsis {
        width: 200px;
    }

}

@media screen and (max-width: 600px) {
    .form-control {
        font-size: 16px !important;
    }

    .document-suggest-list {
        right: 64px;
        top: 110px;
    }

    .btn-download {
        font-size: 1em !important;
        padding: 10px 12px;
    }

    .button-arrow-icon {
        min-width: 28px;
        height: 28px;
    }

    .suggest-banner-info {
        font-size: 1.8em;
        right: 55px;
        top: 26px;
    }


    .document-suggest-list li {
        font-size: 12px;
        margin-bottom: 0;
    }

    .document-suggest-sub-list {
        right: -30px;
    }

    .ellipsis {
        width: 140px;
    }

    .document-suggest-info>sub {
        font-size: 0.8em;
    }

    .document-suggest-info>p,
    .documents-choice-item .title,
    .load-more,
    #download-form form,
    .btn-dipbox,
    .btn-dipbox:hover {
        font-size: 1em !important;
    }

    #documents .checkbox:after {
        font-size: 1.8em;
    }

}

@media screen and (max-width: 500px) {
    .document-suggest-list {
        top: 87px;
        right: 80px;
    }

     .suggest-banner-info {
        font-size: 1.4em;
        top: 24px;
    }

    .ellipsis {
        width: 100px;
    }

    .document-suggest-sub-list-point {
        font-size: 24px;
        top: 36%;
    }

}

@media screen and (max-width: 450px) { 
    .document-suggest-list {
        right: 60px;
        top: 68px;
    }

    .suggest-banner-info {
        right: 36px;
        top: 10px;
    }

    .document-suggest-sub-list {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .suggest-banner-info {
        font-size: 16px;
        right: 52px;
        top: 20px;
    }

    .document-suggest-list {
        right: 58px;
        top: 74px;
    }

    .document-suggest-list li {
        font-size: 10px;
    }

    #documents>div {
        padding: 42px 0px;
    }

}

@media screen and (max-width: 350px) {
    .document-suggest-list {
        right: 44px;
        top: 64px;
    }

    .suggest-banner-info {
        right: 36px;
        top: 12px;
    }
}