* {
    outline: none;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    background-color: #1E1A1E;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fcfcfc;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    font-weight: 400;
    color: #fbb03b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    margin: 10px auto 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

h1 small,
h2 small,
h3 small {
    font-weight: 400;
    color: #999;
}

.heading {
    margin: 5px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.heading h1 {
    margin: 5px 0;
}

.sort {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sort li {
    margin: 0 5px 0 0;
    padding: 0;
    list-style: none;
}

.sort li:last-child {
    margin-right: 0;
}

.input {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 14px;
    color: #262626;
}

.input:focus {
    border-color: #fbb03b;
}

.btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-block;
    border: 1px solid #292329;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #292329;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    cursor: pointer;
    line-height: 34px;
}

.btn:hover,
.btn.active {
    border-color: #fbb03b;
    background-color: #fbb03b;
    color: #000;
    text-decoration: none;
}

.btn.btn-alt {
    border-color: #fbb03b;
    background-color: #fbb03b;
    font-weight: 700;
    color: #000;
}

.btn.btn-alt:hover {
    opacity: 0.9;
}

.wrapper {
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.main {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.header .container {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.logo {
    -webkit-order: 1;
    order: 1;
    line-height: 37px;
    height: 41px;
    display: inline-block;
    vertical-align: middle;
    background-image: url('../img/logo.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    width: 135px;
    text-decoration: none;
    transition: transform 0.1s ease-in-out;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 15px;
}

.logo:hover {
    text-decoration: none;
    animation: logo-jiggle 0.3s ease-in-out;
}

@keyframes logo-jiggle {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(3deg) scale(1.05);
    }
    75% {
        transform: rotate(-3deg) scale(1.05);
    }
}

.togglers {
    -webkit-order: 6;
    order: 6;
    margin: 0 0 0 auto;
    display: none;
}

.search-form {
    -webkit-order: 2;
    order: 2;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 0 0 auto;
}

.search-form .search-input {
    border-color: transparent;
}

.search-form .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 36px;
    background-color: #FD088B;
    border: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn .icon-search {
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin-right: 0;
}

.bookmark {
    -webkit-order: 3;
    order: 3;
    margin-left: 10px;
}

.bookmark>.icon {
    margin-right: 5px;
    vertical-align: middle;
}

.language {
    -webkit-order: 5;
    order: 5;
    margin-left: 10px;
}

.language .dropdown-container {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 600px;
    padding: 10px;
    margin-top: 10px;
    background-color: #292329;
    border-radius: 3px;
    display: none;
    z-index: 101;
    column-count: 4;
    column-gap: 10px;
    font-size: 12px;
}

.language .dropdown-container img {
    margin: -2px 5px 0 0;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 1199px) {
    .language .dropdown-container {
        width: 450px;
        column-count: 3;
        margin-top: 5px;
    }
}

@media screen and (max-width: 640px) {
    .language .dropdown-container {
        width: 300px;
        column-count: 2;
        margin-top: 5px;
    }
}

@media screen and (max-width: 388px) {
    .language .dropdown-container {
        width: 150px;
        column-count: 1;
        margin-top: 5px;
    }
}

.navigation {
    background-color: #292329;
    font-size: 16px;
}

.navigation .container {
    padding-top: 10px;
    padding-bottom: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
}

.navigation .nav-main {
    margin: 0 auto 0 auto;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    text-transform: lowercase;
    flex-wrap: wrap;
}

.navigation .nav-main>li {
    margin: 0 20px 0 0;
    padding: 0;
    list-style: none;
    text-wrap: nowrap;
}

.navigation .nav-main>li:last-child {
    margin-right: 0;
}

.navigation .nav-main>li.active a {
    color: #fbb03b;
    pointer-events: none;
}

.navigation a {
    color: #fff;
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-toggle .la-angle-down {
    margin: -2px 0 0 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}

.dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 2px 0 0 0;
    padding: 10px 0;
    background-color: #292329;
    border: 1px solid #29232a;
    border-radius: 3px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 2;
}

.dropdown-container.toggled {
    display: block;
}

.dropdown-container li {
    margin: 0;
    padding: 4px 20px;
    list-style: none;
    white-space: nowrap;
}

.dropdown-container li a {
    color: #fff;
}

.thumbs,
.loaded-batch {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.thumb {
    position: relative;
    width: calc(100% / 6 - 10px);
    margin: 3px;
    padding: 2px;
    display: block;
    color: #fff;
    background-color: #292329;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.th-cart,
.th-cart-2 {
    position: relative;
    padding-top: 56.25%;
}

.th-cart>img,
.th-cart-2>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.th-cart-2 {
    padding-top: 75%;
}

.th-infoz,
.th-descz,
.th-tagz {
    width: 100%;
    margin: 5px 0;
    padding: 0 5px;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: 400;
    line-height: 17px;
}

.th-infoz {
    text-align: center;
    font-weight: 700;
}

.th-descz {
    margin: 5px 0 0;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.th-tagz {
    max-height: 32px;
    margin: 0 0 5px;
    text-align: left;
}

.th-tagz a {
    display: inline-block;
    height: 20px;
    padding: 0 4px;
    margin: 0 4px 4px 0;
    border-radius: 3px;
    text-decoration: none;
    line-height: 20px;
    color: #fbb03b !important;
}

.th-tagz a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.th-timez,
.th-calendarz,
.th-linez,
.th-ratingz {
    position: absolute;
    bottom: 2px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    line-height: 20px;
    height: 20px;
}

.th-timez,
.th-linez {
    right: 2px;
}

.th-ratingz,
.th-calendarz {
    left: 3px;
}

.thumb a {
    color: #fff;
}

.th-timez .icon,
.th-ratingz .icon {
    width: 10px;
    height: 10px;
    margin-right: 5px;
}


@media (max-width: 1023px) {
    .thumb,
    .loaded-batch .thumb {
        width: calc(100% / 4 - 10px);
    }
}

@media (max-width: 767px) {
    .thumb,
    .loaded-batch .thumb {
        width: calc(100% / 3 - 10px);
    }
}

@media (max-width: 479px) {
    .thumb,
    .loaded-batch .thumb {
        width: calc(100% / 2 - 10px);
    }
}

.loaded-batch .th-descz {
    height: 36px;
    font-size: 13px;
}

.loaded-batch .th-timez,
.loaded-batch .th-ratingz {
    z-index: 5;
}

.icon-parent>.icon {
    margin-right: 5px;
    flex-shrink: 0;
    vertical-align: middle;
}

.filmz {
    width: 100%;
    margin-top: 10px;
    display: -webkit-flex;
    display: flex;
}

.filmz-column {
    position: relative;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.filmz-player,
.filmz-player-fake {
    position: relative;
    padding: 56.25% 0 0 0;
}

.filmz-player iframe,
.filmz-player .player-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.filmz-bar {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #8E7E9B;
    padding-top: 10px;
    padding-bottom: 10px;
}

.filmz-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filmz-info>div {
    margin: 0;
    display: flex;
    align-items: center;
}

.filmz-info>div::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
    vertical-align: middle;
    filter: invert(79%) sepia(59%) saturate(1499%) hue-rotate(342deg) brightness(101%) contrast(97%);
}

.filmz-info>div:nth-child(1)::before {
    background-image: url('../img/calendar.svg');
}

.filmz-info>div:nth-child(2)::before {
    background-image: url('../img/eye.svg');
}

.filmz-info>div:nth-child(3)::before {
    background-image: url('../img/clock.svg');
    width: 16px;
    height: 16px;
}

.vote-box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: auto;
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

#btn-rating-up {
    background-color: #fbb03b;
    border: none;
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    mask-image: url('../img/thumbs-up.svg');
    -webkit-mask-image: url('../img/thumbs-up.svg');
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    transition: transform 0.15s ease-in-out, opacity 0.3s ease, background-color 0.3s ease;
}

#btn-rating-up:active {
    transform: scale(1.2);
    transition-duration: 0.05s;
}

#btn-rating-up.voted {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
    background-color: #888888;
}

.rating .value span {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.films-tagz {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
    margin: 10px 0;
}

.filmz-links a {
    margin: 2px;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 3px;
    background-color: #292329;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.filmz-links a:hover {
    background-color: #fbb03b;
    color: #000;
    text-decoration: none;
}

.filmz-sidebar {
    min-width: 300px;
    margin: 0 0 0 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.filmz-sidebar>div {
    min-width: 300px;
    max-width: 300px;
    margin-bottom: 10px;
}

.pagination {
    margin: 13px auto;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    line-height: 44px;
}

.pagination li {
    margin: 2px;
    padding: 0;
    list-style: none;
}

.pagination .btn {
    min-width: 40px;
    min-height: 40px;
    line-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination .btn.active {
    pointer-events: none;
}

.pagination .btn .icon {
    width: 16px;
    height: 16px;
    margin: 0;
    background-color: #ffffff;
}

.pagination .btn:hover .icon {
    background-color: #000000;
}

.same-sitez {
    margin: 0 0 20px 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.same-sitez li {
    margin: 0 10px 0 0;
    padding: 0;
    list-style: none;
}

.same-sitez li a {
    color: #fff;
}

.same-sitez li a:hover {
    color: #fbb03b;
}

.same-searches {
    margin: 0 0 20px 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.same-searches li {
    margin: 0 10px 0 0;
    padding: 0;
    list-style: none;
}

.same-searches li a {
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.same-searches li a:hover {
    color: #fbb03b;
    text-decoration: none;
}

.same-searches li a .icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    background-color: #fbb03b;
}

.same-searches .size-1 {
    font-size: 12px;
}

.same-searches .size-2 {
    font-size: 15px;
}

.same-searches .size-3 {
    font-size: 18px;
}

.same-searches .size-4 {
    font-size: 20px;
}

.same-searches .size-5 {
    font-size: 22px;
}

.same-searches .icon-search {
    background-color: #fbb03b;
}

.onlyz-filmz {
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #292329;
    display: -webkit-flex;
    display: flex;
}

.onlyz-filmz-prev {
    position: relative;
    width: 403px;
    margin: 0 20px 0 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.onlyz-filmz-prev-thumb {
    width: 100%;
    display: block;
}

.onlyz-filmz-prev-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 200px;
    display: block;
}

.onlyz-filmz-info {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.onlyz-filmz-info h2 {
    margin: 0 0 10px 0;
}

.onlyz-filmz-info .filmz-info {
    margin: 0;
}

.onlyz-filmz-info .filmz-info>div {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .onlyz-filmz-info {
        min-width: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

.grappi {
    column-count: 5;
	column-gap: 20px; /* Расстояние между колонками */
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.grappi li {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 4px 0;
    box-sizing: border-box;
    display: inline-block;
    list-style: none;
}

.grappi li.grappi-title {
    padding-right: 5px;
    padding-left: 5px;
    font-weight: 700;
    color: #fbb03b;
}

.grappi a {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
}

.grappi a span {
    margin: 0 0 0 auto;
    padding: 0 4px;
    display: inline-block;
    font-size: 12px;
    color: #999;
}

.grappi a:hover {
    text-decoration: none;
    color: #fbb03b;
}

.sites {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
}

.sites li {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 4px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #8E7E9B;
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
}

.sites li a {
    display: -webkit-flex;
    display: flex;
    color: #fff;
}

.sites li a:hover {
    color: #FD088B;
}

.sites li span {
    margin: 0 10px 0 0;
    font-weight: 700;
    color: #fbb03b;
}

.footer {
    padding: 20px 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer a {
    color: #fbb03b;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    width: 100%;
}

.footer-nav li {
    margin: 0 20px 0 0;
    padding: 0;
    list-style: none;
}

.footer-nav li:last-child {
    margin-right: 0;
}

.mob-rek-a {
    width: 100%;
    padding: 0px 10px 0px 10px;
    text-align: center;
    box-sizing: border-box;
    clear: both;
    display: none;
}

@media screen and (max-width: 767px) {
    .mob-rek-a {
        display: block;
        grid-column-start: 1;
        grid-column-end: 4;
    }
}

@media screen and (max-width: 480px) {
    .mob-rek-a {
        display: block;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.mob-rek-a iframe {
    margin: 20px 0px 20px 0px;
}

@media screen and (max-width: 767px) {
    main .thumb {
        width: calc(100% / 3 - 10px);
    }
}

@media screen and (max-width: 480px) {
    main .thumb {
        width: calc(100% / 2 - 10px);
    }
}

.btn-up {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #FD088B;
    box-sizing: border-box;
    color: #000;
    border-radius: 3px;
    background-image: url('../img/arrow-up.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.btn-up.toggled {
    display: flex;
}

.btn-up:hover {
    text-decoration: none;
    color: #000;
}

.topbar {
    box-sizing: border-box;
    display: none;
    margin-top: 20px;
}

.topbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
}

.topbar ul li {
    position: relative;
    width: 100%;
    margin: 0 0 4px 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

.topbar ul li a {
    display: block;
    padding: 5px;
    text-align: center;
    background: #746a74;
    color: #121212;
}

.topbar ul li a:hover {
    background: #292329;
    color: #ffffff;
}

.dec-topbar .topbar {
    display: block;
}

@media screen and (max-width: 1199px) {
    .filmz {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .filmz-sidebar {
        width: 100%;
        max-height: 250px;
        margin: 0;
        overflow: hidden;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .filmz-sidebar>div {
        margin: 0 5px;
    }
    .grappi,
    .sites {
        grid-template-columns: repeat(3, 1fr);
    }
    .topbar {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
    .dec-topbar .topbar {
        display: none;
        ;
    }
}

@media screen and (max-width: 580px) {
    .topbar ul {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
    }
    .topbar ul li {
        webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
}

@media screen and (max-width: 1023px) {
    .toggled {
        display: block !important;
    }
    .header .container {
        padding-top: 5px;
        padding-bottom: 5px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    .togglers {
        -webkit-order: 1;
        order: 1;
        margin: 0 auto 0 0;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }
    .togglers .nav-toggle {
        -webkit-order: 1;
        order: 1;
    }
    .togglers .search-toggle {
        -webkit-order: 2;
        order: 2;
        margin-left: 5px;
    }
    .logo {
        -webkit-order: 2;
        order: 2;
        margin: 0 auto;
    }
    .language {
        -webkit-order: 3;
        order: 3;
        margin: 0 0 0 auto;
    }
    .bookmark {
        display: none;
    }
    .search-form {
        -webkit-order: 4;
        order: 4;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 5px 0 0 0;
        z-index: 10;
        background-color: #1E1A1E;
        padding: 10px;
        box-sizing: border-box;
        border-top: 1px solid #29232a;
    }
    .search-form.toggled {
        display: block;
    }
    .navigation {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        padding-top: 50px;
        background-color: #292329;
        transition: left 0.3s ease;
        z-index: 100;
        display: block;
        overflow-y: visible;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    }
    .navigation.toggled {
        left: 0;
    }
    .navigation .container {
        padding: 0;
        display: block;
        height: 100%;
    }
    .navigation .nav-main {
        display: block;
    }
    .navigation .nav-main>li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #29232a;
    }
    .navigation .nav-main>li:last-child {
        border-bottom: none;
    }
    .navigation .nav-main>li>a,
    .navigation .nav-main>li>.dropdown-toggle {
        display: block;
        padding: 12px 15px;
        color: #fff;
        text-decoration: none;
    }
    .navigation .nav-main>li>a:hover,
    .navigation .nav-main>li>.dropdown-toggle:hover {
        background-color: #29232a;
    }
    .navigation .nav-main>li.active>a {
        background-color: #fbb03b;
        color: #000;
    }
    .navigation .dropdown .dropdown-container {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background-color: rgba(0, 0, 0, 0.2);
    }
    .navigation .dropdown .dropdown-container.toggled {
        display: block;
        max-height: 200px;
        overflow-y: auto;
        &::-webkit-scrollbar {
            width: 8px;
        }
        &::-webkit-scrollbar-track {
            background: #292329;
            border-radius: 4px;
        }
        &::-webkit-scrollbar-thumb {
            background-color: #fbb03b;
            border-radius: 4px;
            border: 2px solid #292329;
        }
        scrollbar-width: thin;
        scrollbar-color: #fbb03b #292329;
    }
    .navigation .dropdown .dropdown-container li {
        padding: 0;
        border-top: 1px solid #29232a;
    }
    .navigation .dropdown .dropdown-container li a {
        padding: 10px 15px 10px 30px;
        display: block;
        color: #ccc;
    }
    .navigation .dropdown .dropdown-container li a:hover {
        background-color: #29232a;
        color: #fff;
    }
    .togglers .btn {
        position: relative;
        z-index: 102;
    }
    .language .dropdown-toggle {
        position: relative;
        z-index: 102;
    }
    .language .dropdown-container {
        z-index: 101;
        right: 0;
        left: auto;
        position: absolute;
    }
    .search-form .search-btn {
        top: 10px;
        right: 10px;
        height: 36px;
    }
}

@media screen and (max-width: 767px) {
    .thumb {
        width: calc(100% / 3 - 10px);
    }
    .onlyz-filmz {
        margin-top: 10px;
        padding-bottom: 0;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .onlyz-filmz-prev {
        width: 100%;
        margin: 0 0 10px 0;
    }
}

@media screen and (max-width: 479px) {
    h1,
    h2,
    h3 {
        font-size: 20px;
        line-height: normal;
    }
    .sort .btn {
        font-size: 12px;
    }
    .grappi,
    .sites {
        grid-template-columns: repeat(2, 1fr);
    }
    .grappi a {
        width: 100%;
        display: -webkit-flex;
        display: flex;
        box-sizing: border-box;
    }
    .grappi a span {
        margin-left: auto;
    }
    .grappi a span::before {
        display: none;
    }
    .sites a {
        font-size: 13px;
    }
}

@media screen and (max-width: 640px) {
    .filmz-player {
        min-height: 340px;
    }
}

.autocomplete-suggestions {
    background: #ddb4c5e0;
    color: #000;
    border: #000 solid 1px;
}

.autocomplete-suggestion {
    padding: 5px;
}

.autocomplete-suggestion.autocomplete-selected {
    background: #000;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}

.abform-wrapper1 {
    display: none;
}

.abform-wrapper1 {
    display: none;
}

.abbtn1 {
    cursor: pointer;
    color: #fbb03b;
}

.abbtn1:hover {
    text-decoration: underline;
}

.abform-wrapper1.toggled {
    display: flex;
    height: 100vh;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#contactForm {
    position: fixed;
    top: calc(50% - 105px);
    background: #1E1A1E;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    width: 300px;
}

.abclose1 {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #ffffff;
    cursor: pointer;
}

.form-group {
    margin-bottom: 10px;
}

.form-group input {
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 0px;
    padding: 5px;
    box-sizing: border-box;
}

.form-group textarea {
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 0px;
    padding: 5px;
    box-sizing: border-box;
}

.abzagl1 {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffffff;
}

#contactForm .btn:hover {
    text-decoration: underline;
}

#msgSubmit {
    margin-bottom: 10px;
}

.footer-nav {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav li {
    margin: 0 20px 0 0;
    padding: 0;
    list-style: none;
}

.footer-nav li:last-child {
    margin-right: 0;
}

.mob-rek-a {
    width: 100%;
    padding: 0px 10px 0px 10px;
    text-align: center;
    box-sizing: border-box;
    clear: both;
    display: none;
}

@media screen and (max-width: 767px) {
    .mob-rek-a {
        display: block;
        grid-column-start: 1;
        grid-column-end: 4;
    }
}

@media screen and (max-width: 480px) {
    .mob-rek-a {
        display: block;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.mob-rek-a iframe {
    margin: 20px 0px 20px 0px;
}

@media screen and (max-width: 767px) {
    main .thumb {
        width: calc(100% / 3 - 10px);
    }
}

@media screen and (max-width: 480px) {
    main .thumb {
        width: calc(100% / 2 - 10px);
    }
}

.tiktok-btn {
    position: relative;
    margin-left: 10px;
    padding: 5px;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: tiktok-jiggle 15s infinite, tiktok-gradient 15s infinite linear;
    z-index: 1;
    transition: transform 0.2s ease;
}

.tiktok-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/tiktok.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 65%;
    filter: brightness(0) invert(1);
    z-index: 2;
    pointer-events: none;
}

.tiktok-btn:hover {
    transform: scale(1.1);
}

.tiktok-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 24px;
    height: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    background-image: url('../img/arrow-up.svg');
    filter: brightness(0) invert(1);
    z-index: 110;
}

.tiktok-arrow.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    animation: arrow-float-down 1.5s infinite alternate ease-in-out, arrow-glow 1.5s infinite alternate;
}

@keyframes tiktok-jiggle {
    0%,
    100%,
    95%,
    5% {
        transform: rotate(0deg);
    }
    96% {
        transform: rotate(5deg);
    }
    97% {
        transform: rotate(-5deg);
    }
    98% {
        transform: rotate(3deg);
    }
    99% {
        transform: rotate(-3deg);
    }
}

@keyframes tiktok-gradient {
    0% {
        background-color: #ff0050;
    }
    25% {
        background-color: #00f2ea;
    }
    50% {
        background-color: #ff0050;
    }
    75% {
        background-color: #fbb03b;
    }
    100% {
        background-color: #ff0050;
    }
}

@keyframes arrow-float-down {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes arrow-glow {
    0% {
        filter: brightness(0) invert(1) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #ffffff);
    }
    100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px #fbb03b) drop-shadow(0 0 15px #fbb03b);
    }
}

@media screen and (max-width: 1023px) {
    .header .container {
        display: flex;
        align-items: center;
    }
    .togglers {
        -webkit-order: 1;
        order: 1;
    }
    .logo {
        -webkit-order: 2;
        order: 2;
    }
    .language {
        -webkit-order: 3;
        order: 3;
    }
    .tiktok-btn {
        -webkit-order: 4;
        order: 4;
        margin-left: 10px;
        margin-right: 0;
    }
}

.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-heart-o {
    mask-image: url('../img/heart.svg');
    -webkit-mask-image: url('../img/heart.svg');
    width: 16px;
    height: 16px;
}

.icon-menu {
    mask-image: url('../img/menu.svg');
    -webkit-mask-image: url('../img/menu.svg');
    width: 18px;
    height: 18px;
}

.icon-search {
    mask-image: url('../img/search.svg');
    -webkit-mask-image: url('../img/search.svg');
    background-color: #ffffff;
    width: 18px;
    height: 18px;
}

.icon-home {
    mask-image: url('../img/home.svg');
    -webkit-mask-image: url('../img/home.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-trophy {
    mask-image: url('../img/award.svg');
    -webkit-mask-image: url('../img/award.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-calendar {
    mask-image: url('../img/calendar.svg');
    -webkit-mask-image: url('../img/calendar.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-eye {
    mask-image: url('../img/eye.svg');
    -webkit-mask-image: url('../img/eye.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-clock {
    mask-image: url('../img/clock.svg');
    -webkit-mask-image: url('../img/clock.svg');
    background-color: #fbb03b;
    width: 14px;
    height: 14px;
}

.icon-folder {
    mask-image: url('../img/folder.svg');
    -webkit-mask-image: url('../img/folder.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-chevron-down {
    mask-image: url('../img/chevron-down.svg');
    -webkit-mask-image: url('../img/chevron-down.svg');
    width: 12px;
    height: 12px;
    margin-left: 5px;
    vertical-align: middle;
    background-color: #fbb03b;
}

.icon-thumbs-up {
    mask-image: url('../img/thumbs-up.svg');
    -webkit-mask-image: url('../img/thumbs-up.svg');
    background-color: #fbb03b;
    width: 14px;
    height: 14px;
}

.icon-tag {
    mask-image: url('../img/tag.svg');
    -webkit-mask-image: url('../img/tag.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-arrow-up {
    mask-image: url('../img/arrow-up.svg');
    -webkit-mask-image: url('../img/arrow-up.svg');
    width: 22px;
    height: 22px;
}

.icon-chevron-left {
    mask-image: url('../img/chevron-left.svg');
    -webkit-mask-image: url('../img/chevron-left.svg');
    display: inline-block;
    background-color: #ffffff;
    width: 16px;
    height: 16px;
    mask-size: contain;
    /* Маска полностью вмещается */
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-chevron-right {
    mask-image: url('../img/chevron-right.svg');
    -webkit-mask-image: url('../img/chevron-right.svg');
    display: inline-block;
    background-color: #ffffff;
    width: 16px;
    height: 16px;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-parent>.icon {
    margin-right: 5px;
    flex-shrink: 0;
}

.navigation .nav-main a>.icon {
    margin-right: 6px;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    vertical-align: -0.1em;
}

.icon-parent>.icon:only-child,
.btn.icon-parent>.icon {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.search-btn.icon-parent>.icon {
    width: 20px;
    height: 20px;
    background-color: #000;
    margin-right: 0;
}

.nav-toggle.btn.icon-parent>.icon,
.search-toggle.btn.icon-parent>.icon {
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin-right: 0;
}

.btn-up.icon-parent>.icon {
    display: none;
}

.same-sitez a,
.same-searches a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.same-sitez a:hover,
.same-searches a:hover {
    color: #fbb03b;
}

.same-sitez a .icon,
.same-searches a .icon {
    width: 14px;
    height: 14px;
    vertical-align: -0.1em;
    margin-right: 5px;
}

.same-searches .icon-search {
    background-color: #fbb03b;
}

.navigation .nav-main a {
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.navigation .nav-main a>.icon-clock {
    width: 16px;
    height: 16px;
}

.desc-social1 span::before,
.open-tags1::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
    vertical-align: middle;
}

.desc-view1::before {
    background-image: url('../img/eye.svg');
}

.desc-videonumber1::before {
    background-image: url('../img/clock.svg');
}

.desc-date1::before {
    background-image: url('../img/calendar.svg');
}

.open-tags1::before {
    background-image: url('../img/tag.svg');
}

.filmz-info>div::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
    vertical-align: middle;
    filter: invert(79%) sepia(59%) saturate(1499%) hue-rotate(342deg) brightness(101%) contrast(97%);
}

.filmz-info>div:nth-child(1)::before {
    background-image: url('../img/calendar.svg');
}

.filmz-info>div:nth-child(2)::before {
    background-image: url('../img/eye.svg');
}

.filmz-info>div:nth-child(3)::before {
    background-image: url('../img/clock.svg');
    width: 16px;
    height: 16px;
}

.filmz-info>div {
    display: flex;
    align-items: center;
}

.thumbs-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
}

#show-more-thumbs,
#show-more-categories,
#show-less-thumbs,
#show-less-categories {
    min-width: 150px;
    text-align: center;
}

#show-more-thumbs.disabled,
#show-more-categories.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.dropdown-video-sort-container {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-left: auto;
    margin-bottom: 10px;
}

.video-sort-dropdown-container {
    margin-left: auto;
}

.video-sort-dropdown {
    position: relative;
    display: inline-block;
}

.video-sort-dropdown-toggle {
    background-color: #FD088B;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    width: auto;
    min-width: 150px;
    margin-bottom: 0;
    transition: background-color 0.3s ease;
    position: relative;
}

.video-sort-dropdown-toggle:hover {
    background-color: #292329;
}

.video-sort-dropdown-toggle .video-selected-option {
    margin-right: 8px;
}

.video-sort-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.video-sort-dropdown.active .video-sort-dropdown-toggle::after {
    transform: rotate(180deg);
}

.video-sort-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #292329;
    border-radius: 10px;
    padding: 5px 0;
    margin: 0;
    list-style: none;
    width: auto;
    min-width: 150px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-sort-dropdown-menu li {
    padding: 8px 16px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.video-sort-dropdown-menu li:hover {
    background-color: #FD088B;
}

.video-sort-dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.video-sort-dropdown.active .video-sort-dropdown-menu {
    display: block;
}

.video-sort-buttons {
    display: none;
    gap: 8px;
    align-items: center;
    margin-bottom: -10px;
}

.sort-button {
    background-color: #292329;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.sort-button.active {
    background-color: #E91E63;
    color: #fff;
}

@media screen and (min-width: 1200px) {
    .video-sort-buttons {
        display: flex;
    }
    .video-sort-dropdown-toggle {
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .video-sort-buttons {
        display: none;
    }
    .video-sort-dropdown {
        display: inline-block;
    }
}

@media screen and (max-width: 1023px) {
    .thumb {
        width: calc(100% / 4 - 10px);
    }
}

@media screen and (max-width: 767px) {
    .thumb {
        width: calc(100% / 3 - 10px);
    }
}

@media screen and (max-width: 479px) {
    .thumb {
        width: calc(100% / 2 - 10px);
    }
}

.language .dropdown-container li {
    display: block;
    padding: 6px 20px;
    white-space: nowrap;
}

.language .dropdown-container li a {
    display: block;
    color: #fff;
}

.language .dropdown-container img {
    margin: -2px 5px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.about-us-content {
    padding: 20px 0;
}

.about-us-section {
    background-color: #292329;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.about-us-section h2 {
    color: #fbb03b;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-us-section h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.about-us-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ccc;
}

.about-us-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: space-around;
}

.stat-box {
    background-color: #1E1A1E;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 120px;
    min-width: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #fbb03b;
    display: block;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 14px;
    color: #aaa;
}

.about-us-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.feature-box {
    background-color: #1E1A1E;
    padding: 15px;
    border-radius: 5px;
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-box h4 {
    font-size: 16px;
    color: #fbb03b;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .stat-box {
        flex: 1 1 calc(50% - 15px);
    }
    .feature-box {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 480px) {
    .about-us-stats {
        gap: 10px;
    }
    .stat-box {
        padding: 10px;
        flex: 1 1 100%;
    }
    .stat-value {
        font-size: 20px;
    }
    .stat-description {
        font-size: 13px;
    }
    .about-us-features {
        gap: 15px;
    }
    .feature-box {
        padding: 10px;
    }
    .feature-box h4 {
        font-size: 15px;
    }
}

.icon-desktop {
    mask-image: url('../img/desktop.svg');
    -webkit-mask-image: url('../img/desktop.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.icon-shield {
    mask-image: url('../img/shield.svg');
    -webkit-mask-image: url('../img/shield.svg');
    background-color: #fbb03b;
    width: 16px;
    height: 16px;
}

.feature-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-box h4 .icon {
    margin-right: 0;
    flex-shrink: 0;
}