/* 
Модуль рейтинг ожидания премьер
*/
.movie-rate-watchlist .watchlist_btn_success i {
    color: #f60;
}
.movie-rating__green-number {
    color: var(--accent);
}
.movie-rating__grey-number {
    color: #aaa;
}
.movie-rating__red-number {
    color: red;
}
.movie-expected {
    margin-bottom: 35px;
}
.movie-expected__actions {
    display: flex;
    align-items: flex-end;
}
.movie-expected__wrapper {
    display: flex;
}
.movie-expected__percent {
    color: var(--accent);
    font-size: 25px;
    line-height: 27px;
    font-weight: 500;
}
.movie-expected__count {
    color: rgba(31,31,31,.4);
    margin-left: 8px;
    font-size: 18px;
    line-height: 22px;
    align-self: flex-end;
}
.movie-expected__btns {
    margin: 0 0 0 20px;
    align-self: flex-end;
}
.movie-expected__btns button {
    margin-right: 10px;
    padding: 5px 11px 5px 8px;
    border-radius: 3px;
    color: var(--tt);
    background: var(--bg-2);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    cursor: pointer;
    text-transform: none;
    margin-bottom: 3px;
}
.movie-expected__btns button:hover {
    opacity: 0.8;
}
.movie-expected__btns button:active {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
.movie-expected__wait.success {
    background-color: #093;
    color: white;
}
.movie-expected__nowait.success {
    background-color: #f66600;
    color: white;
}
.movie-expected__wait.success i,
.movie-expected__nowait.success i {
    color: white;
}
.movie-expected__wait i {
    color: #093;
    margin-right: 3px;
}
.movie-expected__nowait i {
    color: #f66600;
    margin-right: 3px;
}
.movie-expected__most {
    margin-top: 9px;
    font-size: 14px;
    text-decoration: none;
    color: var(--accent-red);
    margin-left: auto;
}
.movie-expected__most:hover {
    color: var(--tt);
}
.movie-expected__bar {
    height: 15px;
    width: 100%;
    color: #fe000b;
    border-radius: 0 2px 2px 0;
    background-color: rgb(255 206 173);
    margin-bottom: 8px;
}
.movie-expected__green {
    height: 15px;
    width: 90%;
    position: relative;
    color: var(--accent);
    border-radius: 2px 0 0 2px;
    background-color: rgb(158 41 79);
}
.movie-expected__green::after {
    display: block;
    width: 2px;
    height: 22px;
    content: "";
    background: var(--accent);
    position: absolute;
    right: 0;
    top: -3px;
}
@media only screen and (max-width:525px){
    .movie-expected__most {
        margin-left: 0;
    }
    .movie-expected__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media only screen and (max-width:480px){
    .movie-expected {
        margin-bottom: 25px;
    }
}
@media only screen and (max-width:360px){
    .movie-expected__percent {
        font-size: 21px;
    }
    .movie-expected__count {
        font-size: 16px;
    }
}

.movie-rated__list {
    margin-bottom: 35px;
}
.movie-rated__list .watchlist_parent {
    border-radius: unset;
    cursor: unset;
    width: unset;
    display: flex;
}
.movie-rated__item {
    display: flex;
    padding: 10px;
    position: relative;
    border-radius: 5px;
    background: var(--ui-bg-darkest);
}
.movie-rated__list .movie-rated__item.movie-rated__item-is-watching {
    background-color: rgba(255,102,0,0.13);
}
.movie-rated__item .movie-item__rating {
    top: 6px;
    left: -7px;
}
.movie-rated__item::before {
    content: '';
    display: block;
    background: rgba(0,0,0,0.08);
    position: absolute;
    left: 20px;
    right: 20px;
    height: 1px;
    width: calc(100% - 40px);
    top: 0;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
}
.movie-rated__item:hover::before, .movie-rated__item:hover+.movie-rated__item::before {
    opacity: 0;
}
.movie-rated__item:hover {
    background-color: var(--bg-2);
}
.movie-rated__item:last-of-type {
    border-bottom: none;
}
.movie-rated__parent {
    display: flex;
    margin-right: auto;
}
.movie-rated__img {
    height: 70px;
    width: 50px;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}
.movie-rated__parent .movie-rated__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}
.movie-rated__info {
    display: flex;
    flex-direction: column;
}
.movie-rated__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 4px;
    color: var(--tt);
}
.movie-rated__other-names {
    line-height: 18px;
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
}
.movie-rated__genres {
    font-size: 13px;
    color: #777;
}
.movie-rated__number {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-right: 15px;
    color: var(--tt);
    min-width: 28px;
}
.movie-rated__rating {
    margin-right: 20px;
    margin-left: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}
.profile__movie-list .movie-rated-rating {
    text-align: right;
}
.movie-rated-rating__number{
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    margin-right: 6px;
}
.movie-rated-rating__count {
    color: #777;
    font-size: 11px;
}
.movie-rated__buttons {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.movie-rated__plus,
.movie-rated__minus {
    background-color: #fff;
    height: 28px;
    width: 28px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #cccccc7a;
    font-weight: 500;
}
.movie-rated__plus:hover,
.movie-rated__minus:hover {
    background-color: #f7f7f7;
}
.movie-rated__rating-count {
    margin:0 10px;
    color: #093;
    font-size: 0.8em;
}
.movie-rate-watchlist {
    color: #333;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.23;
    display: flex;
    flex-shrink: 0;
}
.movie-rate-watchlist i {
    font-size: 0.8em;
    color: #333;
}
.movie-rate-watchlist button {
    border: solid 1px rgba(0,0,0,0.1);
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    height: 33px;
    color: #1f1f1f;
    text-transform: none;
}
.movie-rate-watchlist button:hover {
    background-color: #f7f7f7;
}
.movie-rate-watchlist .movie-rate-watchlist__will {
    border-right-color: rgba(0,0,0,0.1);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: none;
}
.movie-rated__watchlist .movie-rate-watchlist__remove {
    width: 207px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;

}
.movie-rate-watchlist__will i {
    margin-right: 7px;
}
.movie-rate-watchlist .movie-rate-watchlist__seen {
    margin-right: 7px;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}
.movie-rated__upcoming .movie-rate-watchlist__remove {
    width: 159px;
}
.movie-rated__upcoming .movie-rate-watchlist__seen {
    margin-right: 0;
}
@media only screen and (max-width:768px){
    .movie-rated__item {
        flex-direction: column;
        border-radius: 0;
    }
    .movie-rated__parent {
        display: flex;
        margin-bottom: 10px;
    }
    .movie-rated__item-is-watching {
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .movie-rated__item-is-watching .movie-rated__buttons,
    .movie-rated__item-is-watching .movie-rated__number {
        right: 15px;
    }
    .movie-rated__buttons {
        position: absolute;
        bottom: 20px;
        right: 0;
    }
    .movie-rate-watchlist button {
        height: 28px;
        padding: 5px 7px;
    }
    .movie-rated__name {
        padding-right: 35px;
    }
    .movie-rated__number {
        color: var(--tt);
        background-color: rgba(89,89,89,.05);
        text-align: center;
        position: absolute;
        top: 20px;
        right: 0px;
        font-size: 14px;
        font-weight: 400;
        margin-right: 0;
        border-radius: 3px;
    }
    .movie-rate-watchlist__remove {
        width: 155px;
    }
}
@media only screen and (max-width:320px){
    .movie-rate-watchlist .movie-rate-watchlist__seen {
        margin-right: 5px;
    }
}
.movie-rated__rating__favor {
    display:flex;
}

.b-rgstats__help {
    border-bottom: 1px dotted #fff;
    color: #fff;
    cursor: help;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    right: 20px;
}
.hide-pop-translations {
    display: none;
}

    .slice {overflow:hidden; position:relative; transition:height .2s;}
    .slice-masked:before {content:'';position:absolute;z-index:1;bottom:0px;left:0;right:0;height:120px;pointer-events:none;
    background:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%, var(--bg) 100%);
    background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--bg) 100%);}
    .slice-btn {margin-top:-20px;  font-weight:700;}
    .slice-btn span {display:inline-block; cursor:pointer; text-decoration:underline; color:var(--accent); font-size: 12px;}