/*
Theme Name: VideoRP
Author: UX Themes
Template: videomagz
Version: 1.0
*/


#main, #masthead, #footer, .blog-header-wrapper {
    background: #0f0f0f;
}

.align-equal>.col {
    display: flex;
    justify-content: center;
}

.gallery, .row {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: center;
}

.container-width, .full-width .ubermenu-nav, .container, .row {
    max-width: unset !important;
}

ul.header-nav.header-nav-main {
    display: flex;
    justify-content: center;
}



ul.header-nav.header-nav-main  .menu-item a:hover {
    color: red !important;
}

.nav-column li.active > a, .nav-column li > a:hover, .nav-dropdown li.active > a, .nav-dropdown > li > a:hover, .nav-vertical-fly-out > li.active > a, .nav-vertical-fly-out > li > a:hover, .nav > li.active > a, .nav > li.current > a, .nav > li > a.active, .nav > li > a.current, .nav > li > a:hover {
	color: hsla(0, 100%, 50%, 0.85);
}

.player-video-shell {
    --player-video-radius: 14px;
    --player-video-bg: #070707;
    --player-video-control-bg: rgba(10, 10, 10, 0.88);
    --player-video-accent: #ffffff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px auto;
    overflow: visible;
}
.player-video-shell.is-detecting {
    aspect-ratio: 16 / 9;
    min-height: 240px;
}
.player-video-shell.is-landscape { width: 100%; }
.player-video-shell.is-landscape .player-video-stage {
    width: 100%;
    height: auto;
    aspect-ratio: var(--player-video-ratio, 16 / 9);
}
.player-video-shell.is-square { width: 100%; }
.player-video-shell.is-square .player-video-stage {
    width: min(100%, 760px);
    aspect-ratio: 1 / 1;
}
.player-video-shell.is-portrait {
    width: 100%;
    height: calc(80vh - 48px);
    min-height: 520px;
}
.player-video-shell.is-portrait .player-video-stage {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    aspect-ratio: var(--player-video-ratio, 9 / 16);
}
.player-video-stage {
    position: relative;
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 50% 35%, #1b1b1b 0%, #090909 45%, #000000 100%);
    border-radius: var(--player-video-radius);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), 0 3px 12px rgba(0, 0, 0, 0.18);
    transition: width 0.25s ease, height 0.25s ease, aspect-ratio 0.25s ease;
}
.player-video-stage .video-js {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    background: #000;
    border-radius: inherit;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.player-video-stage .video-js .vjs-tech {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}
.player-video-shell.is-portrait .player-video-stage {
    background: radial-gradient(circle at 50% 42%, #202020 0%, #090909 50%, #000 100%);
}
.player-video-shell.is-portrait .video-js .vjs-tech { object-fit: contain; }
.player-video-stage .vjs-poster {
    background-color: #080808;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.player-video-shell:not(.has-started) .player-video-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.10) 58%, rgba(0, 0, 0, 0.34) 100%);
    transition: opacity 0.35s ease;
}
.player-video-shell.has-started .player-video-stage::after { opacity: 0; }
.player-video-skeleton {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(110deg, #090909 10%, #171717 26%, #090909 42%);
    background-size: 220% 100%;
    border-radius: inherit;
    opacity: 1;
    visibility: visible;
    animation: player-video-skeleton-shimmer 1.35s linear infinite;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.player-video-shell.is-ready .player-video-skeleton,
.player-video-shell.has-error .player-video-skeleton {
    opacity: 0;
    visibility: hidden;
}
.player-video-skeleton-icon {
    position: relative;
    width: 58px;
    height: 58px;
    border: 3px solid rgba(255, 255, 255, 0.16);
    border-top-color: rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    animation: player-video-loading-spin 0.85s linear infinite;
}
.player-video-skeleton-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(255, 255, 255, 0.10);
    border-bottom-color: rgba(255, 255, 255, 0.45);
    border-radius: inherit;
    animation: player-video-loading-spin 1.2s linear infinite reverse;
}
@keyframes player-video-skeleton-shimmer { to { background-position-x: -220%; } }
@keyframes player-video-loading-spin { to { transform: rotate(360deg); } }

.player-video-stage .video-js .vjs-big-play-button {
    top: 50%;
    left: 50%;
    width: 88px;
    height: 88px;
    margin-top: -44px;
    margin-left: -44px;
    z-index: 10;
    color: red;
    background: linear-gradient(145deg, rgba(32, 32, 32, 0.94), rgba(5, 5, 5, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 255, 255, 0.28), 0 0 50px rgba(255, 255, 255, 0.16), 0 14px 35px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    animation: player-video-play-glow 2.1s ease-in-out infinite;
}
.player-video-stage .video-js .vjs-big-play-button:hover,
.player-video-stage .video-js .vjs-big-play-button:focus {
    transform: scale(1.08);
    background: linear-gradient(145deg, rgba(48, 48, 48, 0.98), rgba(8, 8, 8, 0.98));
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 255, 255, 0.42), 0 0 75px rgba(255, 255, 255, 0.22), 0 18px 40px rgba(0, 0, 0, 0.65);
}
.player-video-stage .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 52px;
    line-height: 1;
    transform: translateX(2px);
}
.player-video-shell.is-portrait .vjs-big-play-button {
    width: 78px;
    height: 78px;
    margin-top: -39px;
    margin-left: -39px;
}
@keyframes player-video-play-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.09), 0 0 18px rgba(255, 255, 255, 0.23), 0 0 45px rgba(255, 255, 255, 0.14), 0 14px 35px rgba(0, 0, 0, 0.55); }
    50% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0), 0 0 30px rgba(255, 255, 255, 0.42), 0 0 75px rgba(255, 255, 255, 0.21), 0 14px 35px rgba(0, 0, 0, 0.55); }
}

.player-video-error { position: absolute; inset: 0; z-index: 30; display: none; align-items: center; justify-content: center; padding: 30px; color: #fff; background: #080808; border-radius: inherit; text-align: center; }
.player-video-shell.has-error .player-video-error { display: flex; }
.player-video-error-inner { max-width: 460px; }
.player-video-error-title { display: block; margin-bottom: 8px; font-size: 18px; font-weight: 700; }
.player-video-error-message { color: rgba(255, 255, 255, 0.68); font-size: 14px; line-height: 1.55; }
.player-video-direct-button { position: absolute; top: 50%; left: 50%; z-index: 35; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 9px; min-width: 116px; min-height: 116px; padding: 18px; color: #fff; background: linear-gradient(145deg, rgba(35, 35, 35, 0.96), rgba(4, 4, 4, 0.96)); border: 1px solid rgba(255, 255, 255, 0.48); border-radius: 50%; cursor: pointer; transform: translate(-50%, -50%); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 22px rgba(255, 255, 255, 0.30), 0 0 60px rgba(255, 255, 255, 0.18), 0 16px 40px rgba(0, 0, 0, 0.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); animation: player-video-direct-glow 2s ease-in-out infinite; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.player-video-shell.use-direct-fallback .player-video-direct-button { display: flex; }
.player-video-direct-button:hover,
.player-video-direct-button:focus { transform: translate(-50%, -50%) scale(1.07); border-color: rgba(255, 255, 255, 0.85); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.07), 0 0 32px rgba(255, 255, 255, 0.44), 0 0 80px rgba(255, 255, 255, 0.22), 0 18px 45px rgba(0, 0, 0, 0.72); }
.player-video-direct-button-icon { position: relative; width: 0; height: 0; margin-left: 7px; border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-left: 25px solid #fff; }
.player-video-direct-button-text { font-size: 12px; font-weight: 600; line-height: 1; white-space: nowrap; }
.player-video-shell.use-direct-fallback .video-js .vjs-big-play-button,
.player-video-shell.use-direct-fallback .video-js .vjs-control-bar,
.player-video-shell.use-direct-fallback .video-js .vjs-loading-spinner,
.player-video-shell.use-direct-fallback .player-video-skeleton,
.player-video-shell.use-direct-fallback .player-video-error { display: none !important; }
@keyframes player-video-direct-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.10), 0 0 20px rgba(255, 255, 255, 0.25), 0 0 50px rgba(255, 255, 255, 0.15), 0 16px 40px rgba(0, 0, 0, 0.65); } 50% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0), 0 0 32px rgba(255, 255, 255, 0.42), 0 0 75px rgba(255, 255, 255, 0.22), 0 16px 40px rgba(0, 0, 0, 0.65); } }

.nav-dots-small .flickity-page-dots .dot, .row-slider .flickity-page-dots .dot {
    background-color: #ffffff;
    border: 0;
    height: 10px;
    opacity: .2;
    width: 10px;
}

.flickity-page-dots .dot.is-selected {
    background-color: #ff0d0d;
    opacity: 1!important;
}
.icon-play:before {
    color: red;
}
.overlay-icon {
    background-color: rgb(0 0 0 / 51%);
    border: 1px solid #12121236;
    border-radius: 100%;
    color: #fff;
    height: 3em;
    line-height: 2.8em;
    opacity: .8;
    text-align: center;
    transition: transform .2s,opacity .2s;
    width: 3em;
    box-shadow: 0 0 6px 0px #000000ba;
}
.col.xxx .box {
    border-radius: 0.86rem;
    overflow: hidden;
}
.box-text h3.post-title {
    font-size: 1.1rem;
    line-height: 1.4 !important;
    max-height: 4.8rem;
    overflow: hidden;
    font-weight: 400 !important;
}
.duration {
    padding: 0.1em 0.6em;
    background: linear-gradient(0deg, black, #4f06063b);
    border-radius: 0.4em 0em 0em 0em;
    font-size: 0.9em;
    letter-spacing: 2px;
    bottom: 0;
    right: 0;
}
.image-cover img {
    filter: contrast(1) brightness(1.3) hue-rotate(338deg) saturate(86%);
}
.nav-pagination>li>a, .nav-pagination>li>span {
    border: 2px solid;
    border-radius: 99px;
    display: block;
    font-size: 1.3em;
    font-weight: bolder;
    height: 2.25em;
    line-height: 2em;
    min-width: 4.25em;
    padding: 0 7px;
    text-align: center;
    transition: all .3s;
    vertical-align: top;
    width: auto;
}
.nav-pagination>li>.current, .nav-pagination>li>a:hover, .nav-pagination>li>span:hover {
    background: red;
    border: 2px solid red;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}
ul.page-numbers.nav-pagination.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
ul.page-numbers.nav-pagination.links li:nth-last-child(2) {
    display: none;
}
.entry-content.video {
    max-height: unset;
    overflow: hidden;
    padding-top: 0;
}

.entry-content .category {
    width: 100%;
}
.entry-content.video .bg-big h1 {
    margin: 0;
    color: #0d0d0d;
	font-size: 2.7rem;
}
.entry-content.single-page.video .col.large-8 .col-inner {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 2em;
    gap: 1.2em;
    padding-left: 1em;
}
.entry-content.single-page.video .col.bg-big {
    background: #767676;
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 1em 2em;
}

.entry-content.video .bg-big .col-inner {
    background: #767676;
    display: flex;
    align-items: center;
    padding: 1rem;
    flex-wrap: wrap;
}
.entry-content.video .bg-big p {
    color: #333333;
}
h2.related-title-box span {
    background: red;
    padding: 0.5rem;
    font-style: italic;
    font-size: 0.9em;
    margin-right: 0.5em;
}
h2.related-title-box {
    margin: 2em 0 1em;
}
article.post .player {
    margin-top: -4.8em;
}
footer#footer section {
    background: #000000;
    padding: 0px 15px !important;
}
#footer .is-divider {
    margin-bottom: 2em !important;
}
#footer img {
    filter: grayscale(1);
    opacity: 0.5;
}
.absolute-footer {
    background: #0f0f0f;
}
#footer section .col.large-3 {
    background: #000000;
}
#footer section .col.large-3 p a {
    color: #ff00006b;
}
#footer section .col.large-3 p {
    margin-bottom: 0.5em;
    font-size: 0.8em;
    color: #323232;
}
ul.tag.nav {
    display: flex;
    justify-content: space-evenly;
    gap: 0.5em;
}
.tag.nav>li {
    margin: 0;
}
.tag.nav>li>a {
    color: #c5c5c5;
    font-size: 0.9em;
    border: 1px solid #313131;
    padding: 0.5em;
}
.tag.nav>li>a:hover {
    color: red;
}

@media (max-width: 767px) {
    .player-video-direct-button { min-width: 96px; min-height: 96px; padding: 14px; }
    .player-video-direct-button-icon { border-top-width: 14px; border-bottom-width: 14px; border-left-width: 22px; }
    .player-video-shell { --player-video-radius: 10px; margin: 16px auto; }
    .player-video-shell.is-detecting { min-height: 190px; }
    .player-video-shell.is-portrait {
        height: calc(80svh - 32px);
        min-height: 420px;
    }
    .player-video-shell.is-portrait .player-video-stage { height: 100%; }
    .player-video-stage .video-js .vjs-big-play-button {
        width: 70px;
        height: 70px;
        margin-top: -35px;
        margin-left: -35px;
    }
    .player-video-stage .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
        font-size: 44px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .player-video-skeleton, .player-video-skeleton-icon, .player-video-skeleton-icon::after, .player-video-stage .video-js .vjs-big-play-button { animation: none !important; }
}



@media only screen and (max-width: 48em) {
	.blog-header-wrapper .lead {
    font-size: 1em;
    padding: 0 1em;
    opacity: 0.4;
    margin: 0;
}
ul.tag.nav {
    display: flex;
    justify-content: space-evenly;
    gap: 0.2em;
}
article.post .player, post.entry-content {
    margin-left: -1em !important;
    width: calc(100% + 2em) !important;
}

	div#wrapper {
    padding: 0 1em;
    background: #0f0f0f;
}
ul.page-numbers.nav-pagination.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
ul.page-numbers.nav-pagination.links li:nth-last-child(-n+5):not(:last-child) {
    display: none;
}
.nav-pagination>li>a, .nav-pagination>li>span {
    border: 2px solid;
    border-radius: 99px;
    display: block;
    font-size: 1.3em;
    font-weight: bolder;
    height: 2.25em;
    line-height: 2em;
    min-width: 2.25em;
    padding: 0 7px;
    text-align: center;
    transition: all .3s;
    vertical-align: top;
    width: auto;
}
footer#footer {
    margin-left: -1em;
    margin-right: -1em;
    width: calc(100% + 2em);
}
div#post-list {
    width: 100%;
}
.box-text h3.post-title {
    font-size: 0.9rem;
    line-height: 1.4 !important;
    max-height: 4.8rem;
    overflow: hidden;
    font-weight: 400 !important;
}
.col.xxx .box {
    border-radius: 0.36rem;
    overflow: hidden;
}
.col.xxx.post-item {
    padding: 0 0.3em;
    margin-bottom: 1em;
}
	.nav.nav-vertical li a {
    color: #141414;
}
.entry-content.video {
    max-height: unset;
    padding-bottom: 0;
}
.entry-content.video .bg-big h1 {
    font-size: 1.5em;
    color: #fff;
}
.entry-content.single-page.video .col.bg-big {
    padding: 0 !important;
    margin: 0 15px !important;
    background: none !important;
}
.entry-content.video .bg-big .col-inner {
    padding: 0;
    background: none !important;
}
.entry-content.single-page.video .col.large-8 .col-inner {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 1em;
    gap: 1.2em;
    padding-left: 0;
}
.category-descriptions {
    display: none;
}
h2.related-title-box {
    margin: 2em 0 1em;
    line-height: 1.3;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#footer section .col.large-3 .col-inner {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid #181616;
}
#footer .is-divider {
    display: none;
}
}

.single-post .large-12.col > article,
.single-post .article-inner,
.single-post .entry-content.single-page {
    width: 100%;
    max-width: 100%;
}

.single-post .player-video-shell {
    width: 100%;
}


