@charset "UTF-8";
.yield-table {
    padding-top: 5.6rem;
    background-color: var(--color-grey-bg);
    padding-bottom: 8rem;
}
.yield-table__head-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3.2rem;
}
.yield-table__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-family: var(--second-ff);
    -webkit-transition: color var(--transition);
    -o-transition: color var(--transition);
    transition: color var(--transition);
}
.yield-table__link:hover {
    color: var(--color-green);
}
.yield-table__link:hover .icon {
    stroke: var(--color-green);
}
.yield-table__link-icon {
    display: block;
    margin-right: 1.6rem;
    width: 1rem;
    height: 1.6rem;
    fill: none;
    stroke: var(--color-grey2);
    -webkit-transition: stroke var(--transition);
    -o-transition: stroke var(--transition);
    transition: stroke var(--transition);
}
.yield-table__nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 3rem;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}
.yield-table__nav > label {
	position: relative;
    display: block;
    color: var(--color-green);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: var(--second-ff);
    margin-left: 1.3rem;
}
.yield-table__nav > span {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: var(--second-ff);
}
.yield-table__nav .site-dates {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: var(--second-ff);
    margin-left: 1.3rem;
}
.yield-table__select {
    position: relative;
    width: auto;
    margin-left: 1.9rem;
}
.yield-table__select .choices {
    padding-right: 2rem;
}
.yield-table__select .choices::after {
    content: "";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    height: 0.6rem;
    width: 1.3rem;
    background-image: url(/local/assets/img/arow-shevron.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none !important;
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}
.yield-table__select .choices.is-open::after {
    margin-top: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.yield-table__select .choices__list--single {
    position: relative;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
    font-family: var(--second-ff);
    color: var(--color-green);
    padding: 0 !important;
}
.yield-table__select .choices__list--single::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed var(--color-green);
    content: "";
}
.yield-table__select .choices__inner {
    padding: 0 !important;
    background-color: transparent;
    border-radius: 0;
    border: none;
    min-height: 0;
    height: auto;
}
.yield-table__select .choices__placeholder {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
}
.yield-table__select .choices__list--dropdown {
    border-radius: 0;
    border: none;
    padding: 0.5rem 0 0;
    background-color: var(--color-grey-bg);
}
.yield-table__select .choices__list--dropdown ::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
    background-color: transparent;
}
.yield-table__select .choices__list--dropdown ::-webkit-scrollbar-thumb {
    background-color: var(--color-green);
}
.yield-table__select .choices__list--dropdown .choices__item {
    padding: 1.3rem 0;
    text-align: center;
    background-color: transparent;
    font-size: 1.6rem;
    line-height: 1.9rem;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    text-transform: none;
    color: var(--color-dark);
}
.yield-table__select .choices__list--dropdown .choices__item.is-selected {
    color: var(--color-orange);
}
.yield-table__select .choices__list--dropdown .choices__item:hover {
    color: var(--color-green);
}
.yield-table__text-info {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    height: 8.9rem;
    overflow: hidden;
}
.yield-table__text-info::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 249, 0)), color-stop(93.75%, #f7f7f9));
    background: -o-linear-gradient(top, rgba(247, 247, 249, 0) 0, #f7f7f9 93.75%);
    background: linear-gradient(180deg, rgba(247, 247, 249, 0) 0, #f7f7f9 93.75%);
    content: "";
}
.yield-table__text-info p {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: var(--color-grey3);
}
.yield-table__text-info a{
    color: var(--color-green);
}
.yield-table__text-info a:hover{
    text-decoration: underline;
}
.yield-table__text-info-btn {
    font-size: 1.4rem;
    line-height: 3rem;
    color: var(--color-green);
    cursor: pointer;
    margin-top: 0.2rem;
}
.yield-table__text-info-btn:hover {
    text-decoration: underline;
}
.yield-info-table {
    margin-bottom: 2.4rem;
}
.yield-info-table__td {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.yield-info-table__td:nth-child(1) {
    width: 20.2rem;
    margin-right: 0.6rem;
}
.yield-info-table__td:nth-child(2) {
    width: 10.9rem;
    margin-right: 1.8rem;
}
.yield-info-table__td:nth-child(3) {
    width: 10.9rem;
    margin-right: 0;
}
.yield-info-table__td:nth-child(4) {
    width: 12.7rem;
    margin-right: 1.8rem;
}
.yield-info-table__td:nth-child(5) {
    width: 7.7rem;
    margin-right: 4rem;
}
.yield-info-table__td:nth-child(6) {
    width: 8.4rem;
    margin-right: 4rem;
}
.yield-info-table__td:nth-child(7) {
    width: 9rem;
    margin-right: 4rem;
}
.yield-info-table__td:nth-child(8) {
    width: 8.7rem;
    margin-right: 0;
}
.yield-info-table__td:nth-child(9) {
    width: 7.9rem;
    margin-right: 2rem;
}
.yield-info-table__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7.2rem;
    padding: 1.6rem;
    border-radius: 0.8rem 0.8rem 0 0;
    background-color: var(--color-white);
}
.yield-info-table__head-td {
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: var(--color-grey3);
}
.yield-info-table__head-td:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.yield-info-table__menu-icon {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-grey4);
    margin-right: 0.4rem;
}
.yield-info-table__td-body {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-family: var(--second-ff);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color var(--transition);
    -o-transition: color var(--transition);
    transition: color var(--transition);
}
.yield-info-table__td_info {
    vertical-align: middle;
    margin-left: 2px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/local/assets/img/info.svg);
    display: inline-block;
}
.yield-info-table__td_info:hover {
    background-image: url(/local/assets/img/info-hover.svg);
}
.yield-info-table__td .tooltip__text-content {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04);
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: left;
    min-width: auto;
    width: 295px;
}
.yield-info-table__td .tootlip__title {
    font-weight: 700;
    margin-bottom: 4px;
}
.yield-info-table__td .tooltip__text-container {
    left: 0;
    bottom: 100%;
    top: auto;
    right: auto;
    transform: none;
    z-index: 10;
}
.yield-info-table__td-body.is-green{
    color: var(--color-green);
}
.data__fund-info-item-icon {
    width: 0.9rem;
    height: 0.9rem;
    fill: var(--color-green);
    margin-left: 0.5rem;
}

.yield-info-table__td-body:nth-child(1) {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.7rem;
    font-family: var(--main-ff);
    text-align: left;
}
.yield-info-table__td-body:last-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.yield-info-table__tr-inner {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.8rem 1.6rem;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow var(--transition);
    transition: -webkit-box-shadow var(--transition);
    -o-transition: box-shadow var(--transition);
    transition: box-shadow var(--transition);
    transition: box-shadow var(--transition), -webkit-box-shadow var(--transition);
}
.yield-info-table__tr-inner.mod-open .yield-info-table__td-icon-shevron {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    stroke: var(--color-green);
}
.yield-info-table__tr-inner.mod-open::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 3.2rem);
    height: 1px;
    background-color: var(--border-color);
    content: "";
}
.yield-info-table__tr-inner:hover {
    z-index: 1;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.yield-info-table__tr {
    background-color: #f2f2f2;
}
.yield-info-table__tr:nth-child(2n) {
    background-color: var(--color-white);
}
.yield-info-table__td-icon {
    width: 0.9rem;
    height: 0.9rem;
    fill: var(--color-green);
    margin-left: 0.5rem;
}
.yield-info-table__td-icon-shevron {
    fill: none;
    stroke: var(--color-grey4);
    stroke-width: 2;
    margin-left: auto;
    -webkit-transition: stroke var(--transition), -webkit-transform var(--transition);
    transition: stroke var(--transition), -webkit-transform var(--transition);
    -o-transition: stroke var(--transition), transform var(--transition);
    transition: stroke var(--transition), transform var(--transition);
    transition: stroke var(--transition), transform var(--transition), -webkit-transform var(--transition);
}
.yield-info-table__info {
    background-color: transparent;
    padding: 2.4rem 1.6rem 3.8rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
}
.yield-info-table__info-col:nth-child(1) {
    -ms-grid-column-span: 5;
    grid-column: 5 span;
}
.yield-info-table__info-col:nth-child(2) {
    -ms-grid-column-span: 7;
    grid-column: 7 span;
}
.yield-info-table__info-col p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: var(--color-grey3);
    margin-bottom: 3.4rem;
    max-width: 44.5rem;
}
.yield-info-table__info-legend {
    display: block;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: 2.8rem;
}
.yield-info-table__info-dates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-green);
    font-family: var(--second-ff);
    font-weight: 700;
    margin-bottom: 5.7rem;
}
.yield-info-table__info-dates span {
    position: relative;
    display: block;
    color: var(--color-green);
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-right: 0.5rem;
}
.yield-info-table__info-dates span::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed var(--color-green);
    content: "";
}
.yield-info-table__info-dates span:last-child {
    margin-right: 0;
    margin-left: 0.5rem;
}
.yield-info-table__info-dates-icon-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}
.yield-info-table__info-dates-icon-wrapper:hover .icon {
    fill: var(--color-green);
}
.yield-info-table__info-dates-icon-wrapper span {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.yield-info-table__info-dates-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 0.5rem;
    fill: var(--color-dark);
    -webkit-transition: fill var(--transition);
    -o-transition: fill var(--transition);
    transition: fill var(--transition);
}
.yield-info-table__info-statistics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.yield-info-table__info-statistics-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(50% - 5.1rem);
    margin-bottom: 0.7rem;
}
.yield-info-table__info-statistics-item:nth-child(1),
.yield-info-table__info-statistics-item:nth-child(3) {
    margin-right: 5.1rem;
}
.yield-info-table__info-statistics-time {
    display: block;
    font-size: 1.4rem;
    line-height: 2.1rem;
    letter-spacing: 0.02em;
    color: var(--color-grey2);
}
.yield-info-table__info-statistics-percents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: var(--second-ff);
}
.yield-info-table__info-statistics-icon {
    margin-left: 0.5rem;
    width: 1.2rem;
    height: 1.1rem;
    fill: var(--color-green);
}
.yield-info-table__info-chart {
    position: relative;
    width: 100%;
    height: 35rem;
}
.yield-info-table__mob-wrapper {
    margin-bottom: 3.2rem;
}
@media screen and (min-width: 1199px) {
    .yield-info-table__info-col .mod-mobile {
        display: none;
    }
}
@media screen and (max-width: 1440px) {
    .yield-info-table__tr-inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media screen and (max-width: 1199px) {
    .yield-info-table__td .tooltip__text-container {
        left: auto;
        right: 0;
    }
    .yield-info-table__td .tooltip__text-content {
        width: 275px;
    }
    .yield-table__head-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .yield-table__link {
        margin-bottom: 2.4rem;
    }
    .yield-info-table__td {
        width: 100% !important;
        padding: 1.6rem 0;
        border-bottom: 1px solid var(--border-color);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .yield-info-table__td:nth-child(1) {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 2.4rem;
        padding-top: 0;
    }
    .yield-info-table__td:last-child {
        padding-bottom: 0;
        border-bottom: none;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .yield-info-table__td:last-child .yield-info-table__td-icon-shevron {
        width: 100%;
        margin-left: 0;
        margin-top: 2.4rem;
    }
    .yield-info-table__td::before {
        content: attr(data-heading);
        display: block;
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 2.4rem;
        color: var(--color-dark);
    }
    .yield-info-table__head {
        display: none;
    }
    .yield-info-table__tr-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 3.2rem 2.4rem;
    }
    .yield-info-table__tr-inner:nth-child(1) {
        border-radius: 12px 12px 0 0;
    }
    .yield-info-table__tr-inner:hover:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .yield-info-table__tr {
        background-color: var(--color-white);
    }
    .yield-info-table__tr:nth-child(2n) {
        background-color: #f2f2f2;
    }
    .yield-info-table__info-col:nth-child(1) {
        display: none;
    }
    .yield-info-table__info-col:nth-child(2) {
        -ms-grid-column-span: 12;
        grid-column: 12 span;
    }
    .yield-info-table__info-col p {
        max-width: 100%;
    }
    .yield-info-table__info-dates {
        margin-bottom: 3.2rem;
    }
    .yield-info-table__info-chart {
        height: 23rem;
    }
}
@media screen and (max-width: 767px) {
    .yield-table {
        padding-bottom: 4rem;
        margin-bottom: 4rem;
    }
    .yield-table__link {
        font-size: 2rem;
        line-height: 2.8rem;
    }
    .yield-table__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .yield-table__nav > span {
        display: block;
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }
    .yield-table__nav .site-dates {
        margin-left: 0;
        font-size: 1.6rem;
    }
    .yield-table__text-info {
        gap: 24px 0;
    }
    .yield-table__text-info p {
        -ms-grid-column-span: 12;
        grid-column: 12 span;
    }
    .yield-info-table__tr-inner {
        padding: 2.4rem 1.6rem;
    }
    .yield-info-table__info {
        display: block;
    }
    .yield-info-table__info-col p {
        margin-bottom: 2.4rem;
    }
    .yield-info-table__info-legend {
        font-size: 1.6rem;
        line-height: 2.4rem;
        margin-bottom: 0.5rem;
    }
    .yield-info-table__info-dates span {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .yield-info-table__info-statistics {
        margin-bottom: 1.2rem;
    }
    .yield-info-table__info-statistics-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 50%;
        margin-right: 0 !important;
    }
    .yield-info-table__mob-wrapper {
        overflow: auto;
    }
    .yield-info-table__mob-wrapper .yield-info-table__info-chart {
        width: 60rem !important;
        height: 33rem !important;
    }
}
