.year-block {
    display: flex;
    flex-wrap: wrap;
}

.item-year {
    width: 60px;
    height: 30px;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #83A1AF;
    margin-right: 30px;
    border: 1px solid #83A1AF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

.quarter .text-inner {
    color: rgba(131, 161, 175, 1) !important;
}

.loader {
    display: none;
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
}

/* LOADER 2 */

.loader span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #E9B245;
    margin: 30px 5px;
}

.loader span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

.loader span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.loader span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {
    0%, 75%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.item-year.active {
    background-color: #E9B245;
    color: white;
}

.item-year:hover {
    background-color: #E9B245;
    color: white;
}

.year-header-navigation ul {
    min-width: 700px;
    display: flex;
    justify-content: space-between;
    /*border-top: 1px solid #83A1AF;*/
    padding-top: 20px;
    color: rgba(131, 161, 175, 1);
}

.year-header-navigation ul li {
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #83A1AF;
    transition: 0.3s;
}

.year-header-navigation ul li.active {
    color: #E9B245;
}

.text-inner {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #29414C;
}

.quarter-block {
    display: flex;
    justify-content: space-between;
    /*border-top: 1px solid #83A1AF;*/
    /*padding-top: 30px;*/
    margin-top: 1rem;
}

.quarter-block .text-inner {
    cursor: pointer;
}

.quarter-block .text-inner img {
    margin-right: 10px;
}

.reportPage.legal-body-right {
    padding-bottom: 0;
}

.reportPage .year-block {
    border-bottom: 1px solid #83A1AF;
}

.reportPage .year-selector .year-header-navigation-ul, .reportPage .quarter-block {
    justify-content: unset;
    flex-wrap: wrap;
}

.reportPage .year-selector .year-header-navigation-ul .quarter, .reportPage .quarter-block .text-inner {
    width: calc(85% / 4);
    margin-right: 5%;
    display: block;
}

.reportPage .year-selector .year-header-navigation-ul .quarter:nth-of-type(4n), .reportPage .quarter-block .text-inner:nth-of-type(4n) {
    margin-right: 0;
}

.reportPage .year-selector .year-header-navigation-ul, .reportPage .year-selector .year-header-navigation-ul .quarter {
    margin-bottom: 0;
}

.reportPage .text-inner {
    margin-bottom: 3rem;
}

.reportPage .legal-inner-title {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .quarter-block {
        flex-direction: column;
    }

    .quarter-block .text-inner {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .report .legal-body {
        padding-bottom: 0;
    }

    .reportPage.legal-body-right {
        padding-bottom: 0;
    }

    .reportPage .year-block .item-year {
        width: 30%;
        height: 35px;
        margin-right: 5%;
    }

    .reportPage .year-block .item-year:nth-of-type(3n) {
        margin-right: 0;
    }

    .reportPage .year-selector .year-header-navigation-ul {
        min-width: unset;
    }

    .reportPage .year-selector .year-header-navigation-ul .quarter, .reportPage .quarter-block .text-inner {
        width: 100%;
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .reportPage .year-selector .year-header-navigation-ul .quarter .text-inner {
        font-size: 16px;
        margin-bottom: 0;
    }
}