@font-face {
    font-family: "YuFrameRoboto";
    src: url("../fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "YuFrameRoboto";
    src: url("../fonts/Roboto-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "YuFrameRoboto";
    src: url("../fonts/Roboto-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --yuframe-bg: #202020;
    --yuframe-black: #000;
    --yuframe-panel: #151515;
    --yuframe-panel-2: #111;
    --yuframe-text: #d3d3d3;
    --yuframe-muted: #a9a9a9;
    --yuframe-dim: #777;
    --yuframe-red: #dc3545;
    --yuframe-red-dark: #c82333;
    --yuframe-border: #343a40;
    --yuframe-overlay: rgba(34, 35, 35, 0.76);
    --yuframe-width: 1440px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body.yuframe-template {
    min-width: 320px;
    margin: 0;
    background: var(--yuframe-bg);
    color: var(--yuframe-text);
    font: 400 16px/1.5 "YuFrameRoboto", Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.yuframe-template a {
    color: var(--yuframe-red);
    text-decoration: none;
}

.yuframe-template a:hover {
    color: #fff;
}

.yuframe-template img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.yuframe-template button,
.yuframe-template input {
    font: inherit;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 9999;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 8px 14px;
    clip: auto;
    background: var(--yuframe-red);
    color: #fff;
}

#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.overflow_header {
    position: relative;
    z-index: 20;
    background: var(--yuframe-bg);
}

.site-header {
    position: relative;
    display: flex;
    align-items: center;
    width: min(var(--yuframe-width), 100%);
    min-height: 120px;
    margin: 0 auto;
    padding: 0 15px 50px;
}

.logotype {
    display: inline-flex;
    align-items: center;
    flex: 0 0 247px;
    max-width: 247px;
    min-height: 70px;
    padding-right: 48px;
    color: #f2f2f2;
    font-size: clamp(25px, 3.4vw, 36px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    word-break: break-word;
}

.logotype strong {
    color: var(--yuframe-red);
    font-weight: 800;
}

.logotype:hover {
    color: #fff;
}

.menu {
    display: none;
}

.yuframe-header-panel {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 70px;
}

#site-navigation {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    display: flex;
    align-items: stretch;
    height: 50px;
    overflow: visible;
    background: var(--yuframe-panel-2);
}

#site-navigation > a,
.yuframe-language-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    cursor: pointer;
}

#site-navigation > a.select,
#site-navigation > a:hover,
.yuframe-language.open .yuframe-language-button,
.yuframe-language-button:hover {
    background: var(--yuframe-red-dark);
    color: #fff;
}

.yuframe-language {
    position: relative;
    display: inline-flex;
}

.yuframe-language-button::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.yuframe-language-menu {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 40;
    display: none;
    width: 220px;
    max-height: 360px;
    margin: 0;
    padding: 6px;
    overflow: auto;
    list-style: none;
    background: #000;
    border: 1px solid var(--yuframe-border);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.yuframe-language.open .yuframe-language-menu {
    display: block;
}

.yuframe-language-menu a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    color: var(--yuframe-text);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.yuframe-language-menu a:hover,
.yuframe-language-menu a.active {
    background: var(--yuframe-red);
    color: #fff;
}

.yuframe-language-menu span {
    color: inherit;
    font-size: 11px;
    opacity: 0.7;
}

#searchform {
    position: relative;
    display: flex;
    align-items: stretch;
    flex: 0 1 430px;
    width: min(430px, 42vw);
    min-width: 280px;
    height: 38px;
    margin: 0 48px 0 0;
}

#s {
    width: 100%;
    height: 38px;
    padding: 6px 52px 6px 16px;
    border: 1px solid var(--yuframe-border);
    border-right: 0;
    border-radius: 800px 0 0 800px;
    outline: 0;
    background: #000;
    color: #dee2e6;
    font-size: 16px;
    line-height: 24px;
}

#s::placeholder {
    color: #8d8d8d;
}

#searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 38px;
    border: 1px solid var(--yuframe-red-dark);
    border-radius: 0 800px 800px 0;
    background: var(--yuframe-red);
    cursor: pointer;
}

#searchsubmit::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 50%;
}

#searchsubmit::after {
    content: "";
    position: absolute;
    top: 23px;
    left: 24px;
    width: 10px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: left center;
}

#searchsubmit:hover {
    background: var(--yuframe-red-dark);
}

.overflow_content {
    flex: 1 0 auto;
    width: min(var(--yuframe-width), 100%);
    margin: 0 auto;
    padding: 16px 15px 32px;
}

.site-main {
    width: 100%;
}

.ads-container {
    margin: 0 0 16px;
}

.ads-container--bottom {
    margin: 28px 0 0;
}

.ads-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ad-slot {
    min-height: 1px;
    overflow: hidden;
}

.page-header {
    display: flex;
    align-items: center;
    min-height: 37px;
    margin: 0 0 8px;
    padding: 0;
}

.widget-title,
.yuframe-single h1,
.yuframe-related h2,
.empty-content h2,
.homepage-title {
    margin: 0;
    color: var(--yuframe-text);
    font-weight: 500;
    line-height: 1.2;
}

.widget-title {
    font-size: 24px;
}

.homepage-title {
    margin-top: 30px;
    font-size: 24px;
}

.cms-alert {
    margin: 0 0 16px;
    padding: 10px 12px;
    background: #332b13;
    border: 1px solid #6c5b25;
    border-radius: 4px;
    color: #ffe49b;
    font-size: 14px;
}

.empty-content {
    padding: 34px 16px;
    background: #171717;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    text-align: center;
}

.archive-description {
    margin: 22px 0 0;
    padding: 15px;
    background: transparent;
    color: var(--yuframe-text);
    font-size: 16px;
    line-height: 1.6;
}

.archive-description-top {
    margin: 0 0 18px;
    padding: 15px;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    background: #171717;
}

.archive-description p:first-child {
    margin-top: 0;
}

.archive-description p:last-child {
    margin-bottom: 0;
}

ul.items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.items > li {
    min-width: 0;
    margin: 0;
    padding: 0;
}

ul.items > li > div {
    display: block;
    min-height: 100%;
    background: transparent;
}

.picture {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    color: #fff;
    border-radius: 4px;
}

.loaderbox {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    background: #101010;
    border-radius: 4px;
}

.picture-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.16s ease;
}

.picture:hover .picture-img {
    opacity: 0.82;
}

.picture::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.picture::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 0;
    height: 0;
    margin: -10px 0 0 -5px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.picture:hover::before,
.picture:hover::after {
    opacity: 1;
    transform: scale(1);
}

.hd,
.duration,
.views,
.rate {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 1px 5px;
    background: var(--yuframe-overlay);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    line-height: 18px;
    pointer-events: none;
}

.hd {
    top: 5px;
    left: 5px;
    background: var(--yuframe-red-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.duration {
    top: 5px;
    right: 5px;
}

.views {
    right: 5px;
    bottom: 5px;
}

.views::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.rate {
    display: none;
}

.no-thumb {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
}

ul.items p {
    margin: 4px 0 0;
    padding: 0;
    color: var(--yuframe-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

ul.items p a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--yuframe-text);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

ul.items p a:hover {
    color: var(--yuframe-red);
}

.right-column ul.items p,
.mintube p {
    font-size: 15px;
    line-height: 20px;
}

.pager_navigation,
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 26px 0 0;
}

.pager_navigation a,
.pager_navigation span,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    padding: 6px 12px;
    background: #000;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    color: var(--yuframe-text);
    font-size: 14px;
    line-height: 20px;
}

.pager_navigation a:hover,
.pagination a:hover,
.pager_navigation .active,
.pager_navigation .current,
.pagination .active,
.pagination .current,
.pager_navigation span.current {
    background: var(--yuframe-red-dark);
    border-color: var(--yuframe-red-dark);
    color: #fff;
}

.clear {
    display: block;
    clear: both;
}

.yuframe-single {
    margin: 0;
}

.yuframe-single > h1 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
}

.video-article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

.video-article.no-sidebar {
    grid-template-columns: minmax(0, 1fr);
}

.left-column,
.right-column {
    min-width: 0;
}

.vv {
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}

.responsive-player {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
}

#player,
#player_wrapper {
    width: 100% !important;
    height: 100% !important;
}

.video-sidebar {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    align-items: center;
    margin: 8px 0 16px;
    padding: 10px;
    background: #171717;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
}

.rate-this {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rate-this > a {
    position: relative;
    width: 34px;
    height: 34px;
    background: #000;
    border: 1px solid var(--yuframe-border);
    border-radius: 800px;
}

.rate-this > a::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 3px;
    background: currentColor;
}

.rate-this > a.like {
    color: #2fc36b;
}

.rate-this > a.dislike {
    color: var(--yuframe-red);
    transform: rotate(180deg);
}

.statistick {
    min-width: 96px;
}

.statistick strong {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.statistick span {
    display: block;
    height: 4px;
    margin: 4px 0;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}

.statistick hr {
    display: block;
    height: 4px;
    margin: 0;
    border: 0;
    background: var(--yuframe-red);
}

.statistick small {
    color: var(--yuframe-muted);
    font-size: 12px;
}

.download button,
.js-share-focus {
    min-height: 36px;
    padding: 6px 14px;
    border: 1px solid var(--yuframe-red-dark);
    border-radius: 800px;
    background: var(--yuframe-red);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.download button:hover,
.js-share-focus:hover {
    background: var(--yuframe-red-dark);
}

.data {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    color: var(--yuframe-muted);
    font-size: 12px;
}

.data span {
    position: static;
    display: inline-flex;
    min-height: 24px;
    padding: 3px 7px;
    background: #000;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    color: var(--yuframe-text);
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 16px;
}

.categories a {
    display: inline-flex;
    padding: 5px 10px;
    background: #000;
    border: 1px solid var(--yuframe-border);
    border-radius: 800px;
    color: var(--yuframe-text);
    font-size: 13px;
}

.categories a:hover {
    background: var(--yuframe-red);
    border-color: var(--yuframe-red);
    color: #fff;
}

.description {
    margin: 0 0 16px;
    padding: 15px;
    background: #171717;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    color: var(--yuframe-text);
    font-size: 16px;
    line-height: 1.6;
}

.yuframe-share-link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin: 0 0 16px;
    padding: 10px;
    background: #171717;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
}

.yuframe-share-link label {
    color: var(--yuframe-text);
    font-size: 13px;
}

.yuframe-share-link input {
    width: 100%;
    min-height: 36px;
    padding: 6px 10px;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    background: #000;
    color: var(--yuframe-text);
}

.right-column ul.items {
    grid-template-columns: 1fr;
    gap: 12px;
}

.yuframe-related {
    margin-top: 26px;
}

.yuframe-related h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.site-footer {
    flex: 0 0 auto;
    margin-top: 8px;
    padding: 16px 0;
    background: #000;
    color: #ccc;
}

.site-footer > div {
    position: relative;
    width: min(var(--yuframe-width), 100%);
    margin: 0 auto;
    padding: 0 15px;
}

.logotye {
    display: inline-block;
    margin: 0 0 8px;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logotye strong {
    color: var(--yuframe-red);
}

.site-footer p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer p a {
    display: inline-flex;
    margin: 0 16px 8px 0;
    color: #ccc;
}

.site-footer p a:hover,
.site-footer p a.active {
    color: var(--yuframe-red);
}

.toheader {
    position: absolute;
    top: 0;
    right: 15px;
    width: 38px;
    height: 38px;
    background: var(--yuframe-red);
    border-radius: 4px;
}

.toheader::before,
.toheader::after {
    content: "";
    position: absolute;
}

.toheader::before {
    top: 10px;
    left: 18px;
    width: 3px;
    height: 18px;
    background: #fff;
}

.toheader::after {
    top: 10px;
    left: 13px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(45deg);
}

.footer-counters {
    margin-top: 12px;
}

.is-rtl {
    direction: rtl;
}

.is-rtl .logotype {
    padding-right: 0;
    padding-left: 48px;
}

.is-rtl #searchform {
    margin-right: 0;
    margin-left: 48px;
}

.is-rtl #s {
    padding-right: 16px;
    padding-left: 52px;
    border-radius: 0 800px 800px 0;
}

.is-rtl #searchsubmit {
    right: auto;
    left: 0;
    border-radius: 800px 0 0 800px;
}

.is-rtl .yuframe-language-menu {
    left: auto;
    right: 0;
}

.is-rtl .hd {
    left: auto;
    right: 5px;
}

.is-rtl .duration {
    right: auto;
    left: 5px;
}

.is-rtl .views {
    right: auto;
    left: 5px;
}

@media (max-width: 1190px) {
    ul.items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .video-article {
        grid-template-columns: minmax(0, 1fr);
    }

    .right-column ul.items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        min-height: 70px;
        padding-bottom: 0;
    }

    .logotype {
        flex: 1 1 auto;
        max-width: calc(100% - 58px);
        min-height: 70px;
        padding-right: 16px;
    }

    .menu {
        position: relative;
        display: inline-flex;
        flex: 0 0 42px;
        width: 42px;
        height: 38px;
        margin-left: auto;
        background: #000;
        border: 1px solid var(--yuframe-border);
        border-radius: 4px;
        cursor: pointer;
    }

    .menu::before,
    .menu::after {
        content: "";
        position: absolute;
        left: 10px;
        width: 20px;
        height: 2px;
        background: #fff;
        transition: transform 0.16s ease, top 0.16s ease, box-shadow 0.16s ease;
    }

    .menu::before {
        top: 11px;
        box-shadow: 0 7px 0 #fff;
    }

    .menu::after {
        top: 25px;
    }

    .menu.menu-opened::before {
        top: 18px;
        box-shadow: none;
        transform: rotate(45deg);
    }

    .menu.menu-opened::after {
        top: 18px;
        transform: rotate(-45deg);
    }

    .yuframe-header-panel {
        display: none;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        padding-bottom: 12px;
    }

    .yuframe-header-panel.is-open {
        display: flex;
    }

    #searchform {
        order: 1;
        width: 100%;
        flex-basis: auto;
        min-width: 0;
        margin: 0 0 10px;
    }

    #site-navigation {
        position: static;
        order: 2;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    #site-navigation > a,
    .yuframe-language,
    .yuframe-language-button {
        width: 100%;
    }

    #site-navigation > a,
    .yuframe-language-button {
        justify-content: flex-start;
        height: 44px;
        line-height: 44px;
        font-size: 16px;
    }

    .yuframe-language {
        display: flex;
        flex-direction: column;
    }

    .yuframe-language-menu {
        position: static;
        width: 100%;
        max-height: 260px;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    ul.items,
    .right-column ul.items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-sidebar {
        grid-template-columns: 1fr;
    }

    .data {
        justify-content: flex-start;
    }

    .yuframe-share-link {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-header,
    .overflow_content,
    .site-footer > div {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .ads-row {
        grid-template-columns: 1fr;
    }

    ul.items,
    .right-column ul.items {
        grid-template-columns: 1fr;
    }

    .widget-title,
    .homepage-title,
    .yuframe-related h2 {
        font-size: 22px;
    }

    .logotype {
        font-size: 25px;
        letter-spacing: -1.2px;
    }

    .toheader {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 10px;
    }
}

/* CMS layout fixes for long text logos and PaginationNew nested markup. */
.logotype {
    flex: 0 1 auto;
    width: auto;
    max-width: min(360px, 34vw);
    min-width: 0;
    padding-right: 32px;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    line-height: 1;
}

.logotype strong {
    display: inline;
    max-width: none;
    white-space: nowrap;
}

.logotype,
.logotype strong {
    overflow: hidden;
    text-overflow: ellipsis;
}

.logotye,
.logotye strong {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.cms-pagination,
.cms-pagination nav.pagination,
.cms-pagination .pagination-holder,
.cms-pagination ul {
    clear: both;
    display: flex;
    float: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    overflow: visible;
    list-style: none;
}

.cms-pagination {
    width: 100%;
    margin: 26px auto 0;
    padding: 0 0 30px;
}

.cms-pagination > div[style] {
    display: none;
}

.cms-pagination ul li {
    display: flex;
    float: none;
    margin: 0;
    padding: 0;
}

.cms-pagination ul li > a,
.cms-pagination ul li > span,
.cms-pagination ul li > strong,
.cms-pagination > a,
.cms-pagination > span,
.cms-pagination > strong {
    display: inline-flex;
    min-width: 36px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 6px 12px;
    background: #000;
    border: 1px solid var(--yuframe-border);
    border-radius: 4px;
    color: var(--yuframe-text);
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

.cms-pagination ul li > a:hover,
.cms-pagination ul li.chosen > span,
.cms-pagination ul li > span.current,
.cms-pagination .current,
.cms-pagination strong {
    background: var(--yuframe-red-dark);
    border-color: var(--yuframe-red-dark);
    color: #fff;
}

@media (max-width: 980px) {
    .logotype {
        max-width: calc(100% - 76px);
    }
}

@media (max-width: 560px) {
    .logotype {
        max-width: calc(100% - 68px);
        padding-right: 18px;
        white-space: nowrap;
    }

    .cms-pagination,
    .cms-pagination nav.pagination,
    .cms-pagination ul {
        gap: 5px;
    }

    .cms-pagination ul li > a,
    .cms-pagination ul li > span,
    .cms-pagination ul li > strong,
    .cms-pagination > a,
    .cms-pagination > span,
    .cms-pagination > strong {
        min-width: 32px;
        min-height: 32px;
        padding: 0 9px;
        font-size: 13px;
    }
}
