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

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

:root {
    --ogp-body: #2c3338;
    --ogp-page: #212121;
    --ogp-footer: #171717;
    --ogp-panel: #2d3338;
    --ogp-card: #565d69;
    --ogp-text: #ccc;
    --ogp-white: #fff;
    --ogp-soft: #f2f2f2;
    --ogp-muted: rgba(255, 255, 255, 0.48);
    --ogp-overlay: rgba(0, 0, 0, 0.48);
    --ogp-badge: rgba(0, 0, 0, 0.55);
    --ogp-line: rgba(255, 255, 255, 0.08);
    --ogp-radius: 4px;
}

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

html {
    min-height: 100%;
}

body.ogpress-template {
    min-width: 320px;
    margin: 0;
    background: var(--ogp-body);
    color: var(--ogp-text);
    font: 400 16px/24px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "OGPressSans", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.ogpress-template a {
    color: inherit;
    text-decoration: none;
}

.ogpress-template a:hover {
    color: var(--ogp-white);
}

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

.ogpress-template button,
.ogpress-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 10px;
    clip: auto;
    color: var(--ogp-white);
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
}

#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--ogp-page);
}

.overflow_header {
    position: relative;
    z-index: 30;
    min-height: 108px;
    background: var(--ogp-page);
}

.site-header {
    position: relative;
    width: 100%;
    min-height: 108px;
    margin: 0;
    padding: 0;
}

.logotype {
    position: absolute;
    z-index: 4;
    top: 10px;
    left: 10px;
    display: block;
    max-width: calc(100% - 290px);
    height: 42px;
    overflow: hidden;
    padding: 0 5px;
    color: var(--ogp-white);
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.logotype strong,
.logo-suffix {
    color: var(--ogp-white);
    font-weight: 500;
}

.ogpress-header-panel {
    position: static;
}

#searchform {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 10px;
    display: flex;
    width: 242px;
    height: 38px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--ogp-panel);
    border: 0;
    border-radius: 5px;
}

#s {
    display: inline-block;
    width: calc(100% - 45px);
    height: 36px;
    margin: 1px 0;
    padding: 0 0 0 20px;
    color: var(--ogp-white);
    background: transparent;
    border: 0;
    border-radius: 3px;
    outline: 0;
    font-size: 16px;
    line-height: 24px;
}

#s::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

#searchsubmit {
    position: relative;
    display: block;
    width: 45px;
    height: 38px;
    margin: 0;
    padding: 8px 13px 3px;
    color: var(--ogp-muted);
    background: transparent;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}

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

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

.menu {
    position: absolute;
    z-index: 7;
    top: 12px;
    right: 262px;
    display: none;
    width: 38px;
    height: 38px;
    background: var(--ogp-panel);
    border-radius: 5px;
    cursor: pointer;
}

.menu::before,
.menu::after {
    content: "";
    position: absolute;
    left: 10px;
    width: 18px;
    height: 2px;
    background: var(--ogp-white);
    transition: transform 0.16s ease, top 0.16s ease, box-shadow 0.16s ease;
}

.menu::before {
    top: 11px;
    box-shadow: 0 7px 0 var(--ogp-white);
}

.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);
}

#site-navigation {
    position: absolute;
    z-index: 40;
    top: 62px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    height: 46px;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: var(--ogp-page);
    scrollbar-width: none;
}

#site-navigation::-webkit-scrollbar {
    display: none;
}

#site-navigation > a,
.ogpress-language-button {
    display: block;
    min-height: 46px;
    padding: 10px;
    color: var(--ogp-white);
    background: transparent;
    border: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 25.5px;
    white-space: nowrap;
}

#site-navigation > a.select,
#site-navigation > a:hover,
.ogpress-language.open .ogpress-language-button,
.ogpress-language-button:hover {
    background: var(--ogp-panel);
}

.ogpress-language {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    z-index: 70;
}

.ogpress-language-button {
    position: relative;
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
}

.ogpress-language.open {
    z-index: 200;
}

.ogpress-language-button::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 3px 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.ogpress-language-menu {
    position: absolute;
    z-index: 500;
    top: 100%;
    right: auto;
    left: 0;
    display: none;
    width: min(240px, calc(100vw - 20px));
    max-height: min(320px, calc(100vh - 120px));
    margin: 0;
    padding: 4px;
    overflow: auto;
    list-style: none;
    background: var(--ogp-panel);
    border: 1px solid var(--ogp-line);
    border-radius: 5px;
    pointer-events: auto;
}

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

.ogpress-language-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    color: var(--ogp-white);
    border-radius: 4px;
}

.ogpress-language-menu a:hover,
.ogpress-language-menu a.active {
    background: rgba(255, 255, 255, 0.08);
}

.ogpress-language-menu span {
    color: var(--ogp-muted);
    font-size: 12px;
}

.overflow_content {
    flex: 1 0 auto;
    width: 100%;
    padding: 0 10px;
}

.content-area,
.site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.site-main {
    margin-bottom: 24px;
}

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

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

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

.page-header {
    margin: 0 0 5px;
}

.template-page-home .page-header {
    display: none;
}

.widget-title,
.homepage-title,
.ogpress-single h1,
.ogpress-related h2 {
    margin: 0;
    padding: 5px;
    color: var(--ogp-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.cms-alert,
.empty-content,
.archive-description {
    margin: 10px 0;
    padding: 12px;
    color: var(--ogp-text);
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
    font-size: 15px;
    line-height: 1.55;
}

.empty-content {
    min-height: 170px;
    display: grid;
    place-items: center;
}

.empty-content h2 {
    margin: 0;
    color: var(--ogp-white);
    font-size: 20px;
    font-weight: 500;
}

ul.items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.video-item {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: var(--ogp-white);
    background: var(--ogp-card);
    border-radius: var(--ogp-radius);
}

.video-item > div {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 170px;
}

.picture {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    color: var(--ogp-white);
    background: var(--ogp-card);
}

.loaderbox {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--ogp-card);
}

.picture-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-thumb {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--ogp-soft);
    background: var(--ogp-card);
}

.picture::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 52%);
    pointer-events: none;
}

.picture .hd {
    display: none;
}

.picture .duration {
    position: absolute;
    z-index: 4;
    top: 5px;
    left: 10px;
    display: block;
    padding: 2px 6px;
    color: var(--ogp-soft);
    background: var(--ogp-badge);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.video-item p {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    min-height: 36px;
    max-height: 54px;
    margin: 0;
    padding: 5px;
    overflow: hidden;
    color: var(--ogp-white);
    background: var(--ogp-overlay);
    font-size: 17.6px;
    font-weight: 400;
    line-height: 26.4px;
}

.video-item p a {
    display: block;
    overflow: hidden;
    color: var(--ogp-white);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.video-card-meta {
    position: absolute;
    z-index: 5;
    top: 5px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ogp-soft);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.video-card-meta .views {
    display: block;
    padding: 2px 6px;
    background: var(--ogp-badge);
    border-radius: 5px;
}

.video-card-meta .views-label,
.video-card-meta .rate {
    display: none;
}

.pager_navigation,
.cms-pagination nav.pagination,
.cms-pagination .pagination-holder,
.load-more-row nav.pagination,
.load-more-row .pagination-holder {
    clear: both;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 18px 0 24px;
    padding: 0;
    float: none;
    width: 100%;
    list-style: none;
}

.cms-pagination > div[style*="clear"] {
    display: none !important;
}

.cms-pagination ul,
.pagination ul,
.pager_navigation ul,
.load-more-row ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
    list-style: none;
}

.cms-pagination li,
.pagination li,
.pager_navigation li,
.load-more-row li {
    display: inline-flex;
    width: auto;
    margin: 0;
    padding: 0;
    float: none;
    list-style: none;
}

.pager_navigation a,
.pager_navigation span,
.pager_navigation strong,
.pagination a,
.pagination span,
.pagination strong,
.load-more-row a,
.load-more-row span,
.load-more-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 6px 10px;
    color: var(--ogp-white);
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
    font-size: 15px;
}

.pager_navigation span,
.pager_navigation a:hover,
.pager_navigation strong,
.pagination a:hover,
.pagination .active,
.pagination .current,
.pagination strong,
.load-more-row a:hover,
.load-more-row .active,
.load-more-row .current,
.load-more-row strong {
    background: var(--ogp-card);
}

.clear {
    clear: both;
}

.ogpress-single {
    width: 100%;
    margin: 0;
}

.video-article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 304px);
    gap: 10px;
    align-items: start;
    width: 100%;
    margin: 0;
}

.video-article.no-sidebar {
    grid-template-columns: minmax(0, 980px);
    justify-content: center;
}

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

.vv {
    overflow: hidden;
    background: #000;
    border-radius: var(--ogp-radius);
}

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

.responsive-player #player,
.responsive-player .jwplayer {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.ogpress-single h1 {
    margin: 10px 0 5px;
}

.video-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    margin: 0 0 10px;
    padding: 10px;
    color: var(--ogp-text);
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
}

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

.rate-this .like,
.rate-this .dislike {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    background: var(--ogp-page);
    border-radius: var(--ogp-radius);
}

.rate-this .like::before,
.rate-this .dislike::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 11px;
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--ogp-white);
    border-left: 3px solid var(--ogp-white);
    transform: rotate(45deg);
}

.rate-this .dislike::before {
    top: 8px;
    transform: rotate(225deg);
}

.statistick {
    min-width: 120px;
}

.statistick strong {
    color: var(--ogp-white);
}

.statistick span {
    display: block;
    height: 4px;
    margin: 4px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.statistick hr {
    display: block;
    height: 100%;
    margin: 0;
    background: var(--ogp-white);
    border: 0;
}

.statistick small {
    color: var(--ogp-text);
}

.download button {
    min-height: 34px;
    padding: 6px 11px;
    color: var(--ogp-white);
    background: var(--ogp-card);
    border: 0;
    border-radius: var(--ogp-radius);
    cursor: pointer;
}

.data {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.data span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 8px;
    background: var(--ogp-page);
    border-radius: var(--ogp-radius);
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
}

.categories a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 9px;
    color: var(--ogp-white);
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
}

.categories a:hover {
    background: var(--ogp-card);
}

.description,
.ogpress-share-link {
    margin: 0 0 10px;
    padding: 12px;
    color: var(--ogp-text);
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
    font-size: 15px;
    line-height: 1.55;
}

.ogpress-share-link {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.ogpress-share-link label {
    color: var(--ogp-text);
}

.ogpress-share-link input {
    width: 100%;
    min-height: 36px;
    padding: 6px 10px;
    color: var(--ogp-white);
    background: var(--ogp-page);
    border: 0;
    border-radius: var(--ogp-radius);
    outline: 0;
}

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

.right-column .video-item > div {
    min-height: 171px;
}

.ogpress-related {
    margin: 18px 0 0;
}

.ogpress-related h2 {
    margin: 0 0 5px;
}

.site-footer {
    flex: 0 0 auto;
    margin: 20px 0 0;
    padding: 10px 0;
    color: var(--ogp-text);
    background: var(--ogp-footer);
    font-size: 16px;
    line-height: 24px;
}

.site-footer > div {
    position: relative;
    padding: 0 10px;
}

.logotye {
    display: inline-block;
    margin-right: 10px;
    color: var(--ogp-white);
    font-weight: 500;
}

.logotye strong,
.logotye .logo-suffix {
    color: var(--ogp-white);
}

.site-footer p {
    display: inline;
    margin: 0;
}

.site-footer a {
    color: var(--ogp-text);
}

.site-footer a::before {
    content: "|";
    margin: 0 8px;
    color: var(--ogp-text);
}

.site-footer a:hover,
.site-footer a.active {
    color: var(--ogp-white);
}

.toheader {
    position: absolute;
    right: 10px;
    bottom: calc(100% + 12px);
    width: 34px;
    height: 34px;
    background: var(--ogp-panel);
    border-radius: var(--ogp-radius);
}

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

.toheader::before {
    top: 9px;
    left: 16px;
    width: 2px;
    height: 16px;
    background: var(--ogp-white);
}

.toheader::after {
    top: 9px;
    left: 12px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--ogp-white);
    border-left: 2px solid var(--ogp-white);
    transform: rotate(45deg);
}

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

.is-rtl {
    direction: rtl;
}

.is-rtl .logotype {
    right: 10px;
    left: auto;
}

.is-rtl #searchform {
    right: auto;
    left: 10px;
}

.is-rtl #s {
    padding-right: 20px;
    padding-left: 0;
}

.is-rtl .menu {
    right: auto;
    left: 262px;
}

.is-rtl .ogpress-language-button::after {
    margin-right: 8px;
    margin-left: 0;
}

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

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

.is-rtl .video-card-meta {
    right: auto;
    left: 10px;
}

@media (max-width: 980px) {
    .overflow_header,
    .site-header {
        min-height: 62px;
    }

    .logotype {
        max-width: calc(100% - 365px);
    }

    .menu {
        display: block;
    }

    #site-navigation {
        top: 62px;
        display: none;
        height: auto;
        max-height: calc(100vh - 72px);
        flex-wrap: wrap;
        overflow: auto;
        background: var(--ogp-page);
        border-top: 1px solid var(--ogp-line);
        border-bottom: 1px solid var(--ogp-line);
    }

    .ogpress-header-panel.is-open #site-navigation,
    #site-navigation.menu-open {
        display: flex;
    }

    .ogpress-language {
        flex-direction: column;
    }

    .ogpress-language-menu {
        position: static;
        width: 100%;
        max-height: 320px;
    }

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

    .right-column ul.items {
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }

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

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

@media (max-width: 720px) {
    .overflow_header,
    .site-header {
        min-height: 108px;
    }

    .logotype {
        max-width: calc(100% - 60px);
    }

    #searchform {
        top: 60px;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .menu {
        top: 12px;
        right: 10px;
    }

    #site-navigation {
        top: 108px;
    }

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

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

    .video-item p {
        font-size: 16px;
        line-height: 24px;
    }

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

    .site-footer p,
    .logotye {
        display: block;
    }

    .site-footer a::before {
        content: none;
        margin: 0;
    }

    .site-footer a {
        margin-right: 10px;
    }
}
