.document {
    z-index: 3;
    position: relative;
}
.document__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.document__tabs {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}
.document__tabs--item {
    border-bottom: 3px solid rgba(39, 232, 185, 0.3);
    display: flex;
    align-items: center;
    font-size: 14px;
    flex-grow: 1;
    position: relative;
    transition: all 0.5s;
    padding: 0 5px 10px;
    font-size: 20px;
    font-size: 16px;
    line-height: 1;
    padding: 0 5px 10px;
    cursor: pointer;
}
.document__tabs--item.active {
    font-weight: 600;
    border-bottom-color: rgba(39, 232, 185, 1);
}
@media screen and (min-width: 1140px) {
    .document__tabs--item {
        font-size: 20px;
    }
}
.document__content {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
}
.document__content.active {
    display: flex;
}
.document__item {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
@media screen and (min-width: 1140px) {
    .document__item {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 0;
    }
}
.document__item--text {
    word-wrap: break-word;
    font-size: 16px;
    line-height: 22.4px;
    flex-grow: 1;
    padding-right: 10px;
}
.document__item--link {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
}
@media screen and (min-width: 1140px) {
    .document__item--link {
        margin-top: unset;
    }
}
.document__item--link:before {
    content: '';    
    position: absolute;
    border-radius: 50%;
    background-color: rgba(39, 232, 185, 1);
    width: 40px;
    height: 40px;
    box-shadow: 0 0px 0px 0px rgba(39, 232, 185, 0.5);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    border-radius: 1000px;
    z-index: 1;
}
.document__item--link:hover .circle {
    transform: translate(45%, 0);
}
.document__item--link:hover .dash {
    background: var(--body-font-color);
}
.document__item--link:hover .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--body-font-color);
    border-right: 2px solid var(--body-font-color);
    transform: translate(-65%, -50%) rotate(45deg);
}
.document__item--link:hover:before {
    width: 100%;
}

.document__item--link p {
    white-space: nowrap;
    cursor: pointer;
    padding-left: 10px;
    padding: 0 8px;
    position: relative;
    z-index: 3;
}
.document__item--link .circle {
    z-index: 4;
    cursor: pointer;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    flex-grow: 0;
    display: block;
    position: relative;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.document__item--link .dash {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 10%;
    top: 50%;
    margin-top: -1px;
    margin-left: 3px;
    width: 40%;
    height: 2px;
    background: transparent;
    display: block;
    position: relative;
}
.document__item--link .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--body-font-color);
    border-right: 2px solid var(--body-font-color);
    transform: translate(-65%, -50%) rotate(45deg);
}

.news__list .accounts__item--title {
    padding-bottom: 20px;
    font-size: 26px;
}
.news__item--data {
    opacity: 0.6;
    padding: 10px 0;
}
@media screen and (min-width: 1140px) {
    .news__list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 20px;
        column-gap: 20px;
    }
}