* {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #fff;
}
a:hover {
	color: #ff5858;
}

body {
	color: #fff;
	background-color: #1f252b;
}
body.overflowHidden {
	height: 100vh;
    overflow: hidden;
}

.wrapper {
	max-width: 1200px;
	margin: 0 auto;
    padding: 0 15px;
}
.mb {
	margin-bottom: 20px;
}
.mb2 {
	margin-bottom: 40px;
}
.center {
	text-align: center;
}
.gray {
	color: #84878b;
}
.hidden {
	display: none !important;
}

.speedbar {
    display: block;
    width: 100%;
	color: #9a9a9a;
}

.filter {
	display: flex;
    gap: 15px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}
.select {
	background: #3c434b url('../images/arrow-down.svg') right 10px center no-repeat;
    background-size: 16px;
    border-radius: 9999px;
    border: 0;
    color: #9a9a9a;
    padding: 8px 12px;
    font-size: 14px;
    width: 170px;  
  	appearance: none;
    outline: 0;
}
.filter__reset {
	background: url(../images/close.svg) left no-repeat;
    background-size: 15px;
    padding-left: 25px;
    font-size: 14px;
    user-select: none;
}
.filter__reset:hover {
	color: #fff;
}
span.filter__reset {
	opacity: .6;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel {
    display: none;
    opacity: 0;
    transition: opacity .3s linear;
    width: 100%;
    position: relative;
    z-index: 5;
    padding: 10px 0;
}
.owl-carousel .owl-stage {
    position: relative;
	display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;
    -webkit-justify-content:flex-start;
    justify-content:flex-start;
}
.owl-carousel .owl-stage-outer {position: relative; overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px);}
.owl-carousel .owl-item {position: relative; min-height: 1px; transition: 0.3s;}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled, .owl-carousel.owl-refresh .owl-item {display: none;}
.owl-carousel.owl-loaded, .owl-carousel.owl-loading, .no-js .owl-carousel {display: block; opacity: 1;}
.owl-carousel.owl-loading, .owl-carousel.owl-hidden {opacity: 0;}
.owl-carousel.owl-drag .owl-item {user-select: none;}
.owl-carousel.owl-grab {cursor: move; cursor: grab;}
.owl-carousel .animated {animation-duration: 1000ms; animation-fill-mode: both;}
.owl-carousel .owl-animated-in {z-index: 0;}
.owl-carousel .owl-animated-out {z-index: 1;}
.owl-carousel .fadeOut {animation-name: fadeOut;}
@keyframes fadeOut { 0% {opacity: 1;} 100% {opacity: 0;} }
.owl-height {transition: height 500ms ease-in-out;}
.owl-carousel .owl-item .owl-lazy {opacity: 0; transition: opacity 400ms ease;}
.owl-carousel .owl-item img.owl-lazy {transform-style: preserve-3d;}
.owl-nav {position:absolute;right:0;left: 0;top: 120px;z-index: 1;}
.owl-prev, .owl-next {
	display: block;
    width: 50px;
    height: 50px;
    background: url(../images/arrow-right.svg) 0px 3px/contain no-repeat;
    transition: all 0.3s;
    top: -50%;
    border: none;
    position: absolute;
    cursor: pointer;
    outline: none;
}
.owl-prev {
    transform: rotate(180deg) translateX(-50%);
    left: -70px;
}
.owl-next {
    right: -45px;
}
.owl-prev:hover, .owl-next:hover {
    background: url(../images/arrow-right-active.svg) 0px 3px/contain no-repeat;
    cursor: pointer;
}
.owl-dots {text-align: center; padding-top: 10px;}
.owl-dot {
	cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 10px 5px 0 5px;
    background: #e74a62;
    border: 0;
}
.owl-dot.active {background: #f9f9f9;}

/* HEADER */
.header {
	background-color: #576676;
}
.header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	height: 70px;
}
.header__logo {
	height: 100%;
	display: flex;
	align-items: center;
}
.header__logo img {
	max-width: 219px;
	height: auto;
}
.header__menu {
	height: 100%;
	display: flex;
}
.header__menu ul {
	display: flex;
	list-style: none;
}
.header__menu ul li {
	margin-right: 20px;
	align-content: center;
}
.header__menu ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
}
.header__menu ul li a:hover {
	color: #ff5858;
}
.header__search {
	flex-grow: 1;
    position: relative;
}
.header__search:before {
	content: '';
    background: url(../images/search-icon.svg) no-repeat;
    background-size: 22px;
    position: absolute;
    left: 8px;
    top: 50%;
    z-index: 9999;
    width: 22px;
    height: 21px;
    transform: translateY(-50%);
}
.header__search input {
	padding: 8px 16px 8px 34px;
	border: none;
	border-radius: 9999px;
	background-color: #161a1f;
	color: #fff;
	outline: none;
	text-align: left;
	font-size: 100%;
	width: 100%;
}
.header__search input::placeholder {
	color: #8b8d8f;
}
.header__socials {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 5px;
}
.header__socials img {
	max-width: 24px;
	height: auto;
	transition: 0.3s;
}
.header__socials img:hover {
	transform: scale(1.1);
}
.header-tab {
	position: relative;
}
.header-tab_active::after {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #ff5858;
}

.header-tab ul {
    position: absolute;
    display: none;
    flex-direction: column;
    width: 300px;
    background: #576676;
    border: 1px solid #ff5858;
    top: 70px;
    z-index: 999;
}
.header-tab:hover a {
	color: #ff5858;
}
.header-tab:hover ul {
    display: flex;
}
.header-tab ul li {
    transition: 0.3s;
    cursor: pointer;
    border-bottom: 1px solid #ff5858;
    margin-right: 0;
}
.header-tab ul li a {
    font-weight: normal;
    display: block;
    padding: 10px;
}
.header-tab ul li:last-child {
    border-bottom: none;
}
.header-tab ul li:hover {
    background: #ff5858;
    color: #fff;
}
.header-tab ul li:hover a {
    color: #fff;
}

.header-tab_favorites {
    text-indent: -9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: url(../images/favorites.svg) no-repeat center;
    background-size: 26px;
}
.header-tab_favorites:hover {
    background-image: url(../images/favorites_active.svg);
}
.header-tab_favorites__active {
    background-image: url(../images/favorites_full.svg);
}
.header-tab_favorites__active:hover {
    background-image: url(../images/favorites_active_full.svg);
}

.fav__title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: normal;
}
.fav__title:nth-of-type(2) {
    margin-top: 20px;
}

.mobile-menu-button {
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: space-around;
}
.mobile-menu-button span, .mobile-menu-button::before, .mobile-menu-button::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.mobile-menu-button_active span {
	display: none;
}
.mobile-menu-button_active::before {
	transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-button_active::after {
    transform: rotate(-45deg) translate(6px, -5px);
}

.mobile-search-button {
    display: none;
    width: 30px;
    height: 30px;
    background: url(../images/search.svg) no-repeat;
    background-size: 30px;
    cursor: pointer;
}
.mobile-search-hide-button {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/arrow-right.svg) no-repeat;
    background-size: 30px;
    transform: rotate(180deg);
}

/* MAIN */
.section__title {
	font-size: 24px;
	color: #fff;
	background: url(../images/arrow-right.svg) no-repeat right center / contain;
    background-size: 28px;
	padding-right: 30px;
	margin-bottom: 20px;
	display: inline-block;
}
.section__title:hover {
	color: #ff5858;
	background: url(../images/arrow-right-active.svg) no-repeat right 2px / contain;
}
.section__carousel {
	display: flex;
	position: relative;
    flex-wrap: wrap;
    gap: 15px;
}
.section__carousel-item {
	transition: 0.3s;
}
.section__carousel_sized .section__carousel-item {
	width: calc((100vw - 130px) / 5);
    max-width: 214px;
}
.section__carousel-item:hover, .owl-item:hover {
	transform: scale(0.90);
	color: #fff;
}
.section__carousel-item img {
	width: 100%;
	height: auto;
	transition: 0.3s;
	border-radius: 8px 8px 0 0;
	display: block;
}
.section__carousel-item:hover img {
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0px 16px 4px #ff5858;
}
.section__carousel-item-info {
	background: #393939;
	border-radius: 0 0 8px 8px;
	padding: 5px 8px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
.section__carousel-item-info-rating-green {
	color: #8cff46;
	background: url(../images/rating-green.svg) no-repeat left center / contain;
	padding-left: 20px;
}
.section__carousel-item-info-rating-blue {
	color: #46b1ff;
	background: url(../images/rating-blue.svg) no-repeat left center / contain;
	padding-left: 20px;
}
.section__carousel-item-info-rating-red {
	color: #ff5858;
	background: url(../images/rating-red.svg) no-repeat left center / contain;
	padding-left: 20px;
}

#fullsearch {
    width: 100%;
}
#searchinput {
    background: #161a1f;
    width: 100%;
    border: 0;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 100%;
    outline: 1px solid #3b454e;
}
.search-result-text {
    margin-top: 20px;
}

.navigation {
	display: flex;
    width: 100%;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.navigation span {
    color: #999999;
}
.navigation a {
	color: #ff5858;
}
.navigation a:hover {
	text-decoration: underline;
}

.page-description {
	background: #161a1f;
    border-radius: 6px;
    color: #9a9a9a;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
}
.page-description h1, .page-description h2 {
    font-size: 16px;
}

/* FULL */
.player-nav {
    background: #161a1f;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.player-nav a {
    background: #000000;
    padding: 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.full {
	width: 100%;
}
.full__middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0 10px;
}
.full__middle > div {
    width: calc(100% / 3);
}
.full__middle_serie > div {
    width: unset;
}
.full__middle > div:last-child {
    text-align: right;
}
.ya-share2__container_size_l .ya-share2__badge .ya-share2__icon {
    width: 32px !important;
    height: 32px !important;
    background-size: 32px 32px !important;
}

.rating, .unit-rating { width: 150px; height: 30px; }
.rating { font-size: 11px; margin: 10px auto; }
.unit-rating, .unit-rating li a:hover, .unit-rating li.current-rating {
    background-image: url(data:image/png;base64,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);
    -webkit-background-size: 30px auto; background-size: 30px auto;
}
.unit-rating {
    list-style: none;
    margin: 0; padding: 0;
    position: relative;
    background-position: 0 -30px;
}
.unit-rating li {
    text-indent: -90000px;
    padding: 0; margin: 0;
    float: left;
}
.unit-rating li a {
    display: block;
    width: 30px; height: 30px;
    text-decoration: none;
    border: 0 none !important;
    text-indent: -9000px;
    z-index: 17;
    position: absolute;
    padding: 0;
}
.unit-rating li a:hover {
    background-position: 0 -60px;
    z-index: 2;
    left: 0;
}
.unit-rating a.r1-unit { left: 0; }
.unit-rating a.r1-unit:hover { width: 30px; }
.unit-rating a.r2-unit { left: 30px; }
.unit-rating a.r2-unit:hover { width: 60px; }
.unit-rating a.r3-unit { left: 60px; }
.unit-rating a.r3-unit:hover { width: 90px; }
.unit-rating a.r4-unit { left: 90px; }
.unit-rating a.r4-unit:hover { width: 120px; }
.unit-rating a.r5-unit { left: 120px; }
.unit-rating a.r5-unit:hover { width: 150px; }
.unit-rating li.current-rating {
    background-position: 0 0;
    position: absolute;
    height: 30px;
    display: block;
    text-indent: -9000px;
    z-index: 1;
}
.full__title {
    font-size: 32px;
    line-height: 46px;
}
.full__year {
    color: #9a9a9a;
    font-size: 18px;
}
.full__description {
    background: #161a1f;
    border-radius: 6px;
    padding: 30px;
}
.full__description-poster {
    border-radius: 8px;
    overflow: hidden;
    width: 240px;
    min-width: 240px;
}
.full__description-poster img {
    display: block;
    width: 100%;
}
.full__description-poster-rating {
    background: #000;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    font-size: 14px;
}
.full__description-head {
    display: flex;
    gap: 20px;
}
.full__description-info {
	display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.full__description-info-inner {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.full__description-info-line {
    display: flex;
    gap: 30px;
}
.full__description-info-line span.full__description-info-line_title {
    color: #9a9a9a;
    width: 85px;
    min-width: 85px;
    display: inline-block;
}
.full__description-info-line_value {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.full__description-info-line_value span {
    background: #3c434b;
    color: #fff;
    line-height: 25px;
    border-radius: 5px;
    padding: 0 8px;
}
.season-link.active span, .season-link:hover span {
    background: #f73636;
}
.full__description-info-line_value a {
    background: #ff5858;
    color: #fff;
    line-height: 25px;
    border-radius: 5px;
    padding: 0 8px;
    text-decoration: none;
}
.full__description-info-line_value a:hover {
    background: #f73636;
}
.full__description-info-line_value_column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.full__description-text {
    font-size: 15px;
    line-height: 22px;
    color: #dfdfdf;
}
.full__description-poster-rating_kp {
    background: url({THEME}/images/kinopoisk-icon.svg) no-repeat left center;
    padding-left: 22px;
    background-size: 17px;
}

.actors {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    overflow: hidden;
    font-size: 15px;
}
.actor {
    width: calc((100% - 140px) / 8);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    height: 170px;
}   
.actor-photo {
    width: 125px;
    height: 125px;
    background: #393939;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.actor-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.show-all-actors-link {
    font-size: 12px;
    color: #ff5858;
    text-decoration: none;
    cursor: pointer;
    vertical-align: middle;
}
.show-all-actors-link:hover {
    text-decoration: underline;
}

/* SERIES */
.full_series {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #161a1f;
    border-radius: 6px;
    padding: 30px;
    margin-top: 20px;
}
.season-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.full_series__item {
    overflow: hidden;
    display: block;
    width: calc((100% - 60px) / 4);
}
.full_series__item img {
    object-fit: contain;
    width: 100%;
    border-radius: 5px;
}

.full__description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.full__description-header-see-button {
    background: #0b0c13;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    user-select: none;
}
.full__description-header-see-buttons {
    display: flex;
    gap: 15px;
}
.full__description-header-see-button_active {
    background: #ff5858;
    cursor: pointer;        
}
.full__description-header-see-button_active:hover {
    background: #f73636;
}
.fav-buttons {
    display: flex;
    gap: 20px;        
}
.fav-buttons span {
    cursor: pointer;
    padding-left: 30px;
    background-size: 22px;
    user-select: none;
}
.fav-buttons span:hover {
    color: #ff5858;
}
.fav-buttons_see {
    background: url(../images/see.svg) no-repeat center left;
}
.fav-buttons_see__active {
    background: url(../images/see_full.svg) no-repeat center left;
}
.fav-buttons_fav {
    background: url(../images/favorites.svg) no-repeat center left;
}
.fav-buttons_fav__active {
    background: url(../images/favorites_full.svg) no-repeat center left;
}

#dle-comments-list {
    display: flex;
    flex-direction: column;
}
.mass_comments_action {
    text-align: right;
    margin-top: 15px;     
}
.comments {
    width: 100%;
}
.comment {
    background: #161a1f;
    border-radius: 6px;
    padding: 30px;
    color: #dfdfdf;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}
.comment__header {
    display: flex;
    justify-content: space-between;
}
.comment__author {
    color: #ff5858;
}
.comment__date {
    color: #9a9a9a;
}
.comment__footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.bb-editor {
    width: 100%;
}
.comments-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    background: #161a1f;
    padding: 30px;
    border-radius: 6px;
    margin-top: 15px;
}
.comments-form__input, #comments, #sec_code {
    background: #101316;
    border: none;
    border-radius: 6px;
    outline: none;
    border: 1px solid #373737;
    color: #dfdfdf;
    padding: 8px 10px;
    font-size: 15px;
    width: 100%;
}
.comments-form__input:focus, #comments:focus {
    border: 1px solid #ff5858;
}

.button {
    background: #ff5858;
    color: #fff;
    padding: 8px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}    
.button:hover {
    background: #f73636;
}
        
.DLEPush {
	z-index: 2001;
	position: fixed;
	right: 20px;
	top: 20px
}

@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.DLEPush-notification.wrapper {
	animation-name: DLEPush-show;
	animation-duration: 1s;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
	background-color: #fff;
	border-radius: 10px;
    padding: 0;
}

.DLEPush-notification .DLEPush-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 45px;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
}

.DLEPush-notification .DLEPush-icon svg {
	scale: .8;
}

.DLEPush-notification .DLEPush-header {
	font-weight: 500;
	grid-column: 2;
	grid-row: 1;
	font-size: 1rem;
	margin-left: 1rem;
	margin-top: .5rem;
}
.DLEPush-notification .DLEPush-header:empty {
	margin-top: 0;
}

.DLEPush-notification .DLEPush-message {
	grid-column: 2;
	grid-row: 2;
	font-size: .875rem;
	margin: 1rem;
}

.DLEPush-notification .DLEPush-message li, .DLEPush-notification .DLEPush-message ul {
	list-style-type: none;
	padding-left: 0;
}

.DLEPush-notification .DLEPush-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-weight: 300;
	background: none;
	border: 0;
	font-size: 1.15rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: inherit;
	outline: 0;
	opacity: 0.75;
}

@media only screen and (min-width: 601px) {
	.DLEPush-notification.wrapper {
		min-width: 400px;
	}
}

.DLEPush-notification .DLEPush-close:hover {
	opacity: 1;
}

.DLEPush-notification.wrapper.push-success {
	background-color: #e0f2f1;
}

.DLEPush-notification.wrapper.push-success .DLEPush-icon {
	background-color: #00897b;
}

.DLEPush-notification.wrapper.push-warning {
	background-color: #FFF3E0;
}

.DLEPush-notification.wrapper.push-warning .DLEPush-icon {
	background-color: #FF9800;
}

.DLEPush-notification.wrapper.push-error {
	background-color: #FBE9E7;
}

.DLEPush-notification.wrapper.push-error .DLEPush-icon {
	background-color: #FF5722;
}

/* FOOTER */
.footer {
	background-color: #161a1f;
}
.footer__wrapper {
	min-height: 136px;
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
	gap: 40px;
	padding: 35px 15px;
}
.footer__logo img {
	width: 134px;
	height: auto;
	transition: 0.3s;
}
.footer__logo img:hover {
	transform: scale(1.1);
}
.footer__info {
	display: flex;
	gap: 5px;
	line-height: 1.5;
}
.footer__icon {
	width: 24px;
	height: 24px;
	transition: 0.3s;
}
.footer__icon:hover {
	transform: scale(1.1);
}
.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #9a9a9a;
	align-items: flex-end;
}
.footer__contacts a {
	color: #dfdfdf;
	text-decoration: underline;
}

/* MEDIA */
@media (max-width: 1300px) {
    .owl-nav {
        display: none;
    }
}

@media (max-width: 1200px) {
    .actors {
    	justify-content: space-between;
    }
	.actor {
    	width: 125px;
    }
}

@media (max-width: 1010px) {
    .header__wrapper {
    	gap: 10px;
    }
    .header__menu, .header__search, .header__socials, .header-tab_active::after {
    	display: none;
    }
    .header__menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        background: #1f252b;
        width: 100%;
        height: 100%;
        z-index: 999;
	}
    .header__menu_active {
		display: block;
	}
    .header__menu ul {
    	flex-direction: column;
    	align-items: center;
    }
    .header__menu ul li {
    	width: 100%;
        margin-right: 0;
    }
    .header__menu ul li a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid #393939;
        width: 100%;
        text-align: center;
    }
    .header-tab:hover ul {
    	display: none;
    }
    .header-tab_favorites {
        height: unset;
        text-indent: unset;
        background-image: none !important;
    }
    .header-tab_favorites:hover {
        background-image: none !important;
    }
    .header__socials_active {
		display: flex;
        position: absolute;
        bottom: 10px;
        z-index: 9999;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }
    .header__socials_active img {
    	max-width: 30px;
    }
    .mobile-menu-button {
    	display: flex;
    }
    .mobile-search-button {
    	display: block;
    }
    .full__middle {
    	flex-direction: column;
    }
    .full__middle > div {
    	width: 100%;
        text-align: center;
    }
    .full__middle > div:last-child {
        text-align: center;
        margin: 20px 0;
    }
    .full_series__item {
    	width: calc((100% - 40px) / 3);
        max-width: none;
    }
}

@media (max-width: 900px) {
    .section__carousel_sized .section__carousel-item {
        width: calc((100% - 40px) / 3);
        max-width: unset;
    }
    .player-nav {
    	flex-wrap: wrap;
        gap: 20px;
    }
    .player-nav a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .full__title {
    	font-size: 20px;
        line-height: 25px;
    	margin-top: 15px;
    }
    .full__year {
    	font-size: 12px;
    }
    .full__description-info {
    	font-size: 14px;
        gap: 10px;
    }
    .full__description-info-inner {
    	gap: 10px;
        width: auto;
    }
    .full__description-poster {
        width: 170px;
        min-width: 170px;
    }
    .mobile-hide {
    	display: none !important;
    }
    .full__description-info-line_title:after {
    	content: ': ';
    }
    .full__description-info-line span.full__description-info-line_title {
        width: auto;
    	min-width: unset;
    }
    .full__description-info-line {
        gap: 5px;
    }
    .full_series__item {
    	width: calc((100% - 20px) / 2);
    }
    .actors {
    	gap: 10px;
    }
    .actor {
    	width: 100px;        
    }
    .actor-photo {
    	width: 100px;
        height: 100px;
    }
    .actor-photo img {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 520px) {
    .header__logo img {
    	max-width: 170px;
    }
    h2 {
    	font-size: 18px;
    }
    .full__description-head {
        flex-direction: column;
        gap: 10px;
    }
    .full__description-poster {
        margin: 0 auto;
    }
    .fav-buttons span  {
    	text-indent: -99999px;
    }
    .section__carousel_sized .section__carousel-item {
        width: calc((100vw - 55px) / 2);
    }
    .footer__wrapper {
    	justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    .full_series__item {
    	width: 100%;
    }
}
