.balance {
    margin-top: 90px;
}



/* stream-banner */
.stream-banner {
    width: 100%;
    position: relative;
}

.stream-banner.has-poster .stream-banner__video {
    opacity: 0;
}

.stream-banner__video {
    width: 100%;
    height: 250px;
    position: relative;
}

.stream-banner__video iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
}

.stream-banner__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.stream-banner__poster:hover .stream-banner__poster__icon {
    opacity: .5;
}

.stream-banner__poster.m-hide {
    display: none;
    z-index: -1;
}

.stream-banner__poster__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.stream-banner__poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.stream-banner__poster__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    vertical-align: top;
    transition: all 300ms;
}

@media (min-width: 768px) {
    .stream-banner__video {
        height: 500px;
    }
}


@media (min-width: 1025px) {
    .stream-banner__video {
        height: 775px;
    }
}




/* balance-head */

.balance-head {
    display: flex;
    margin: 30px 0 20px;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}

.balance-head .breadcrumb {
    font-size: 12px;
    line-height: 19px;
    color: #C4C4C4;
}

.balance-head .breadcrumb a {
    margin: 0 3px;
    color: #C4C4C4;
    font-size: 12px;
    line-height: 19px;
}

.balance-head .breadcrumb a:hover {
    color: #5834EA;
}

.balance-head .breadcrumb a:first-child {
    margin-left: 0;
}

.balance-head .breadcrumb span:last-child {
    margin: 0 3px;
}

@media (min-width: 1025px) {
    .balance-head {
        margin: 50px 0 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .balance .balance-head .jws-tool {
        width: max-content;
        margin-left: auto;
        margin-right: 0;
    }
}




/* balance-title */

.balance-title  {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.balance-title .entry-title {
    font-size: 37.9px;
    font-weight: 700;
    line-height: 42.64px;
    margin: 0;
}

.balance .balance-title .jws-meta-info {
    margin: 0;
}




/* balance-main */
.balance-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 24px 0 60px;
}

.balance-right,
.balance-left {
    width: 100%;
}

@media (min-width: 1025px) {
    .balance-main {
        flex-direction: row;
        justify-content: space-between;
        gap: 112px;
        margin: 24px 0 130px;
    }
    .balance-left {
        width: calc(57.7% - 56px);
    }
    .balance-right {
        width: calc(42.3% - 56px);
    }
}




/* contract-block */

.contract-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contract-block__text {
    color: #fff;
}

.contract-block__text p {
    margin: 0;
}

.contract-block__main {
    display: flex;
    gap: 20px;
}

.contract-block__media {
    width: 80px;
    min-width: 80px;
    height: 80px;
    min-height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.contract-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.contract-block__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
}

.contract-block__content__name {
    font-size: 15px;
    line-height: 17px;
    margin: 0;
}

.contract-block__content__text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    color: #fff;
}

@media (min-width: 1025px) {
    .contract-block {
        gap: 24px;
    }
}



/* contributors-block */

.contributors-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contributors-block__title {
    font-size: 21px;
    line-height: 23px;
    margin: 0;
}

.contributors-block__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.contributors-block__item {
    display: flex;
    width: auto;
    height: auto;
}

.contributors-block__item__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    max-width: 80px;
}

.contributors-block__item__wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    vertical-align: top;
}

.contributors-block__item__name {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    color: #fff;
    font-weight: 700;
    transition: all 300ms;
    text-align: center;
    word-break: break-word;
}

@media (min-width: 1025px) {
    .contributors-block {
        gap: 20px;
    }
    .contributors-block__list {
        gap: 20px;
    }
    .contributors-block__item__wrapper {
        max-width: 100px;
    }
    .contributors-block__item__wrapper img {
        width: 100px;
        height: 100px;
    }
}



/* reviews */

#reviews {
    margin: 40px 0 0;
}

#reviews #comment {
    resize: none;
    height: 130px;
    background: #141526;
}


@media (min-width: 1025px) {
    #reviews {
        margin: 75px 0 0;
    }
}




/* stream-grid */

.stream-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 60px 0;
}

.stream-grid__title {
    font-size: 21px;
    line-height: 23px;
    margin: 0;
}

.stream-grid__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 16px;
}

.stream-grid__item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stream-grid__item__main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stream-grid__item__main:hover img {
    scale: 1.1;
}

.stream-grid__item__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
    transition: all 500ms;
}

.stream-grid__item__media {
    width: 100%;
    aspect-ratio: 10/6;
    overflow: hidden;
}

.stream-grid__item__name {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    margin: 14px 0 0;
}

@media (min-width: 750px) {
    .stream-grid__item {
        width: calc(50% - 8px);
    }
}


@media (min-width: 990px) {
    .stream-grid__item {
        width: calc(33.3333% - 5.3333px);
    }
}

@media (min-width: 1025px) {
    .stream-grid {
        gap: 28px;
        margin: 120px 0;
    }
    .stream-grid__list {
        gap: 24px;
    }
    .stream-grid__item {
        width: calc(33.3333% - 16px);
    }
}

@media (min-width: 1200px) {
    .stream-grid__item {
        width: calc(25% - 12px);
    }
}

@media (min-width: 1500px) {
    .stream-grid__item {
        width: calc(20% - 9.6px);
    }
}