.block-documents{
    display: flex;
    flex-direction: column;
    padding: 0px;
    box-sizing: border-box;
}
.block-documents .title-documents{
    margin-bottom: 64px;
    font-size:  56px;
    font-weight: 500;
    line-height: 1.2;
}
.block-documents .documents-list{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.block-documents .documents-wrapp{
    display: flex;
    flex-wrap: wrap;
    gap:48px
}
.block-documents .document{
    flex: 0 0 calc(25% - 48px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    box-sizing: border-box;
    border-radius: 24px;
    border: 2px solid var(--wp--preset--color--grey);
    background: var(--wp--preset--color--dirty-white);


}

.block-documents .document .title-document{
    color: #000;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 32px;
}
.block-documents .document .category-date{
    display: flex;
    flex-direction: column;
    height: 100px;
}
.block-documents .document .category-document{
    margin-right: 16px;
    padding-right: 16px;
    font-size: 28px;
    color: var(--wp--preset--color--primary);
}
.block-documents .document .date-document{
    font-size: 28px;
}
.block-documents .document .right-document{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 32px;
}

.block-documents .year-slider {
    display: flex;
    margin-bottom: 64px;
    align-items: center;
}
.block-documents .year-slider.slick-noarrows .slick-track,
.block-documents .year-slider.slick-noarrows .slick-list{
    width: 100%!important;
}
.block-documents .year-slider .year{
    width: auto !important;
    min-width: 86px;
    text-align: center;
    color:var(--wp--preset--color--dark-blue);
    font-size: 32px;
    font-weight: 400;
    line-height: 144.444%;
    cursor: pointer;
    border-radius: 40px;
    padding: 24px 32px;
    border: 2px solid var(--wp--preset--color--grey);
    background: var(--wp--preset--color--light-grey);
}
.block-documents .year-slider .slick-track {
    display: flex;
    gap: 40px;

}
.block-documents .year-slider .slick-current{
    border: 2px solid var(--wp--preset--color--primary);
    background: var(--wp--preset--color--primary);
    color:var(--wp--preset--color--background);


}
.block-documents .year-slider .slick-current:after{
    content: "";
}
.block-documents .year-slider .arrow{
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.block-documents .year-slider .arrow::after {
    content: "";
    border: solid #000;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    height: 6px;
    width: 6px;
    display: block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.block-documents .year-slider .arrow.arrow-prev::after {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
.block-documents .year-slider .arrow.arrow-next::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.block-documents .document .date-document-mobile{
    display: none;
}


.block-documents .accordion{
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;

}
.block-documents .accordion .accordion-desc {
    display:none;
    margin-top: 24px;
}
.block-documents .accordion-title{
    font-size: 48px;
    cursor: pointer;
}
.block-documents .accordion-title:after{
    content: "";
    position: absolute;
    background-color: var(--wp--preset--color--dark-blue);
    -webkit-mask-image: url(../../assets/images/arrow-up.svg);
    mask-image: url(../../assets/images/arrow-up.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    background-size: cover;
    width: 36px;
    height: 32px;
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
    right: 0;
    margin: unset;
    transform: rotate(180deg);
}
.block-documents .active .accordion-title:after{
    transform: rotate(0deg);
}
.block-documents .document-type-info{
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    font-size: 32px;
}
.block-documents .document-type-info:before{
    content: "";
    display: inline-block;
    width: 64px;
    height: 64px;
    background-size: cover;
}

.block-documents .document-type-info.document-type-jpg:before,
.block-documents .document-type-info.document-type-png:before,
.block-documents .document-type-info.document-type-jpeg:before{
    background-image:  url(../../assets/images/type-jpg.svg);
}
.block-documents .document-type-info.document-type-pdf:before{
    background-image:  url(../../assets/images/type-pdf.svg);
}

.block-documents .document-type-info.document-type-xlsx:before,
.block-documents .document-type-info.document-type-xls:before{
    background-image:  url(../../assets/images/type-xls.svg);
}
.block-documents .document-type-info.document-type-zip:before{
    background-image:  url(../../assets/images/type-zip.svg);
}
.block-documents  .mobile-select{
    display: none;
}
@media only screen and (max-width: 3000px) {
    .block-documents .documents-wrapp{
        gap:24px
    }

    .block-documents .title-documents{
        margin-bottom: 32px;
        font-size:  28px;
    }
    .block-documents .document-type-info{
        margin-bottom: 24px;
        font-size: 16px;
    }
    .block-documents .document .category-date{
        height: 50px;
    }
    .block-documents .accordion-title{
        font-size: 24px;
    }
    .block-documents .accordion-title:after{
        width: 18px;
        height: 16px;
    }
    .block-documents .document-type-info:before{
        width: 32px;
        height: 32px;
    }
    .block-documents .documents-list{

    }
    .block-documents .document{
        flex: 0 0 calc(25% - 24px);
        padding: 24px;
        border-radius: 12px;
        border: 1px solid var(--wp--preset--color--grey);
    }

    .block-documents .document .right-document{
        font-size: 16px;
    }
    .block-documents .document .title-document{
        font-size: 18px;
        margin-bottom: 16px;
    }
    .block-documents .document .date-document{
        font-size: 14px;
    }
    .block-documents .document .category-document{
        margin-right: 8px;
        padding-right: 8px;
        font-size: 14px;

    }
    .block-documents .year-slider {
        margin-bottom: 32px;
    }
    .block-documents .year-slider .year{
        min-width: 43px;
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 20px;

        border: 1px solid var(--wp--preset--color--grey);
        background: var(--wp--preset--color--light-grey);
    }
    .block-documents .year-slider .slick-track {
        gap: 20px;

    }
    .block-documents .year-slider .slick-current{
        border: 1px solid var(--wp--preset--color--primary);
        background: var(--wp--preset--color--primary);
        color:var(--wp--preset--color--background);
    }
    .block-documents .year-slider .arrow{
        min-width: 24px;
        height: 24px;
    }
    .block-documents .year-slider .arrow::after {
        border-width: 0 2px 2px 0;
        padding: 3px;
        height: 4.5px;
        width: 4.5px;
    }
}
@media only screen and (max-width: 1500px) {
    .block-documents .size-document{
        display: none;
    }

}
@media only screen and (max-width: 1200px) {
    .block-documents .document{
        flex: 0 0 calc(50% - 24px);
    }
}
@media only screen and (max-width: 800px) {
    .block-documents .mobile-select{
        display: block;
        margin-bottom: 20px;
    }
    .block-documents .year-slider{
        display: none;
    }
    .block-documents .document .category-document{
        margin-right:0px;
        padding-right: 0px;
        border-right: none;
        font-size: 14px;
    }
    .block-documents .document .date-document{
        display: none;
    }
    .block-documents .document .date-document.date-document-mobile{
        display: block;
        font-size: 12px;
    }
    .block-documents .document .title-document {
        font-size: 16px;
    }
    .block-documents .document{
        flex: 0 0 100%;
        padding: 16px;
    }
    .block-documents .accordion-title{
        font-size: 20px;
    }
    .block-documents .accordion-title::after {
        width: 14px;
        height: 12px;
        margin-top: 9px;
    }
    .block-documents .accordion {
        margin-bottom: 16px;
    }
}