.download-document {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    gap: 24px;
}

.download-document .download-document__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.download-document .download-document__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(120, 144, 156, 0.3019607843);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.download-document .download-document__item:first-child {
    border-top: 1px solid rgba(120, 144, 156, 0.3019607843);
}

.download-document .download-document__item svg {
    width: 24px;
    height: 24px;
    margin: auto 0;
}

.download-document .download-document__item a {
    margin: auto 0;
    color: #0065DC;
    color: var(--blue-color, #0065DC);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.2px;
    letter-spacing: 0.14px;
    text-transform: uppercase;
}

.download-document .download-document__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

@media (max-width: 1280px) {
    .download-document {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 540px) {
    .download-document .download-document__item svg {
        display: none;
    }
}
