
/* sprite */

.svg-sprite {
    display: block;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.section {
    margin: 50px 0;
}

.section:first-child {
    margin-top: 0;
}

.section:last-child {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .section {
        margin: 32px 0;
    }

    .section:first-child {
        margin-top: 0;
    }

    .section:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {

    .section:first-of-type {
        margin-top: 60px;
    }
}

@media (max-width: 575px) {

    .section:first-of-type {
        margin-top: 80px;
    }
}

/* banner */

.banner {
    position: relative;
    height: 500px;
    max-width: 1600px;
    margin: 0 auto;
}

.banner__content {
    padding: 58px 0 66px;
}

.banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__bg-xs {
    display: none;
}

.banner__panel {
    background: #ef7d36;
    border-radius: 28px;
    padding: 60px 44px 50px;
    color: #fff;
    min-height: 378px;
    max-width: 570px;
}

.banner__panel-title {
    font-weight: 500;
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 8px;
}

.banner__panel-text {
    font-size: 18px;
    line-height: 28px;
    margin: 8px 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.banner__panel-search {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .banner {
        height: unset;
        max-width: 100%;
        margin: 0 0 25px;
    }

    .banner .container {
        width: 100%;
        padding: 0;
    }

    .banner__content {
        padding: 0;
    }

    .banner__bg {
        display: none;
    }

    .banner__bg-xs {
        display: block;
        width: 100%;
        height: 43.6vw;
        object-fit: cover;
    }

    .banner__panel {
        border-radius: 24px;
        padding: 24px 20px;
        min-height: unset;
        max-width: unset;
        margin-top: -24px;
    }

    .banner__panel-title {
        font-size: 20px;
        line-height: 28px;
    }

    .banner__panel-text {
        font-size: 16px;
        line-height: 24px;
    }

    .banner__panel-search {
        margin-top: 16px;
    }
}

/* big-search */

.big-search {
    position: relative;
    z-index: 9;
}

.big-search__input {
    height: 60px;
    width: 100%;
    background: #fff;
    border: 4px solid rgba(0, 0, 0, 0);
    border-radius: 18px;
    outline: none;
    transition: border-color .3s;
    padding: 0 65px;
    box-sizing: border-box;
    vertical-align: middle;
    color: #000;
    font-size: 18px;
    line-height: 21px;
}

.big-search__input:hover {
    border-color: rgba(0, 0, 0, .25);
}

.big-search__input::placeholder {
    font-size: 18px;
    line-height: 21px;
    color: #999;
}

.big-search__btn {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: opacity .2s;
    background: transparent;
    outline: none;
    border: 0;
}

.big-search__btn:focus,
.big-search__clear:focus {
    outline: none;
}

.big-search__btn:hover {
    opacity: .8;
}

.big-search__btn-icon {
    height: 24px;
    width: 24px;
}

.big-search__clear {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color .2s;
    background: transparent;
    outline: none;
    border: 0;
    color: #999;
}

.big-search__clear-icon {
    height: 24px;
    width: 24px;
}

.big-search__clear:hover {
    color: #000;
}

.big-search__result {
    position: absolute;
    top: calc(100% +  8px);
    left: 0;
    width: 100%;
    max-height: 480px;
    display: flex;
    flex-direction: column;
    transform-origin: top;
    transition: transform .3s, opacity .3s;
    transform: scaleY(0);
    opacity: 0;
    background: #fff;
    box-shadow: 0 4px 25px rgba(19, 25, 34, .1);
    border-radius: 18px;
    overflow: hidden;
}

.big-search.open .big-search__result {
    transform: scaleY(1);
    opacity: 1;
}

.big-search__result-list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: auto;
}

.big-search__result-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    text-decoration: none;
    transition: opacity .3s;
}

.big-search__result-item:hover {
    opacity: .8;
    text-decoration: none;
}

.big-search__result-item:last-child {
    margin-bottom: 0;
}

.big-search__result-icon {
    height: 50px;
    width: 50px;
    border-radius: 18px;
    margin-right: 16px;
}

.big-search__result-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.big-search__result-footer {
    flex: 0 0 auto;
    background-color: #fff;
    padding: 12px 20px;
}

.big-search__result-action {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0da6db;
    border-radius: 18px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    transition: color .3s;
}

.big-search__result-action:hover {
    color: #fff;
    background-color: #008ece;
    text-decoration: none;
}

.big-search__result-action-arrow {
    height: 17px;
    width: 17px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .big-search__input {
        font-size: 16px;
        line-height: 19px;
    }
}

/* media-grid */

.media-grid {
    display: flex;
    align-items: flex-start;
    padding: 0 32px;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 48px auto -18px;
    position: relative;
}

.media-grid__item {
    flex: 0 0 25%;
    padding: 0 5px 18px;
    position: relative;
}

.media-grid__item::before {
    content: "";
    display: block;
    padding-top: 84.2%;
}

.media-grid .tablist--main_grid {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
    height: calc(100% - 18px);
}

.media-grid .tablist--main_item {
    width: 100%;
    height: 100%;
}

.media-grid .tablist--main_item__title {
    width: calc(100% - 44px);
    max-height: calc(100% - 44px);
    bottom: 22px;
    left: 22px;
    margin: 0;
}

.media-grid-loading .media-grid {
    padding-bottom: 80px;
}

.media-grid-loading .media-grid::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 20px);
    height: 40px;
    width: 40px;
    background-image: url("/local/assets/images/loader.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: 1s linear 1s infinite forwards rotate;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1280px) {
    .media-grid__item {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 999px) {
    .media-grid__item {
        flex: 0 0 50%;
    }

    .media-grid .tablist--main_item {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {

    .media-grid {
        padding: 0 20px;
        margin: 24px auto -10px;
    }

    .media-grid__item {
        flex: 0 0 100%;
        padding: 0 0 10px;
    }

    .media-grid .tablist--main_grid {
        width: 100%;
    }


    .media-grid .tablist--main_item__title {
        width: calc(100% - 32px);
        max-height: calc(100% - 32px);
        bottom: 16px;
        left: 16px;
    }
}

/* filter */

.media-filter {
    margin: 40px 0;
}

.filter {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.filter__body {
    display: flex;
}

.filter__item {
    position: relative;
    height: 50px;
    margin: 0 12px 12px 0;
}

.filter__item-btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 0;
    outline: none;
    color: #000;
    background-color: #E8F6FC;
    transition: color .2s, background-color .2s, transform .2s;;
    padding: 0 24px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 18px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.filter__item-btn:focus {
    outline: none;
}

.filter__item-btn:hover {
    background-color: #C3DEEA;
}

.filter__item-btn:active {
    background-color: #C2DEEA;
    transform: translateY(2px);
}

.filter__item.selected .filter__item-btn {
    background-color: #0DA6DB;
    color: #fff;
}

.filter__item.selected .filter__item-btn:hover {
    background-color: #008ECE;
}

.filter__item.selected .filter__item-btn:active {
    background-color: #0077AD;
}

.filter__item-clear-all:hover {
    color: #f5821e;
}

.filter__item-clear-all--mobile {
    display: none;
}

.filter__item-drop {
    color: #4d4d4f;
}

.filter__item.filter__item--clear {
    border: 0;
}

.filter__item:last-child {
    margin-right: 0;
}

.filter__item-btn-icon {
    height: 10px;
    width: 10px;
    transition: transform .2s;
    margin-left: 12px;
}

.filter__item.open .filter__item-btn-icon {
    transform: rotate(180deg);
}

.filter__item-drop {
    min-width: 400px;
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: transform .2s, opacity .2s;
    transform-origin: top;
    transform: translateY(100%) scaleY(0);
    opacity: 0;
    padding: 12px 8px 20px;
    box-shadow: 0 4px 25px rgba(19, 25, 34, 0.1);
    border-radius: 18px;
    background: #fff;
    z-index: 6;
    /*max-height: 420px;*/
}

.filter__item-drop-list {
    display: flex;
    flex-direction: column;
}

.filter__item-drop.content-right {
    left: unset;
    right: 0;
}

.filter__item.open .filter__item-drop {
    transform: translateY(100%) scaleY(1);
    opacity: 1;
}

.filter__drop-item {
    padding: 12px;
    border-radius: 14px;
    transition: background-color.2s;
}

.filter__drop-item:hover {
    background-color: #f5f5f5;
}

.filter__item-clear-all {
    display: none;
    color: #fff;
    transition: color .2s;
    padding: 2px;
    margin-left: 10px;
}

.filter__item.selected .filter__item-clear-all {
    display: flex;
}

.filter__item.selected .filter__item-btn-icon {
    display: none;
}

.filter__item-clear-all-icon {
    height: 11px;
    width: 11px;
}

.filter__item-clear-all-text {
    display: none;
}

.filter__item-btn-selected {
    color: inherit;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 4px;
}

.filter__item .btn {
    height: 40px;
}

.filter__clear-filter-link {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-decoration: underline;
}

.filter__clear-filter-link:hover {
    color: #f5821e;
}

.filter__m-open-btn {
    display: none;
}

.filter__item-drop-header {
    display: none;
}

.filter__item-drop-footer {
    display: flex;
    align-items: center;
    margin-top: 24px;
    padding: 0 12px;
}

.filter__item-drop-footer .btn:focus,
.filter__item-drop-footer .btn:active,
.filter__item-drop-footer .btn {
    text-transform: none;
    border: 0;
    box-shadow: none;
}

.filter__item-drop-footer .btn {
    margin: 0 24px 0 0;
}

.filter__item-drop-footer .btn:last-child {
    margin-right: 0;
}

.filter__drop-clear,
.filter__drop-clear:focus {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(185, 185, 185, 0.2);
    color: #000;
    cursor: pointer;
}

.filter__drop-clear:hover,
.filter__drop-clear:active {
    color: #000;
    background-color: rgba(185, 185, 185, 0.4);
}

.filter__item.selected .filter__drop-clear {
    display: flex;
}

.filter__drop-clear-icon {
    height: 11px;
    width: 11px;
    color: #999;
    margin-left: 10px;
}

.filter-overlay {
    display: none;
}

.filter__header,
.filter__footer {
    display: none;
}

.filter button:focus {
    outline: none;
}

.filter__item.selected .filter__item-clear-all.filter__item-clear-all--mobile,
.filter__item-clear-all.filter__item-clear-all--mobile {
    display: none;
}

.filter-open__total {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #0DA6DB;
    padding: 2px 8px;
    border-radius: 44px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    margin-left: 12px;
}

.filter-open__total.show {
    display: flex;
}

.filter-open__total.show ~ .filter-open__btn-icon {
    display: none;
}

@media (max-width: 1200px) {

    .media-filter {
        margin: 0;
    }

    .filter {
        position: fixed;
        top: 37px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        background-color: #fff;
        border-radius: 24px 24px 0 0;
        z-index: 110;
        flex-wrap: nowrap;
        transition: transform .3s;
        transform: translateY(calc(100% + 200px));
    }

    .filter::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 200px;
        background: #fff;
    }

    .media-filter-open .filter {
        transform: translateY(0);
    }

    .filter-overlay {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.77);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: visibility .3s, opacity .3s;
    }

    .media-filter-open .filter-overlay {
        opacity: 1;
        visibility: visible;
    }

    .filter__header {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 26px;
        padding: 18px 18px 18px 30px;
    }

    .filter__header-title {
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        margin-right: 10px;
        color: #000;
    }

    .filter__header-close {
        height: 28px;
        width: 28px;
        color: #999;
    }

    .filter__body {
        flex: 1 1 auto;
        flex-direction: column;
        overflow: auto;
        padding: 0 30px;
    }

    .filter__footer {
        display: flex;
        flex: 0 0 auto;
        padding: 9px;
        background: #fff;
    }

    .filter__footer-btn {
        height: 50px;
        width: 100%;
        border: 0;
        margin: 0;
        box-shadow: none;
        text-transform: none;
    }

    .filter__item {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-bottom: 2px solid #f4f4f4;
    }

    .filter__item:last-child {
        border-bottom: 0;
    }

    .filter__item-btn {
        width: 100%;
        justify-content: flex-start;
        background-color: transparent;
        padding: 0;
        font-size: 18px;
        line-height: 21px;
    }

    .filter__item-drop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: 24px 24px 0 0;
        z-index: 110;
        flex-wrap: nowrap;
        transition: transform .3s;
        max-height: unset;
        min-width: unset;
        padding: 18px 9px 9px;
    }

    .filter__item .filter__item-drop {
        transform: translateY(calc(100% + 200px)) scaleY(1);
        opacity: 1;
    }

    .filter__item.open .filter__item-drop {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }

    .filter__m-open-btn {
        width: 100%;
        max-width: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        border: 1px solid #4d4d4f;
        border-radius: 100px;
        font-size: 14px;
        line-height: 24px;
        padding: 0 30px;
        margin: 0 auto 12px;
        white-space: nowrap;
    }

    .filter__m-open-btn-icon {
        height: 10px;
        width: 10px;
        margin-left: 4px;
    }

    .filter__item-drop-header {
        display: flex;
        align-items: center;
        margin-bottom: 18px;
    }

    .filter__item-drop-footer {
        padding: 0;
    }

    .filter__item .filter__item-drop-footer .btn {
        height: 50px;
    }

    .filter__item-drop-back {
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #000;
        background-color: transparent;
        border: 0;
        padding: 0 12px;
    }

    .filter__item-drop-back-icon {
        height: 17px;
        width: 10px;
        margin-right: 12px;
    }

    .filter__item-drop-clear {
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        line-height: 18px;
        color: #999;
        margin-left: 22px;
        background-color: transparent;
        outline: none;
        border: none;
    }

    .filter__item.selected .filter__item-drop-clear {
        display: flex;
    }

    .filter__item-drop-clear:active {
        color: #000;
    }

    .filter__item-drop-close {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        outline: none;
        border: none;
        margin-left: auto;
    }

    .filter__item-drop-close-icon {
        height: 28px;
        width: 28px;
    }

    .filter__item.selected .filter__drop-clear,
    .filter__drop-clear {
        display: none;
    }

    .filter__drop-confirm {
        width: 100%;
    }

    .filter__item-drop-footer .btn {
        margin: 0;
    }

    .filter__item-drop-list {
        flex: 1 1 auto;
    }

    .filter__item.selected .filter__item-btn {
        background-color: transparent;
        color: #0DA6DB;
    }

    .filter__item.selected .filter__item-clear-all,
    .filter__item-clear-all {
        display: none;
        background-color: transparent;
        border: 0;
        font-size: 15px;
        line-height: 18px;
        color: #999;
    }

    .filter__item.selected .filter__item-clear-all.filter__item-clear-all--mobile {
        display: inline-flex;
        margin-right: auto;
    }

}

/* m-checkbox  */

.m-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.m-checkbox__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.m-checkbox__label {
    font-size: 18px;
    line-height: 21px;
    transition: color .2s;
}

.m-checkbox__label a {
    margin-left: 4px;
    color: #000;
}

.m-checkbox:hover .m-checkbox__label {
    color: #000;
}

.m-checkbox__icon {
    flex: 0 0 auto;
    height: 20px;
    width: 20px;
    margin-right: 8px;
    color: #fff;
    transition: color .2s;
    border: 2px solid #AFAFAF;
    border-radius: 8px;
}

.m-checkbox__input:checked ~ .m-checkbox__icon {
    color: #0DA6DB;
    border: 0;
}

.filter-open {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1023px) {
    .filter-open {
        display: flex;
        z-index: 100;
    }

    .media-filter-open .filter-open {
        visibility: hidden;
    }

    .filter-open__btn {
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 100px;
        color: #0DA6DB;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        padding: 0 20px;
        border: 1px solid #0DA6DB;
    }

    .filter-open__btn-icon {
        height: 24px;
        width: 24px;
        margin-left: 12px;
    }
}

.req-result {
    margin: 40px 0;
}

.req-result__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.req-result__label {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 34px;
    line-height: 48px;
    margin-right: 10px;
}

.req-result__label-link {
    color: #292b2c;
    margin-right: 10px;
}

.req-result__label-icon {
    height: 22px;
    width: 22px;
}

.req-result__count {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-left: auto;
    color: #999;
}

.req-result__body {
    margin-top: 24px;
}

.req-result ul {
    font-size: 18px;
    line-height: 28px;
    color: #999;
    list-style-type:none;
    padding: 0;
    margin: 0;
}

.req-result ul li::marker {
    display: none;
}

.req-result ul li {
    position: relative;
    padding-left: 20px;
}

.req-result ul li::before {
    content: "";
    width: 12px;
    height: 1px;
    background-color: #999;
    position: absolute;
    left: 0;
    top: 12px;
}

.req-result__action {
    margin-top: 24px;
}

.req-result__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 32px;
    background-color: #0DA6DB;
    color: #fff;
    border: 0;
    box-shadow: none;
    outline: none;
    margin: 0;
    cursor: pointer;
    transition: background-color .2s;
}

.req-result__action-btn:focus {
    outline: none;
    margin: 0;
}

.req-result__action-btn:active,
.req-result__action-btn:hover {
    background-color: #008ECE;
}

@media (max-width: 768px) {

    .req-result {
        margin: 24px 0;
    }

    .req-result__head {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .req-result__label {
        align-items: baseline;
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 12px;
    }

    .req-result__label-link {
        position: relative;
        top: 1px;
    }

    .req-result__label-icon {
        height: 16px;
        width: 16px;
    }

    .req-result__count {
        margin: 0;
    }
}

/* media card */

.media-card {
    display: flex;
    align-items: center;
}

.media-card__banner {
    position: relative;
    flex: 0 0 50%;
    margin-right: 56px;
    border-radius: 20px;
    overflow: hidden;
}

.media-card__banner::before {
    content: "";
    display: block;
    padding-top: 63.2%;
}

.media-card__banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

iframe.media-card__banner-img {
    object-fit: initial;
}

.media-card__info {
    flex: 1 1 auto;
}

.media-card__info-head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.media-card__date {
    margin-left: 30px;
}

.media-card__title {
    font-weight: 500;
    font-size: 38px;
    line-height: 48px;
}

@media (max-width: 1023px) {
    .media-card {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .media-card__banner {
        flex: 0;
        margin-right: 0;
        border-radius: 18px;
    }

    .media-card__info {
        flex: 0;
        margin-bottom: 16px;
    }

    .media-card__date {
        margin-left: 16px;
    }

    .media-card__title {
        font-weight: 500;
        font-size: 24px;
        line-height: 28px;
    }
}

.files {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: -26px;
}

.files__item {
    flex: 0 0 calc(50% - 19px);
    min-height: 72px;
    display: flex;
    align-items: center;
    margin-right: 38px;
    margin-bottom: 26px;
    background-color: #F3FAFD;
    border-radius: 18px;
    padding: 16px 24px 16px 18px;
    cursor: pointer;
    transition: transforn .2s, border-color .2s;
    border: 3px solid transparent;
}

.files__item:nth-child(even) {
    margin-right: 0;
}

.files__item-logo {
    flex: 0 0 auto;
    height: 40px;
    width: 40px;
    margin-right: 15px;
}

.files__item-icon {
    flex: 0 0 auto;
    height: 26px;
    width: 22px;
    margin-left: 10px;
    transition: color .3s;
    color: #d6d6d6;
}

.files__item-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin-right: auto;
}

.files__item-title {
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 4px;
    color: #000;
}

.files__item-info {
    font-size: 16px;
    line-height: 16px;
    color: #939393;
}

.files__item:hover .files__item-icon {
    color: #00a3d9;
}

.files__item:hover {
    text-decoration: none;
    border-color: #B6DAEB;
}

.files__item:active {
    transform: translateY(2px);
}

@media (max-width: 1023px) {
    .files {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        margin-bottom: 0;
    }

    .files__item {
        flex: 0;
        margin-right: 0;
        margin-bottom: 26px;
    }

    .files__item:last-child {
        margin-bottom: 0;
    }
}