:root {
--bg-header:#415658;
--bg-main:#e4d6f5;
--bg-sidebar:#4f3b3b;
--bg-thumb-and-knopki:#b389bd;
--color-menu-icons-text:#141514;
--color-hover-and-text-models:#8c00ff;
--line:#92d8c1;
}



.search {
    display: flex;
    position: relative;
    max-width: 40%;
    width: 100%;
}
@media (max-width: 1024px) {
    .search {
        max-width: 100%;
        width: 100%;
    }
}
.search__input {
    display: flex;
    width: 100%;
    align-items: center;
}
@media (max-width: 767px) {
    .search__input {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 10px;
        padding: 10px;
        height: 55px;
        background: transparent;
        max-width: none;
    }
}
.search__input button {
    position: absolute;
    cursor: pointer;
    right: 20px;
    display: flex;
    top: 10px;
}
.search__input button .la {
    line-height: 30px;
    color: var(--color-menu-icons-text);
    width: 30px;
    height: 30px;
}
@media (max-width: 100px) {
    .search__input button {
        position: relative;
        right: 0;
        padding: 7px;
        background: var(--color-hover-and-text-models);
    }
    .search__input button .la {
        color: #ffffff;
        width: 20px;
        height: 20px;
    }
    .search__input button i {
        padding: 12px;
        display: block;
    }
}
.search__input .input-search {
    background: var(--bg-main);
    color: var(--color-menu-icons-text);
    border: 1px solid var(--line);
    transition: 0.3s;
    padding: 10px 40px 10px 20px;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    width: 100%;
    border-radius: 10px;
}
@media (max-width: 100px) {
    .search__input .input-search {
        height: 34px;
    }
}
@media (max-width: 100px) {
    .search__input .input-search {
        padding: 0 12px;
    }
}
.search__container {
    width: 100%;
}
@media (max-width: 100px) {
    .search__container {
        height: 80px;
        position: fixed;
        top: 0;
        left: -100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 113;
        transition: 0.3s;
    }
}
@media (max-width: 100px) {
    .search__container.open {
        left: 0;
    }
}
.search__container.open .input {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: none;
}
@media (max-width: 425px) {
    .search__container.open .input {
        border: none;
    }
}
.search__container .list {
    list-style: none;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
.search__container .list li {
    font-size: 0.75rem;
    display: flex;
    text-decoration: none;
    line-height: 20px;
    min-height: 32px;
    color: var(--color-menu-icons-text);
    white-space: nowrap;
    align-items: center;
    overflow: hidden;
}
.search__container .list li a {
    display: flex;
    flex-grow: 1;
    align-items: center;
    transition: 0.3s;
    padding: 5px 10px;
    background: var(--bg-main);
    border: 1px solid var(--bg-main);
    border-radius: 5px;
}
.search__container .list li a:hover {
    background: var(--color-menu-icons-text);
    border: 1px solid var(--line);
}
.search__container .list li .title {
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-menu-icons-text);
    font-size: 12px;
    margin-bottom: 0;
}
.search__container .list li .count {
    font-size: 12px;
    color: var(--color-menu-icons-text);
    opacity: 0.8;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.search__container .list li .count.history {
    float: right;
}
.search__container .list-group .title {
    margin-bottom: 6px;
    font-size: 14px;
    color: #ffffff;
}
.search__response {
    top: 100%;
    position: absolute;
    padding: 10px 12px;
    z-index: 102;
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--line);
}
@media (max-width: 425px) {
    .search__response {
        padding: 10px;
        z-index: 114;
        width: calc(100% - 20px);
        top: 55px;
        overflow: auto;
        border: none;
    }
}
.search__response__nomatch {
    color: var(--color-menu-icons-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
@media (max-width: 425px) {
    .search__response__nomatch {
        margin-top: 0;
    }
}
@media (max-width: 425px) {
    .search__response__wrapper {
        display: flex;
        justify-content: center;
        height: calc(100vh - 55px);
        background-color: rgba(0, 0, 0, 0.9);
    }
}
.search__response__model-wrp {
    height: 40px;
    width: 40px;
    overflow: hidden;
    margin: 6px 15px 6px 0;
    border-radius: 50%;
}
.search__response__model-img {
    width: 40px;
    margin-right: 12px;
}
.search__response__channel-img {
    height: 40px;
    margin-right: 10px;
}
.search__response__model-statistic {
    display: flex;
    flex-direction: column;
}
@media (max-width: 425px) {
    .search__response a {
        display: block;
    }
}
.search__close--mobile {
    display: none;
}
@media (max-width: 425px) {
    .search__close--mobile {
        display: block;
    }
}
.search__open--mobile {
    display: none;
}
@media (max-width: 425px) {
    .search__open--mobile {
        display: flex;
        align-items: center;
        padding: 0;
        background: transparent;
    }
    .search__open--mobile .la {
        color: var(--color-menu-icons-text);
        width: 24px;
        height: 24px;
    }
}
.search-item-focus {
    background: #ffffff;
}
.no-touch .search__container .list li:hover .title {
    color: var(--color-hover-and-text-models);
}
.select {
    position: relative;
    background: var(--color-menu-icons-text);
    font-size: 14px;
    line-height: 20px;
}
@media (max-width: 1024px) {
    .select {
        background: var(--bg-main);
    }
}
.select .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.15s ease-in-out;
    color: var(--color-menu-icons-text);
}
.select .icon--active {
    transform: rotate(180deg);
}
.select--inline {
    border: none;
    height: auto;
    background: transparent;
}
.select--inline .select__label {
    height: auto;
    padding: 0;
}
.select--inline .select__list {
    min-width: 0;
    max-width: none;
}
.select--inline .select__list ul li {
    white-space: nowrap;
}
.select.disabled .select__label {
    opacity: 0.5;
    cursor: no-drop;
}
.select--right .select__list {
    right: 0;
}
.select__label {
    display: flex;
    cursor: pointer;
    align-items: center;
    height: 52px;
    padding: 0 10px;
    border-radius: 10px;
    gap: 8px;
    color: var(--color-menu-icons-text);
    transition: 0.3s;
}
.select__label .label {
    flex-grow: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.select__label .label .flag {
    margin-right: 5px;
    vertical-align: sub;
}
.select__label .label--letter {
    text-transform: uppercase;
}
.select__label .la {
    transition: 0.3s;
}
.select__label:hover,
.select__label:hover .la {
    color: var(--color-hover-and-text-models);
    fill: var(--color-hover-and-text-models) !important;
}
.select__list {
    overflow-y: auto;
    left: 0;
    padding: 8px;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    max-height: 300px;
    min-width: 100%;
    background-color: var(--bg-main);
    z-index: 102;
    border: 1px solid var(--line);
}
.select__list::-webkit-scrollbar {
    width: 4px;
    background: var(--color-menu-icons-text);
}
.select__list::-webkit-scrollbar-thumb {
    background: var(--bg-main);
    border-radius: 2px;
}
@media (max-width: 425px) {
    .select__list {
        width: fit-content;
    }
}
.select__list .search-row {
    padding: 10px 10px 5px;
}
.select__list .search-row > .input {
    width: 100%;
}
.select__list .list {
    flex-grow: 1;
}
.select__list .list-flag {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.select__list .list::-webkit-scrollbar {
    width: 8px;
    background: none;
    padding-right: 3px;
}
.select__list .list::-webkit-scrollbar-thumb {
    margin-right: 3px;
    background: var(--color-menu-icons-text);
    border-radius: 2px;
}
.select__list ul {
    list-style: none;
    color: var(--color-menu-icons-text);
    margin: 0 !important;
    border-radius: 4px;
}
.select__list ul li {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-align: left;
    transition: 0.3s;
    gap: 5px;
}
.select__list ul li i {
    margin-right: 8px;
}
.select__list ul li:hover {
    background: var(--bg-main);
    color: #ffffff;
}
.select__list ul li a {
    display: flex;
}
.select__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    margin-bottom: 8px;
    display: block;
}
.select__icon {
    display: flex;
    align-items: center;
}
.select__icon .la {
    width: 20px;
    height: 20px;
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
    fill: var(--color-menu-icons-text);
    transition: 0.3s;
}
.select__lang {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 12px;
    width: 50px;
    transition: 0.3s;
    border: 1px solid transparent;
    background: transparent;
}
.select__lang:hover {
    border: 1px solid var(--color-hover-and-text-models);
}
@media (max-width: 1024px) {
    .select__lang:hover {
        background: var(--color-menu-icons-text);
    }
}
.select__lang--label {
    cursor: pointer;
    margin-top: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select--clean {
    background: transparent;
}
@media (max-width: 1024px) {
    .select__lang {
        width: 100%;
    }
}
.select__lang .select__list {
    max-height: none;
}
.tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
@media (max-width: 1024px) {
    .tabs {
        display: none;
    }
}
.tabs__btn {
    cursor: pointer;
    height: 24px;
    width: 24px;
    box-sizing: content-box;
    padding: 12px;
    transition: 0.3s;
    border: 1px solid transparent;
}
.tabs__btn .la {
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
    fill: var(--color-menu-icons-text);
    transition: 0.3s;
}
.tabs__btn--blink .la {
    animation: blink-ai 1s infinite alternate;
}
.no-touch .tabs__btn:hover {
    border-color: var(--color-hover-and-text-models);
}
.no-touch .tabs__btn:hover .la {
    color: var(--color-hover-and-text-models);
}
.header {
    background: var(--bg-header);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    height: 72px;
	border-radius: 0 0 20px 20px;
}
@media (max-width: 1024px) {
    .header {
        background: var(--bg-header);
        position: fixed;
        display: flex;
        justify-content: center;
        width: 100%;
        z-index: 100;
        transition: top 0.3s;
    }
}
@media (max-width: 425px) {
    .header {
        height: 55px;
    }
}
.header__wrapper {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 12px 32px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}
@media (max-width: 1024px) {
    .header__wrapper {
        padding: 10px 15px;
    }
}
.header__logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    height: 32px;
    width: 179px;
}
@media (min-width: 1024px) {
    .header__logo {
        height: 40px;
        width: 224px;
    }
    .header__logo--pornuse {
        width: 280px;
    }
}
.header__logo img {
    width: 100%;
    line-height: 20px;
}
.header__logo:hover {
    transform: scale(1.03);
}
.header__left {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
}
@media (max-width: 1024px) {
    .header__left {
        width: auto;
        gap: 20px;
    }
}
.header__right {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
@media (max-width: 1024px) {
    .header__right {
        display: none;
    }
}
.header__btn {
    cursor: pointer;
    height: 24px;
    width: 24px;
    box-sizing: content-box;
    color: var(--color-menu-icons-text);
    padding: 7px 10px;
    background: var(--bg-thumb-and-knopki);
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: .3s;
    border: 1px solid transparent;
}
.header__btn .la {
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
    transition: 0.3s;
}
.header__btn:hover .la {
	color: var(--color-hover-and-text-models);
}
@media (max-width: 425px) {
    .header__btn {
        padding: 0;
        border: none;
    }
}
@media (max-width: 1024px) {
    .header-fixed--mobile {
        top: -53px;
    }
}
.no-touch .header__btn:hover {
    border-color: var(--color-hover-and-text-models);
}
.no-touch .header__btn:hover .la {
    color: var(--color-hover-and-text-models);
}
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 32px;
}
.sidebar-categories .la {
    color: var(--color-menu-icons-text);
    fill: var(--color-menu-icons-text);
    transition: 0.3s;
    width: 30px;
    height: 30px;
}
@media (max-width: 1024px) {
    .sidebar-categories {
        width: 100%;
    }
}
.sidebar-categories__search {
    box-sizing: border-box;
    border: 1px solid var(--line);
    transition: 0.3s;
    width: 200px;
    display: flex;
    gap: 8px;
    position: relative;
}
@media (max-width: 1024px) {
    .sidebar-categories__search {
        width: 100%;
    }
}
.sidebar-categories__search__button {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 16px;
    top: 12px;
}
.sidebar-categories__search__button .la {
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
}
.sidebar-categories__search input {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    font-weight: 300;
    padding: 12px 16px 12px 48px;
}
.sidebar-categories__link {
    color: var(--color-menu-icons-text);
    padding: 7px 10px;
    background: var(--bg-thumb-and-knopki);
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: .3s;
    border: 1px solid transparent;
}
.sidebar-categories__link:hover {
    color: var(--color-hover-and-text-models);
}
.sidebar-footer {
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
}
.sidebar-footer div {
    color: var(--color-menu-icons-text);
}
.sidebar-footer__link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--color-menu-icons-text);
    transition: 0.3s;
}
.sidebar-footer__link:hover {
    color: var(--color-hover-and-text-models);
}
.sidebar-footer__copyright {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--color-menu-icons-text);
}
.sidebar-footer .la {
    margin-top: 8px;
    width: 67px;
    height: 24px;
    color: var(--color-menu-icons-text);
}
.sidebar {
    max-width: 264px;
    width: 100%;
    background: var(--bg-sidebar);
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 36px 32px;
    opacity: 1;
}
@media (max-width: 1024px) {
    .sidebar {
        border-right: 1px solid var(--line);
        max-width: 284px;
        padding: 40px 16px;
        position: absolute;
        left: 0;
        right: 0;
    }
}
.sidebar__overlay {
    margin-top: 72px;
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 264px;
    width: 100%;
    display: none;
    z-index: 999;
}
.sidebar__overlay::-webkit-scrollbar {
    position: absolute;
    width: 5px;
}
.sidebar__overlay::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar__overlay::-webkit-scrollbar-thumb {
    background-color: var(--color-menu-icons-text);
    border-radius: 20px;
}
@media (max-width: 1024px) {
    .sidebar__overlay {
        max-width: 100vw;
        z-index: 99;
        position: fixed;
        background: rgba(0, 0, 0, 0.5);
        width: 100vw;
        height: calc(100dvh - 72px);
        display: none;
    }
}
@media (max-width: 425px) {
    .sidebar__overlay {
        height: calc(100dvh - 55px);
        margin-top: 30px;
    }
}
.sidebar__navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}
.sidebar__link {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    color: var(--color-menu-icons-text);
    padding: 7px 10px;
    background: var(--bg-thumb-and-knopki);
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: .3s;
    border: 1px solid transparent;
}
.sidebar__link span {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.sidebar__link .la {
    color: var(--color-menu-icons-text);
    fill: var(--color-menu-icons-text);
    transition: 0.3s;
    width: 30px;
    height: 30px;
}
.sidebar__link:hover {
    color: var(--color-hover-and-text-models);
}
.sidebar__link:hover .la {
    color: var(--color-hover-and-text-models);
    fill: var(--color-hover-and-text-models);
}
.active-link {
    color: var(--color-hover-and-text-models);
}
.active-link .la {
    color: var(--color-hover-and-text-models);
    fill: var(--color-hover-and-text-models);
}
.input__wrapper label {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}
.input__wrapper .input {
    width: 100%;
}
.input__wrapper.error .input,
.input__wrapper.error textarea,
.input__wrapper.error .select .select-label {
    border-color: #fe5461;
}
.input__wrapper .error {
    color: #fe5461;
    font-size: 10px;
    text-align: left;
}
.spinner {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: text-bottom;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0;
    -webkit-animation: 0.75s linear infinite spinner-grow;
    animation: 0.75s linear infinite spinner-grow;
}
.spinner__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1rem;
}
@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: none;
    }
}
.textarea__wrapper label {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}
.textarea__wrapper textarea {
    width: 100%;
}
.textarea__wrapper.error textarea {
    border-color: #fe5461;
}
.textarea__wrapper .error {
    color: #fe5461;
    font-size: 10px;
    text-align: left;
    margin-top: -6px;
}
.textarea__wrapper .resize-none {
    resize: none;
}
.form-file {
    width: 100%;
}
.form-file__empty,
.form-file__uploaded {
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    padding: 0 16px;
    color: var(--color-menu-icons-text);
    height: 36px;
    font-size: 0.875rem;
    line-height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-file__uploaded .clear {
    display: flex;
}
.form-file__uploaded .clear .la {
    width: 12px;
    height: 12px;
}
.support {
    color: #ffffff;
}
.age-verification {
    padding: 15px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.age-verification__logo {
    display: flex;
}
.age-verification__logo .la {
    width: 130px;
    height: 30px;
}
.age-verification__icon {
    padding: 0 10px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid var(--color-hover-and-text-models);
    color: #ffffff;
}
.tg-button {
    width: 100%;
    min-height: 38px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #009eeb;
    color: #fff;
}
.tg-button .la {
    color: #fff;
    fill: #fff;
}
.tg-button-red {
    cursor: pointer;
    background: var(--color-hover-and-text-models);
}
.tg-loader {
    width: 24px;
    height: 24px;
    border: 5px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation-65e21619 1s linear infinite;
}
@keyframes rotation-65e21619 {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.modal {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 111;
    overflow-y: auto;
}
.modal__title {
    color: #ffffff;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    padding: 15px;
    background: var(--color-hover-and-text-models);
}
.modal__block {
    background: var(--bg-main);
    color: #ffffff;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%);
    width: 380px;
    text-align: center;
    overflow: hidden;
}
@media (max-width: 400px) {
    .modal__block {
        width: 90%;
    }
}
.modal__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
}
.modal__body .socials {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.modal__body .input__wrapper,
.modal__body .textarea__wrapper,
.modal__body .select__wrapper {
    width: 100%;
}
.modal__body .input__wrapper input,
.modal__body .input__wrapper textarea,
.modal__body .textarea__wrapper input,
.modal__body .textarea__wrapper textarea,
.modal__body .select__wrapper input,
.modal__body .select__wrapper textarea {
    color: #ffffff;
    padding: 5px;
    background: var(--color-menu-icons-text);
}
.modal__text {
    padding: 15px;
    color: #ffffff;
}
.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    color: var(--color-menu-icons-text);
}
.modal__close .icon-close {
    line-height: 20px;
}
.modal__close:hover {
    color: #fe5461;
}
.cookies {
    position: fixed;
    width: max-content;
    z-index: 99;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: var(--bg-main);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.cookies__text {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 425px) {
    .cookies__text {
        font-size: 10px;
        line-height: 15px;
        flex-grow: 1;
    }
}
.cookies__text a {
    color: var(--color-hover-and-text-models);
}
.cookies__btn {
    cursor: pointer;
    padding: 0 20px;
    background: var(--color-hover-and-text-models);
    color: #ffffff;
    line-height: 30px;
    border: 1px solid var(--color-hover-and-text-models);
    transition: 0.3s;
    border-radius: 10px;
}
@media (max-width: 425px) {
    .cookies__btn {
        margin-left: 10px;
    }
}
.cookies__btn:hover {
    background: var(--bg-main);
}
.mobile-nav {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
@media (max-width: 1024px) {
    .mobile-nav {
        display: flex;
    }
}
.mobile-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-menu-icons-text);
    fill: var(--color-menu-icons-text);
}
.mobile-nav__link span {
    font-size: 12px;
    line-height: 16px;
}
.mobile-nav__link .la {
    color: inherit;
    fill: inherit;
    width: 24px;
    height: 24px;
}
.mobile-nav__link--blink {
    animation: blink-ai 2s infinite alternate;
}
.mobile-nav__link--blink .la {
    animation: blink-scale 2s infinite alternate;
}
.active-link span {
    color: var(--color-hover-and-text-models);
}
.active-link .la {
    color: var(--color-hover-and-text-models);
    fill: var(--color-hover-and-text-models);
}
.hp {
    width: 100%;
    padding: 0 32px;
    margin-top: 10px;
}
@media (max-width: 1024px) {
    .hp {
        margin-top: 0;
        padding: 0 15px;
    }
}
.hp iframe {
    height: 100px;
    width: 100%;
    border: none;
    background: transparent;
    margin: 0 auto;
    display: block;
    position: relative;
}
.hp__content {
    position: relative;
}
.hp__content:after {
    display: block;
    content: "AD";
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #fff;
    text-align: center;
    background: #262626;
    border-radius: 3px;
    font-size: 11px;
    opacity: 0.8;
    padding: 0 3px;
    pointer-events: none;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html {
    height: 100%;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
div {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
a::-moz-focus-inner {
    border: 0;
}
a:focus {
    outline: none;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
html,
body {
    min-height: 100vh;
    background: var(--bg-main);
}
body {
    right: 0;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-style: normal;
    transition: 0.3s;
}
input,
button,
textarea {
    border: none;
    outline: none;
    background: none;
    -webkit-appearance: none;
}
h1,
h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0;
    margin: 0.67em 0;
    color: var(--color-menu-icons-text);
}
@media (max-width: 1024px) {
    h1,
    h2 {
        font-size: 16px;
    }
}
h4 {
    color: var(--color-menu-icons-text);
    font-size: 12px;
    margin: 4px 0 0;
    padding: 0;
    text-align: center;
}
[v-cloak] {
    visibility: hidden !important;
}
.foresight {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
}
@media (min-width: 1024px) {
    .foresight {
        height: 100dvh;
    }
}
.xbody__wrapper {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1024px) {
    .xbody__wrapper {
        overflow-y: scroll;
        margin-top: 72px;
    }
    .xbody__wrapper::-webkit-scrollbar {
        z-index: 9999;
        position: absolute;
        width: 5px;
    }
    .xbody__wrapper::-webkit-scrollbar-track {
        background: transparent;
    }
    .xbody__wrapper::-webkit-scrollbar-thumb {
        background-color: var(--line);
        border-radius: 20px;
    }
}
.age_verification main {
    filter: blur(10px);
}
.diskdrive {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
@media (max-width: 1024px) {
    .diskdrive .wrapper {
        flex-direction: column;
    }
}
.diskdrive .wrapper-block {
    display: block;
}
.diskdrive .wrapper-column {
    flex-direction: column;
}
.video-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 2200px;
    padding: 0 32px 20px;
}
@media (max-width: 1024px) {
    .video-wrapper {
        max-width: 100vw;
        padding: 0;
    }
}
.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 2200px;
    padding: 0 32px 20px;
}
@media (max-width: 1024px) {
    .wrapper {
        max-width: 100vw;
        padding: 0 15px;
        margin: 80px 0 0 0;
    }
}
@media (max-width: 425px) {
    .wrapper {
        padding: 0 10px;
        margin: 80px 0 0 0;
    }
}
.wrapper--center {
    margin: auto;
}
.wrapper__block {
    flex-grow: 1;
    min-width: 0;
}
main {
    display: block;
    flex-grow: 1;
}
.main--full {
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .iRx9 {
        transform: scale(0.7) !important;
    }
}
.empty {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.no-title-small {
    width: 60px;
    height: 14px;
    background-color: var(--color-menu-icons-text);
    border-radius: 2px;
}
.base__button {
    padding: 5px 15px;
    border: 1px solid var(--color-hover-and-text-models);
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    background: var(--color-hover-and-text-models);
    transition: 0.3s;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
}
.base__button .la {
    width: 20px;
    height: 20px;
    color: #ffffff;
}
.base__button:hover {
    background: transparent;
}
@keyframes blink-scale {
    0% {
        transform: scale(1);
    }
    to {
        transform: scale(1.3);
    }
}
@keyframes blink-ai {
    0% {
        color: var(--color-menu-icons-text);
        fill: var(--color-menu-icons-text);
    }
    to {
        color: var(--color-hover-and-text-models);
        fill: var(--color-hover-and-text-models);
    }
}
.headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 10px;
}
.headline__group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.headline__group .la {
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
    line-height: 24px;
}
.headline__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}
.headline__filters .la {
    transition: 0.3s;
    width: 24px;
    height: 24px;
    color: #fff;
}
.headline__filters:hover,
.headline__filters:hover .la,
.headline__filters--active,
.headline__filters--active .la {
    color: var(--color-hover-and-text-models);
}
.headline h1,
.headline h2 {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    line-height: 40px;
    font-weight: 250;
    text-transform: capitalize;
}
@media (max-width: 1024px) {
    .headline h1,
    .headline h2 {
        margin: 12px 0;
    }
}
.headline .watch_all {
    display: inline-flex;
    padding: 7px 10px;
    background: #ffffff;
    align-items: center;
    color: var(--color-menu-icons-text);
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: .3s;
    border: 1px solid transparent;
}
.headline .watch_all:hover {
    color: var(--color-hover-and-text-models);
}
@media (max-width: 1024px) {
    .headline .watch_all {
        display: none;
    }
}
.headline .category {
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    padding: 8px 20px;
    border: 1px solid var(--line);
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.headline .category:hover {
    background: var(--color-menu-icons-text);
}
.headline .category__add {
    display: none;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    background: var(--color-menu-icons-text);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
}
@media (max-width: 1024px) {
    .headline .category__add {
        display: inline-flex;
    }
}
.headline .category__add .la {
    width: 16px;
    height: 16px;
}
.headline .category__remove {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 12px;
}
.headline .category__remove .la {
    width: 14px;
    height: 14px;
}
.headline .tag__item--link {
    margin-left: 12px;
}
.headline .buttons,
.headline .search {
    display: flex;
    align-items: center;
}
.headline--border {
    border-bottom: 1px solid var(--line);
}
.headline--empty {
    min-height: 28px;
    background: #ffffff;
    max-width: 300px;
    width: 100%;
}
.headline__categories h1 {
    flex-wrap: wrap;
}
@media (max-width: 425px) {
    .headline__categories h1 span {
        display: none;
    }
}
.headline__categories h1 .tag__item--link {
    margin: 4px;
}
.headline__categories h1 .tag__item--link:first-of-type {
    margin-left: 12px;
}
@media (max-width: 425px) {
    .headline__categories h1 .tag__item--link:first-of-type {
        margin-left: 0;
    }
}
.headline--column {
    flex-direction: column;
    align-items: flex-start;
}
.headline--column .buttons {
    width: 100%;
}
.thumb {
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
	background: var(--bg-thumb-and-knopki);
	border-radius: 10px;
	margin: 5px 0 5px 0;
}
.thumbs-carousel .thumb {
    min-width: unset;
    flex-shrink: 0;
    width: calc(100% / var(--thumbs) - var(--gap));
}
.thumb__model-flag {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
}
.thumb svg {
    width: 24px !important;
    height: 24px !important;
    color: var(--color-menu-icons-text);
}
.thumb a {
    display: block;
}
.thumb__img {
    position: relative;
    background-color: var(--color-menu-icons-text);
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.thumbs--albums .thumb__img {
    aspect-ratio: 3/2;
}
.thumbs--albums-h .thumb__img {
    aspect-ratio: 2/3;
}
.thumb__img IMG {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.thumb__img IMG[src*="content_sources"] {
    object-fit: scale-down;
}
.thumb__img:hover IMG {
    transform: scale(1.05);
}
.thumb__context {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 10vw, 2rem);
    line-height: 3rem;
    font-weight: 700;
    text-align: center;
    transition: 0.5s;
}
.thumb__context:hover {
    transform: translate(-50%, -50%) scale(1.05);
}
.thumb__previews {
    position: absolute;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    height: 100%;
    padding: 5px;
    background: var(--color-menu-icons-text);
}
.thumb__previews div {
    flex-grow: 1;
    height: 100%;
    margin-top: 5px;
}
.thumb__previews div:first-child {
    margin-top: 0;
}
.thumb__previews .preview {
    background-size: cover;
    max-height: 33.3333333333%;
}
.thumb__previews .preview__count {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 4px;
}
.thumb__info {
    padding: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.thumb__title {
    color: var(--color-menu-icons-text);
    margin-top: 0;
    max-width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.25rem;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.thumb__title:hover {
	color: var(--color-hover-and-text-models);
}
.thumb__title--empty {
    min-height: 20px;
}
.thumb__title_h2 {
    line-height: unset;
    font-size: 14px;
    margin-bottom: 0;
}
.thumb__statistics {
    display: flex;
    align-items: center;
    color: var(--color-menu-icons-text);
    overflow: hidden;
    text-overflow: ellipsis;
}
.thumb__statistics__studio {
    color: var(--color-menu-icons-text);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    border-radius: 8px;
    line-height: 16px;
    text-transform: capitalize;
    transition: 0.3s;
}
.thumb__statistics__studio:hover {
    color: var(--color-hover-and-text-models);
}
.thumb__statistics--empty {
    display: flex;
    width: 100%;
}
.thumb__statistics--empty span {
    background-color: var(--color-menu-icons-text);
    min-height: 20px;
    flex: 1;
    max-width: 50px;
}
.thumb__statistics span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-menu-icons-text);
    font-size: 14px;
}
.thumb__duration {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.5);
    bottom: 5px;
    right: 6px;
    font-size: 10px;
    line-height: 16px;
    color: #fff;
    padding: 2px 4px;
    border-radius: 5px;
}
.thumb__duration svg {
    width: 14px !important;
    height: 14px !important;
    color: #fff !important;
}
.thumb__buttons {
    top: 12px;
    left: 12px;
    position: absolute;
    display: flex;
    visibility: hidden;
    z-index: 11;
}
.thumb__buttons [data-tooltip]:hover {
    position: relative;
}
.thumb__buttons [data-tooltip]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    color: #ffffff;
    padding: 8px 10px;
    z-index: 9999;
    font-size: 12px;
    display: flex;
    top: 0;
    left: 36px;
    white-space: nowrap;
    line-height: 24px;
    height: 24px;
    background: var(--bg-main);
}
.thumb__buttons [data-tooltip]:hover:before {
    content: "";
    border-width: 0 8px 8px 8px;
    border-color: var(--bg-main);
    border-left-color: transparent !important;
    border-bottom-color: transparent !important;
    top: 0;
    left: 20px;
    margin-top: 0;
    margin-bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    z-index: 1;
}
.thumb__buttons button {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.1s;
}
.thumb__buttons button svg {
    width: 16px !important;
    height: 16px !important;
}
.thumb__buttons .thumb__add {
    background: var(--bg-main);
}
.thumb__buttons .thumb__add svg {
    color: var(--color-hover-and-text-models);
}
.thumb__buttons .thumb__add:hover {
    background: var(--color-menu-icons-text);
}
.thumb__buttons .thumb__remove {
    background: var(--color-hover-and-text-models);
}
.thumb__buttons .thumb__remove svg {
    color: #fff;
}
.thumb__buttons .thumb__remove:hover {
    background: #ff0f2b;
}
.thumb__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 100%;
}
.thumb__bottom a {
    max-width: 50%;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.25rem;
    text-transform: capitalize;
}
.thumb__bottom .la {
    font-size: 14px;
    color: #ffbf00;
}
.thumb .t5Fid0 {
    z-index: 10;
    width: 100% !important;
    height: 100% !important;
}
.no-touch .thumb:hover .thumb__buttons {
    visibility: visible;
}
.thumbs-carousel {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
}
.thumbs {
    justify-content: space-between;
    display: grid;
    --thumbs: 5;
    --gap: 4px;
    grid-template-columns: repeat(var(--thumbs), 1fr);
    gap: var(--gap);
    width: 100%;
}
@media (max-width: 425px) {
    .thumbs {
        margin: 0;
    }
}
@media (max-width: 1630px) {
    .thumbs {
        --thumbs: 4;
    }
}
@media (max-width: 1023px) {
    .thumbs {
        --thumbs: 2;
    }
}
@media (max-width: 525px) {
    .thumbs {
        display: flex;
        flex-direction: column;
        --thumbs: 1;
        --gap: 0;
    }
}
.thumbs--albums {
    --thumbs: 8;
}
@media (max-width: 1400px) {
    .thumbs--albums {
        --thumbs: 5;
    }
}
@media (max-width: 1023px) {
    .thumbs--albums {
        --thumbs: 4;
    }
}
@media (max-width: 525px) {
    .thumbs--albums {
        --thumbs: 3;
        --gap: 4px;
        display: grid;
        flex-direction: row;
    }
}
.thumbs--horizontal .thumb__img {
    padding-top: 56.25%;
}
.thumbs--vertical .thumb__img {
    padding-top: 135%;
}
.thumbs--vertical__long .thumb__img {
    padding-top: 166.66%;
}
.thumbs--vertical__short {
    grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1630px) {
    .thumbs--vertical__short {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1023px) {
    .thumbs--vertical__short {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 525px) {
    .thumbs--vertical__short {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
.thumbs--vertical__short .thumb__img {
    aspect-ratio: 1/1;
}
.thumbs .video-videos-slider {
    grid-column: 1/7;
    margin-bottom: 15px;
    grid-row: 3;
}
@media (max-width: 1600px) {
    .thumbs .video-videos-slider {
        grid-column: 1/5;
    }
}
@media (max-width: 1024px) {
    .thumbs .video-videos-slider {
        grid-column: 1/3;
    }
}
@media (max-width: 425px) {
    .thumbs .video-videos-slider {
        grid-column: 1/3;
        width: 100%;
        order: 1;
    }
}
@media (max-width: 425px) {
    .thumbs--square {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
.thumbs--square .thumb__img {
    padding-top: 100%;
}
.thumbs--related {
    grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 1630px) {
    .thumbs--related {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 1024px) {
    .thumbs--related {
        grid-template-columns: repeat(4, 1fr);
    }
}
.thumbs--errors {
    justify-content: center;
}
.thumbs__error {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 40px 20px 20px;
    color: #ffffff;
    max-width: 354px;
    gap: 20px;
    grid-column: 1/-1;
    margin: 0 auto;
}
.thumbs__error .la {
    width: 40px;
    height: 40px;
    color: #fe5461;
    margin-bottom: 8px;
}
.pagination {
    display: flex;
    justify-content: center;
    margin: 24px 0;
    gap: 8px;
}
.pagination__next,
.pagination__prev {
    padding: 0 20px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    transition: 0.3s;
    color: var(--color-menu-icons-text);
    cursor: pointer;
}
.pagination__next .la,
.pagination__prev .la {
    transition: 0.3s;
    height: 24px;
    width: 24px;
    color: var(--color-menu-icons-text);
}
@media (max-width: 768px) {
    .pagination__next__text,
    .pagination__prev__text {
        display: none;
    }
}
@media (max-width: 768px) {
    .pagination__next,
    .pagination__prev {
        padding: 0;
        width: 48px;
        border-radius: 10px;
    }
}
.pagination__numbers {
    display: flex;
    list-style: none;
    gap: 8px;
}
.pagination__number {
    width: 48px;
    height: 48px;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    border: 1px solid var(--line);
    transition: 0.3s;
    border-radius: 10px;
}
.pagination__active {
    background: var(--color-hover-and-text-models);
    border-color: var(--color-hover-and-text-models);
    color: #ffffff;
}
.pagination__active:hover {
    cursor: default;
}
.no-touch .pagination__next:hover:not(.pagination__active),
.no-touch .pagination__prev:hover:not(.pagination__active),
.no-touch .pagination__number:hover:not(.pagination__active) {
    color: #ffffff;
    background: var(--color-hover-and-text-models);
    border-color: var(--color-hover-and-text-models);
}
.no-touch .pagination__next:hover:not(.pagination__active) .la,
.no-touch .pagination__prev:hover:not(.pagination__active) .la,
.no-touch .pagination__number:hover:not(.pagination__active) .la {
    color: #ffffff;
}
.select {
    position: relative;
    background: var(--color-menu-icons-text);
    color: var(--color-menu-icons-text);
    font-size: 14px;
    line-height: 20px;
}
@media (max-width: 1024px) {
    .select {
        background: var(--bg-main);
    }
}
.select--inline {
    border: none;
    height: auto;
    background: transparent;
}
.select--inline .select__label {
    height: auto;
    padding: 0;
}
.select--inline .select__list {
    min-width: 0;
    max-width: none;
}
.select--inline .select__list ul li {
    white-space: nowrap;
}
.select .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.15s ease-in-out;
    color: var(--color-menu-icons-text);
}
.select .icon--active {
    transform: rotate(180deg);
}
.select__flag {
    display: flex;
    align-items: center;
    gap: 6px;
}
.select--inline {
    border: none;
    height: auto;
}
.select--inline .select__label {
    height: auto;
}
.select--inline .select__list {
    min-width: 250px;
}
.select.disabled .select__label {
    opacity: 0.5;
    cursor: no-drop;
}
.select-right .select__list {
    right: 0;
}
.select__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    margin-bottom: 8px;
    display: block;
}
.select__label {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 52px;
    padding: 0 10px;
    border-radius: 10px;
    gap: 8px;
    color: var(--color-menu-icons-text);
    transition: 0.3s;
}
.select__label .label {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.select__label .label .flag {
    margin-right: 5px;
    vertical-align: sub;
}
.select__label .label--letter {
    text-transform: uppercase;
}
.select__label .la {
    transition: 0.3s;
}
.select__label:hover,
.select__label:hover .la {
    color: var(--color-hover-and-text-models);
}
.select__list {
    overflow-y: auto;
    left: 0;
    padding: 8px;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    max-height: 300px;
    min-width: 100%;
    background-color: var(--bg-main);
    z-index: 102;
    border: 1px solid var(--line);
}
.select__list::-webkit-scrollbar {
    width: 4px;
    background: var(--color-menu-icons-text);
}
.select__list::-webkit-scrollbar-thumb {
    background: var(--bg-main);
    border-radius: 2px;
}
@media (max-width: 425px) {
    .select__list {
        max-width: 100%;
    }
}
.select__list .search-row {
    padding: 10px 10px 5px;
}
.select__list .search-row > .input {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--line);
    padding: 10px;
    color: var(--color-menu-icons-text);
}
.select__list .list {
    flex-grow: 1;
}
.select__list .list-flag {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.select__list .list::-webkit-scrollbar {
    width: 8px;
    background: none;
    padding-right: 3px;
}
.select__list .list::-webkit-scrollbar-thumb {
    margin-right: 3px;
    background: var(--color-menu-icons-text);
    border-radius: 2px;
}
.select__list ul {
    list-style: none;
    color: var(--color-menu-icons-text);
    margin: 0 !important;
    border-radius: 4px;
}
.select__list ul .divider {
    line-height: 1px;
    height: 1px;
    margin: 20px 0;
    background: var(--color-menu-icons-text);
}
.select__list ul li {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    white-space: nowrap;
    align-items: center;
    text-align: left;
    font-weight: 400;
    transition: 0.3s;
}
.select__list ul li i {
    margin-right: 8px;
}
.select__list ul li:hover {
    background: var(--bg-main);
    color: #ffffff;
}
.select__list ul li a {
    display: flex;
}
.checkbox {
    display: flex;
    cursor: pointer;
    gap: 12px;
    color: var(--color-menu-icons-text);
}
.checkbox.check .checkbox__left-box {
    align-items: center;
    display: flex;
    justify-content: center;
}
.checkbox.check .checkbox__left-box .la {
    color: var(--color-menu-icons-text);
    height: 14px;
    width: 14px;
}
.checkbox.disable {
    cursor: not-allowed;
    opacity: 0.5;
}
.checkbox.disable .checkbox__left-box {
    border: 1px solid var(--color-menu-icons-text) !important;
}
.checkbox__left {
    display: flex;
    align-items: center;
}
.checkbox__left-box {
    border-radius: 0;
    border: 1px solid var(--color-menu-icons-text);
    height: 20px;
    width: 20px;
    transition: 0.3s;
}
.checkbox__left-box .la {
    transition: 0.3s;
}
.checkbox__right {
    color: #ffffff;
}
.no-touch .checkbox__left-box:hover {
    border: 1px solid var(--color-hover-and-text-models);
}
.no-touch .checkbox__left-box:hover .la {
    color: var(--color-hover-and-text-models);
}
@media (max-width: 1024px) {
    .filters {
        width: 100vw;
        height: 100vh;
        position: fixed;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
}
.filters__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 48px;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .filters__container {
        max-height: calc(100vh - 200px);
        flex-wrap: nowrap;
        overflow-x: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 24px 15px 40px;
        max-height: 100vh;
        height: 100vh;
        overflow-y: auto;
    }
    .filters__container::-webkit-scrollbar {
        display: none;
    }
    .filters__container .select {
        background: var(--color-menu-icons-text);
        padding: 10px;
    }
}
.filters__container__close {
    display: none;
}
@media (max-width: 1024px) {
    .filters__container__close {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .filters__container__close button {
        background: var(--color-hover-and-text-models);
        width: 34px;
        height: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .filters__container__close button .la {
        width: 20px;
        height: 20px;
        color: #ffffff;
    }
}
.side-related-searches {
    margin: 20px 0 20px 0;
    width: 100%;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .side-related-searches {
        margin: 70px 0 0 0;
        width: 100%;
        overflow: hidden;
    }
}
.side-related-searches h4 {
    margin: 10px 0 20px 0;
    font-size: 1.5em;
    color: #ffffff; 
}
.side-related-searches .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.side-related-searches__tag {
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    padding: 8px 20px;
    border: 1px solid var(--line);
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.side-related-searches__tag:hover {
    background: var(--color-menu-icons-text);
}
.side-related-searches__tag-active {
    transition: 0.3s;
    background: var(--color-menu-icons-text);
}
.side-related-searches__button {
    padding: 2px 14px 0;
    height: 42px;
    border: 1px solid var(--line);
    transition: 0.3s;
    cursor: pointer;
}
.side-related-searches__button:hover {
    background: var(--color-menu-icons-text);
}
.side-related-searches__button .la {
    color: var(--color-menu-icons-text);
    width: 24px;
    height: 24px;
}
.side-categories {
    margin: 20px 0 20px 0;
    width: 100%;
    overflow: hidden;
}
.side-categories h4 {
    margin: 10px 0 20px 0;
    font-size: 1.5em;
    color: var(--color-menu-icons-text); 
}
.side-categories .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.side-categories__tag {
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--color-menu-icons-text);
    padding: 8px 20px;
    border: 1px solid var(--line);
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
}
.side-categories__tag:hover {
    background: var(--color-menu-icons-text);
}
.side-categories__tag-active {
    transition: 0.3s;
    background: var(--color-menu-icons-text);
}
.side-categories__button {
    padding: 2px 14px 0;
    height: 42px;
    border: 1px solid var(--line);
    transition: 0.3s;
    cursor: pointer;
}
.side-categories__button:hover {
    background: var(--color-menu-icons-text);
}
.side-categories__button .la {
    color: var(--color-menu-icons-text);
    width: 24px;
    height: 24px;
}
.hidden-tags {
    height: 92px;
}
section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}
section > div div {
    background-color: var(--color-menu-icons-text);
}
section > div a {
    width: 100%;
    height: 100%;
    display: flex;
    background-size: contain;
    justify-content: center;
}
section span {
    text-align: center;
    display: flex;
    font-weight: 400;
}
section span a {
    color: #8c919d;
    font-size: 12px;
    display: flex;
    align-items: center;
}
section span a .la {
    width: 14px;
    height: 14px;
    margin: 0 4px;
}
.video-rating {
    display: flex;
    position: relative;
    gap: 20px;
}
@media (max-width: 1024px) {
    .video-rating {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
}
.video-rating__like,
.video-rating__dislike {
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-menu-icons-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    transition: 0.3s;
}
@media (max-width: 1024px) {
    .video-rating__like,
    .video-rating__dislike {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
    }
}
.video-rating__like .la,
.video-rating__dislike .la {
    transition: 0.3s;
    color: var(--color-menu-icons-text);
    width: 24px;
    height: 24px;
}
@media (max-width: 1024px) {
    .video-rating__like {
        border-right: 1px solid var(--line);
    }
}
.video-rating__like:hover {
    color: #27ae60;
}
.video-rating__like:hover .la {
    color: #27ae60 !important;
}
.video-rating__dislike:hover {
    color: #fe5461;
}
.video-rating__dislike:hover .la {
    color: #fe5461 !important;
}
.video-underplayer {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    padding: 20px 0;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .video-underplayer {
        flex-direction: column;
        align-items: center;
        padding: 0 0 16px;
    }
}
.video-underplayer__buttons {
    display: flex;
    gap: 32px;
    align-items: center;
}
@media (max-width: 1024px) {
    .video-underplayer__buttons {
        gap: 48px;
    }
}
.video-underplayer__button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-menu-icons-text);
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}
.video-underplayer__button .la {
    transition: 0.3s;
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
}
.video-underplayer__button:hover,
.video-underplayer__button:hover .la {
    color: #ffffff;
}
@media (max-width: 1300px) {
    .video-underplayer__button span {
        display: none;
    }
}
.video-underplayer .remove .la {
    color: var(--color-hover-and-text-models);
}
.vyozoov {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
div.XunD6 {
    font-size: 10px;
    color: #fff;
    position: relative;
    background: rgba(0, 0, 0, 0.7);
}
.video-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
}
@media (max-width: 1024px) {
    .video-title {
        padding: 0 10px 16px;
    }
}
.video-title__title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    margin: 0;
}
.video-title__posted-date {
    color: var(--color-menu-icons-text);
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}
.la {
    color: #ffffff;
    fill: #ffffff;
    width: 16px;
    height: 16px;
    pointer-events: none;
    font-size: 25px;
}
.video-albums {
    width: 100%;
    position: relative;
}
.video-albums__inner {
    display: flex;
    gap: 4px;
    overflow-x: scroll;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.video-albums__inner::-webkit-scrollbar {
    display: none;
}
.video-albums__item {
    display: flex;
    height: 100px;
    position: relative;
}
.video-albums__count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    display: flex;
    gap: 2px;
    padding: 0 3px;
    align-items: center;
    border-radius: 4px;
}
.video-albums__count .la {
    height: 12px;
}
.video-albums__prev,
.video-albums__next {
    position: absolute;
    align-items: center;
    display: flex;
    top: 0;
    height: 100%;
    width: 34px;
    cursor: pointer;
}
.video-albums__prev .la,
.video-albums__next .la {
    width: 30px;
    height: 30px;
}
.video-albums__prev {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, rgba(255, 255, 255, 0) 100%);
}
.video-albums__next {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, var(--bg-main) 100%);
}
.video-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 2px solid rgba(58, 58, 58, .3);
}
@media (max-width: 1024px) {
    .video-info {
        padding: 16px 10px;
    }
}
.video-info__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}
.video-info__group:empty {
    display: none;
}
.video-info__group--title {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--color-menu-icons-text);
}
.video-info__group--tag-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.video-info__group--tag-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
}
.video-info__group--wide {
    width: calc(100% + 10px);
}
.video-info__group .hidden-tags {
    height: 42px;
}
.video-info__group--tag {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--color-menu-icons-text);
	background: var(--bg-thumb-and-knopki);
    padding: 8px 20px;
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
}
.video-info__group--tag img[src*="models/"] {
    border-radius: 50%;
}
.video-info__group--tag:hover {
    background: var(--color-hover-and-text-models);
	color: #ffffff;
}
.video-info__group--img {
    height: 24px;
}
.video-info__group--button {
    padding: 2px 14px 0;
    height: 42px;
    border: 1px solid var(--line);
    transition: 0.3s;
    cursor: pointer;
}
.video-info__group--button:hover {
    background: var(--color-menu-icons-text);
}
.video-info__group--button .la {
    color: var(--color-menu-icons-text);
    width: 24px;
    height: 24px;
}
.video-info__description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.video-info__description--title {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--color-menu-icons-text);
}
.video-info__description--text {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: var(--color-menu-icons-text);
}
.thumb-slider {
    order: 1;
    justify-content: center;
    display: block !important;
    grid-column: span 2;
}
@media (min-width: 425px) {
    .thumb-slider {
        grid-column: span 2;
    }
}
@media (min-width: 1024px) {
    .thumb-slider {
        grid-column: span 4;
    }
}
@media (min-width: 1630px) {
    .thumb-slider {
        grid-column: span 6;
    }
}
.thumb-slider > div {
    margin: 0 auto;
    position: relative;
    width: 100% !important;
}
@media (min-width: 768px) {
    .thumb-slider > div {
        width: 80% !important;
        max-width: 980px !important;
    }
}
.thumb-slider > div:empty {
    display: none;
}
.thumb-slider > div .ca-roll-container {
    width: 100% !important;
}
.thumb-slider > div .ca-roll-container:not(.ca-roll-container--collapsed) {
    height: 300px !important;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .thumb-slider > div .ca-roll-container:not(.ca-roll-container--collapsed) {
        height: 450px !important;
    }
}
@media (min-width: 1024px) {
    .thumb-slider > div .ca-roll-container:not(.ca-roll-container--collapsed) {
        height: 500px !important;
    }
}
@media (min-width: 1630px) {
    .thumb-slider > div .ca-roll-container:not(.ca-roll-container--collapsed) {
        height: 580px !important;
    }
}
.thumb-slider > div .ca-roll-container > div > .vast_player {
    z-index: 99 !important;
}
.scrollbar {
    width: 50%;
    height: 15px;
    margin: 10px auto;
}
.scrollbar-track {
    height: 100%;
    width: 100%;
    position: relative;
}
.scrollbar-track:before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    top: 7px;
    background: rgba(0, 0, 0, 0.3);
}
.scrollbar-thumb {
    width: 50%;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.scrollbar-thumb:before {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    top: 6px;
    background: #ffffff;
    border-radius: 5px;
}
.scrollbar-thumb:hover:before,
.scrollbar-thumb-hover:before {
    height: 9px;
    width: calc(100% + 6px);
    top: 3px;
    left: -3px;
}
.video-slider {
    display: flex;
    position: relative;
}
.video-slider .prev-button,
.video-slider .next-button {
    width: 50px;
    height: 50px;
    color: #ffffff;
    background: var(--color-menu-icons-text);
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 4px 15px #3333330d;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: calc(50% - 45px);
    cursor: pointer;
}
.video-slider .prev-button svg,
.video-slider .next-button svg {
    stroke-width: 2px;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: 0.3s;
}
.video-slider .prev-button:hover svg,
.video-slider .next-button:hover svg {
    opacity: 1;
}
@media (max-width: 1570px) {
    .video-slider .prev-button,
    .video-slider .next-button {
        top: calc(50% - 50px);
        opacity: 0.9;
    }
}
@media (max-width: 1024px) {
    .video-slider .prev-button,
    .video-slider .next-button {
        display: none;
    }
}
.video-slider .prev-button {
    left: 10px;
}
.video-slider .next-button {
    right: 10px;
}
.video-slider .container {
    width: 100%;
}
.video-slider .list {
    display: flex;
    transition: 0.5s;
    overflow-x: scroll;
    margin: 0 -5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.video-slider .list::-webkit-scrollbar {
    display: none;
}
@media (max-width: 425px) {
    .video-slider .list {
        margin: 0;
    }
}
.video-slider .item {
    width: calc(16.6666666667% - 20px);
    flex-shrink: 0;
    margin: 0 5px;
    border-radius: 10px;
    background: var(--color-menu-icons-text);
    overflow: hidden;
}
@media (max-width: 1600px) {
    .video-slider .item {
        width: calc(25% - 20px);
    }
}
@media (max-width: 1024px) {
    .video-slider .item {
        width: calc(50% - 20px);
    }
}
@media (max-width: 425px) {
    .video-slider .item {
        width: 100%;
    }
    .video-slider .item:nth-child(1) {
        margin: 0 10px 0 0;
    }
}
.video-slider .item-thumb {
    padding-top: 60%;
    position: relative;
    background-color: var(--color-menu-icons-text);
}
.video-slider .item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: var(--color-menu-icons-text);
}
.video-slider .item-title {
    padding: 14px;
    color: #93979e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-slider .item-adlabel {
    position: absolute;
    bottom: 3px;
    right: 3px;
    line-height: 15px;
    background: var(--bg-main);
    color: var(--color-menu-icons-text);
    padding: 0 4px;
    font-size: 10px;
}
.video-slider .item-see-more .see-more {
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    white-space: nowrap;
}
.video-slider .item-see-more .see-more .la {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: 0.3s;
}
.video-slider .item-see-more .see-more .la svg {
    stroke-width: 2px;
}
.video-slider .item-see-more .see-more:hover .la {
    transform: scale(1.5);
}
.video-ntv-wrapper {
    position: sticky;
    top: 10px;
}
@media (max-width: 767px) {
    .video-right-top {
        display: flex;
        justify-content: center;
        padding-top: 15px;
    }
    .video-right-top .text {
        font-size: 15px !important;
    }
}
.video-right-top > div:not(:last-child) {
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .video-right-top > div:first-child + div {
        margin: 0 10px 8px;
    }
}
.video-right-top > div {
    overflow: hidden;
    width: 300px;
    height: 250px;
    background-color: var(--color-menu-icons-text);
}
@media (max-width: 1320px) {
    .video-right-top > div {
        width: 210px;
        height: 175px;
    }
    .video-right-top > div > * {
        transform: scale(0.7);
        transform-origin: top left;
    }
}
@media (max-width: 767px) {
    .video-right-top > div {
        width: 180px;
        height: 150px;
    }
    .video-right-top > div > * {
        transform: scale(0.6);
        transform-origin: top left;
    }
}
@media (max-width: 580px) {
    .video-right-top > div {
        width: 150px;
        height: 125px;
    }
    .video-right-top > div > * {
        transform: scale(0.5);
        transform-origin: top left;
    }
}
.video-right-top + h4 {
    margin-top: 4px;
    text-decoration: none;
    display: flex;
    justify-content: center;
}
.video-right-top + h4 a {
    font-size: 12px;
    text-decoration: none;
}
section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: scroll;
    margin: 20px 0;
}
section::-webkit-scrollbar {
    display: none;
}
section h4 {
    font-weight: 400;
}
section > div {
    display: flex;
    margin: 0 auto;
}
@media (max-width: 767px) {
    section > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}
section > div > div {
    margin: 0 4px;
    overflow: hidden;
    background: var(--bg-main);
}
@media (max-width: 767px) {
    section > div > div {
        margin: 4px !important;
    }
}
section > div > div:first-of-type {
    margin-left: 0;
}
section > div > div:last-of-type {
    margin-right: 0;
}
section > div > div :first-child {
    transform-origin: top left;
}
.ouzjujjyizououuuyy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-menu-icons-text);
    padding: 20px;
    margin-top: 10px;
}
.ouzjujjyizououuuyy h4 {
    font-weight: 400;
}
.ouzjujjyizououuuyy .ivryoyyuzrioiovvuuoyvvyuou {
    max-width: 100%;
}
.ouzjujjyizououuuyy .zvuuiuuvruzizivvvviizzvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    margin-bottom: 10px;
}
.ouzjujjyizououuuyy .zvuuiuuvruzizivvvviizzvv .arrows {
    flex-shrink: 0;
    display: none;
    color: var(--color-menu-icons-text);
}
.ouzjujjyizououuuyy .zvuuiuuvruzizivvvviizzvv .arrows button {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
}
.ouzjujjyizououuuyy .zvuuiuuvruzizivvvviizzvv .arrows button:disabled {
    opacity: 0.4;
}
.ouzjujjyizououuuyy .zvuuiuuvruzizivvvviizzvv .arrows button i {
    width: 35px;
    height: 35px;
    color: var(--color-menu-icons-text);
    display: flex;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}
.ouzjujjyizououuuyy .ouzjujjyizououuuyyujzrvvzoou {
    display: flex;
    overflow-x: scroll;
}
.ouzjujjyizououuuyy .ouzjujjyizououuuyyujzrvvzoou::-webkit-scrollbar {
    display: none;
}
.ouzjujjyizououuuyy .jzuovooiyujvjvzziivvjrr {
    display: flex;
    margin: 0 -5px;
}
.ouzjujjyizououuuyy .vvviioojuozouz {
    margin: 0 5px;
    overflow: hidden;
    display: flex;
    background-color: var(--bg-main);
}
.ouzjujjyizououuuyy .vvviioojuozouz > * {
    transform-origin: left top;
}
@media (max-width: 1600px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 270px;
        height: 225px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.9);
        transform-origin: top left;
    }
}
@media (max-width: 1460px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 240px;
        height: 200px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.8);
        transform-origin: top left;
    }
}
@media (max-width: 1300px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 210px;
        height: 175px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.7);
        transform-origin: top left;
    }
}
@media (max-width: 1160px) {
    .ouzjujjyizououuuyy .zvuuiuuvruzizivvvviizzvv .arrows {
        display: flex;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 270px;
        height: 225px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.9);
        transform-origin: top left;
    }
}
@media (max-width: 1099px) {
    .ouzjujjyizououuuyy {
        padding: 10px;
    }
}
@media (max-width: 840px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 240px;
        height: 200px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.8);
        transform-origin: top left;
    }
}
@media (max-width: 768px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 225px;
        height: 187.5px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.75);
        transform-origin: top left;
    }
}
@media (max-width: 480px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 165px;
        height: 137.5px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.55);
        transform-origin: top left;
    }
}
@media (max-width: 360px) {
    .ouzjujjyizououuuyy .vvviioojuozouz {
        width: 150px;
        height: 125px;
    }
    .ouzjujjyizououuuyy .vvviioojuozouz iframe,
    .ouzjujjyizououuuyy .vvviioojuozouz img {
        transform: scale(0.5);
        transform-origin: top left;
    }
}
section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: relative;
    width: 300px;
    height: 100px;
    margin: 0 auto;
}
section div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section div > :nth-child(1) {
    width: 100%;
    position: relative;
    min-height: 90px;
}
.da-label {
    display: block;
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #fff;
    text-align: center;
    background: #262626;
    border-radius: 3px;
    font-size: 11px;
    opacity: 0.8;
    padding: 0 3px;
    pointer-events: none;
}
.da-label:after {
    content: "AD";
}
.video {
    width: 100%;
}
@media (max-width: 1024px) {
    .video {
        margin: 12px 0 20px;
    }
}
.video__info--fixed {
    padding-top: 250px;
}
@media (max-width: 425px) {
    .video__info--fixed {
        padding-top: 230px;
    }
}
.video__content {
    display: flex;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .video__content {
        flex-direction: column;
    }
}
.video__content > .left {
    min-width: 100px;
    flex-grow: 1;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px -7px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 10px -7px rgba(34, 60, 80, 0.2);
    box-shadow: 0 0 10px -7px #223c5033;
}
.video__content > .left > .player-contik {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 10px;
}
.video__content > .left > .player-contik iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1080px) {
    .video__content > .left {
        min-width: calc(100% - 222.4px);
    }
}
@media (max-width: 767px) {
    .video__content > .left {
        width: 100%;
        max-width: 100%;
    }
}
.video__content > .left .videoplayer {
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}
@media (min-width: 1630px) {
    .video__content > .left .videoplayer {
        max-height: 650px;
    }
}
@media (min-width: 1630px) {
    .video__content > .left .videoplayer.noadv {
        padding-top: 0;
        height: 650px;
    }
}
.video__content > .left .videoplayer__fixed {
    position: fixed;
    top: 0;
    z-index: 999;
}
.video__content > .left .jwplayer {
    display: block !important;
}
.video__content > .left + .right {
    margin-left: 10px;
    position: relative;
}
.video__content > .right {
    max-width: fit-content;
}
@media (max-width: 1086px) {
    .video__content > .right {
        display: none;
    }
}
@media (max-width: 768px) {
    .video__content > .right {
        max-width: 100%;
    }
}
.video__related {
    width: 100%;
    margin-top: 30px;
}
@media (max-width: 1024px) {
    .video__related {
        padding: 0 15px;
    }
}
.device-phone .left {
    max-width: 100%;
}
.vtpchccimpvhvhttii {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    margin-top: 10px;
}
.vtpchccimpvhvhttii h4 {
    font-weight: 400;
}
.vtpchccimpvhvhttii .mrdiviitpdmvmvrrttviyrihvh {
    max-width: 100%;
}
.vtpchccimpvhvhttii .pyhtmttrdhpmpmyyrrmmppyr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    margin-bottom: 10px;
}
.vtpchccimpvhvhttii .pyhtmttrdhpmpmyyrrmmppyr .arrows {
    flex-shrink: 0;
    display: none;
    color: var(--color-menu-icons-text);
}
.vtpchccimpvhvhttii .pyhtmttrdhpmpmyyrrmmppyr .arrows button {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
}
.vtpchccimpvhvhttii .pyhtmttrdhpmpmyyrrmmppyr .arrows button:disabled {
    opacity: 0.4;
}
.vtpchccimpvhvhttii .pyhtmttrdhpmpmyyrrmmppyr .arrows button i {
    width: 35px;
    height: 35px;
    color: var(--color-menu-icons-text);
    display: flex;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}
.vtpchccimpvhvhttii .vtpchccimpvhvhttiihcpdrrpvvh {
    display: flex;
    overflow-x: scroll;
}
.vtpchccimpvhvhttii .vtpchccimpvhvhttiihcpdrrpvvh::-webkit-scrollbar {
    display: none;
}
.vtpchccimpvhvhttii .cptvyvvmitcycyppmmyrcdd {
    display: flex;
    margin: 0 -5px;
}
.vtpchccimpvhvhttii .ryrmmvvctvpvhp {
    margin: 0 5px;
    overflow: hidden;
    display: flex;
    background-color: var(--color-menu-icons-text);
    border-radius: 10px;
}
.vtpchccimpvhvhttii .ryrmmvvctvpvhp > * {
    transform-origin: left top;
}
@media (max-width: 1600px) {
    .vtpchccimpvhvhttii .ryrmmvvctvpvhp {
        width: 240px;
        height: 200px;
    }
    .vtpchccimpvhvhttii .ryrmmvvctvpvhp iframe,
    .vtpchccimpvhvhttii .ryrmmvvctvpvhp img {
        transform: scale(0.8);
        transform-origin: top left;
    }
}
@media (max-width: 1460px) {
    .vtpchccimpvhvhttii .ryrmmvvctvpvhp {
        width: 270px;
        height: 225px;
    }
    .vtpchccimpvhvhttii .ryrmmvvctvpvhp iframe,
    .vtpchccimpvhvhttii .ryrmmvvctvpvhp img {
        transform: scale(0.9);
        transform-origin: top left;
    }
}

.info-nav {
    display: flex;
    justify-content: left;
    margin-bottom: 32px;
}
.info-nav__wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}
.info-nav__wrapper__link {
    color: var(--color-menu-icons-text);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 5px 10px;
    transition: 0.3s;
    border-bottom: 2px solid var(--color-hover-and-text-models);
}
.info-nav__wrapper__link:hover,
.info-nav__wrapper .router-link-active {
    background: var(--color-hover-and-text-models);
    color: #ffffff;
}
.info-page {
    padding: 32px;
}
@media (max-width: 1024px) {
    .info-page {
        border-top: 1px solid var(--line);
        padding: 32px 15px;
    }
}
.info-page__title {
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-page__title .svg-icon {
    width: 24px;
    height: 24px;
    color: var(--color-menu-icons-text);
}
.info-page__content {
    color: var(--color-menu-icons-text);
    margin-top: 20px;
}
.info-page__content h2 {
    color: #ffffff;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}
.info-page__content h2:first-child {
    margin-top: 0;
}
.info-page__content h3 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 15px;
    font-weight: 400;
}
.info-page__content ul {
    margin: 5px 0 5px 20px;
}
.info-page__content ul li {
    line-height: 20px;
}
.info-page__content p {
    line-height: 20px;
    margin: 5px 0;
}
.info-page__content a {
    color: var(--color-hover-and-text-models);
}
.info-page-support {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-page-support .modal-block .modal-title {
    background: transparent;
    padding: 0;
    color: var(--color-menu-icons-text);
}
.info-page-support .modal-block .form {
    margin-top: 20px;
    padding: 0;
}
.info-page .modal-block--inline {
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
}
.about-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0 10px 0;
    text-align: justify;
    width: 100%;
}
.about-block h4 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: var(--color-menu-icons-text);
}
.about-block p {
    margin: 0;
    font-size: 1em;
    color: var(--color-menu-icons-text);
}
.c3d4 p {
	color: var(--color-menu-icons-text) !important;