/* -- General Style -- */
:root {
    --main-bg: #000;
    --link-color: #fff;
    --main-mauve: #ec008c;
    --main-blue: #00aeef;
    --white: #fff;
    --black: #000;
}
body {
    background: var(--main-bg);
}
.main-body {
    background-image: url(../imgs/body-bg.png);
    background-size: cover;
    background-attachment: fixed;
}
a {
    text-decoration: none !important;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.container-fluid.custom-container {
    max-width: 85%;
}
.main-btn {
    background: var(--main-blue);
    padding: 10px 15px;
    color: var(--white);
    border-radius: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.main-btn .bg {
    background: var(--main-mauve);
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 0;
    bottom: 0;
    right: -100%;
    transition: all .5s ease-in-out;
}
.main-btn:hover .bg {
    right: 0;
}
.main-btn .word {
    position: relative;
    transition: all .5s ease-in-out;
    z-index: 3;
    color: var(--white);
}
.main-btn:hover .word {
    color: var(--black);
}
@media screen and (max-width: 1200px) {
    .container-fluid.custom-container {
        max-width: 95%;
    }
}
/* -- ./General Style -- */

/* -- Header -- */
header {
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    left: 0;
}
header .inner-header {
    padding: 25px 0;
    position: relative;
    transition: all .5s ease-in-out;
}
header .inner-header:after {
    top: -100%;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -1;
    opacity: 0;
    background: var(--black);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: all .5s ease-in-out;
}
header .logo img {
    width: 200px;
    transition: all .5s ease-in-out;
}
header ul {
    float: left;
    display: flex;
    align-items: center;
}
header ul li {
    margin-right: 25px;
    display: inline-block;
}
header ul li.side-menu-btn {
    display: none;
}
header ul li a {
    transition: all .5s ease-in-out;
    color: var(--link-color);
}
header ul li a:hover {
    color: var(--main-mauve);
}
header.main.fixed .inner-header {
    padding: 25px 20px 15px;
}
header.main.fixed .inner-header:after {
    top: 0;
    opacity: 1;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}
header.main.fixed .inner-header .logo img {
    width: 125px;
    margin-top: -10px;
}
@media screen and (max-width: 1200px) {
    header.main.fixed {
        background: var(--main-bg);
        box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
    }
    header.main.fixed .inner-header {
        padding: 25px 0 15px;
    }
    header.main.fixed .inner-header:after {
        display: none;
    }
    header ul li.side-menu-btn {
        display: block;
    }
    header ul li.side-menu-btn span {
        color: var(--white);
        font-size: 30px;
        padding: 5px 10px;
        cursor: pointer;
    }
    .all-overlay {
        position: fixed;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(3px);
        transition: all 0.5s ease-in-out;
    }
    .all-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    header ul li:not(.side-menu-btn) {
        display: none;
    }
    header .logo img {
        width: 125px;
        margin-top: -10px;
    }
}
/* -- ./Header -- */

/* -- Side Bar -- */
.side-menu {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 40px 25px 40px 15px;
}
.side-menu ul li.mobile-show {
    display: none;
}
.side-menu ul li:not(:last-child) {
    margin-bottom: 15px;
}
.side-menu ul li a {
    cursor: pointer;
    display: block;
    position: relative;
    color: var(--white);
    padding: 5px 10px;
    font-size: 25px;
    transition: all .5s ease-in-out;
}
.side-menu ul li a i {
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.75s ease-in-out;
    transform: rotateY(0deg);
}
.side-menu ul li a.active i {
    background: transparent;
    color: var(--main-blue);
}
.side-menu ul li a:hover i {
    background: var(--white);
    color: var(--main-mauve);
    transform: rotateY(-360deg);
}
.side-menu ul li a span {
    font-size: 16px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    bottom: 0;
    min-width: 170px;
    padding: 10px 60px 10px 20px;
    background: var(--main-mauve);
    transform-origin: right;
    color: var(--white);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transform-style: preserve-3d;
    transform: rotateY(90deg);
    transition: all .75s ease-in-out;
}
.side-menu ul li a:hover span {
    transform: rotateY(0);
}
.side-menu ul li a:hover {
    color: var(--main-blue);
}
@media screen and (max-width: 1200px) {
    .side-menu {
        background: var(--main-bg);
        right: -300px;
        transition: all 1s ease-in-out;
    }
    .side-menu.open {
        right: 0;
    }
    .side-menu ul li a span {
        position: relative;
        top: -4px;
        padding: 10px 10px 10px 20px;
        min-width: auto;
        background: none;
        border-radius: 0;
    }
    .side-menu ul li a.active i,
    .side-menu ul li a.active span {
        color: var(--main-mauve);
    }
}
@media screen and (max-width: 767px) {
    .side-menu ul li.mobile-show {
        display: block;
    }
}
/* -- ./Side Bar -- */

/* -- Main slider -- */
.main-slider .flickity-viewport {
    height: 100vh !important;
}
.main-slider .item, 
.main-slider .inner-slide {
    width: 100%;
    height: 100%;
}
.main-slider .inner-slide {
    display: flex;
    align-items: center;
}
.main-slider .item .left-side,
.main-slider .item .right-side {
    flex: 0 0 50%;
}
.main-slider .item .left-side h5 {
    color: var(--main-mauve);
    font-weight: bold;
    position: relative;
    text-transform: capitalize;
}
.main-slider .item .left-side h2 {
    color: var(--white);
    font-size: 70px;
    font-weight: bold;
    text-transform: capitalize;
}
.main-slider .item .left-side p {
    color: var(--white);
    font-size: 20px;
    line-height: 1.5;
}
.main-slider .item .right-side {
    display: flex;
    justify-content: left;
}
.main-slider .item .right-side img {
    transition: all 2s ease-in-out;
    transform: scale(0);
}
.main-slider .item.is-selected .right-side img {
    transform: scale(1);
}
.main-slider .flickity-page-dots {
    bottom: 40px;
    text-align: left;
}
.main-slider .flickity-page-dots li {
    background: var(--white);
    width: 20px;
    height: 10px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}
.main-slider .flickity-page-dots li.is-selected {
    width: 50px;
    background: var(--main-mauve);
}
.main-slider .item h5,
.main-slider .item h2,
.main-slider .item p,
.main-slider .item .main-btn {
    position: relative;
    top: 20px;
    opacity: 0;
}
.main-slider .item.is-selected h2,
.main-slider .item.is-selected h5,
.main-slider .item.is-selected p,
.main-slider .item.is-selected .main-btn {
    top: 0;
    opacity: 1;
}
.main-slider .item.is-selected h5 {
    animation: showUp1 .5s ease-in-out;
}
.main-slider .item.is-selected h2 {
    animation: showUp2 1s ease-in-out;
}
.main-slider .item.is-selected p {
    animation: showUp3 1.5s ease-in-out;
}
.main-slider .item.is-selected .main-btn {
    animation: showUp4 2s ease-in-out;
}
@keyframes showUp1 {
    0% {
        top: 20px;
        opacity: 0; 
    };
    100% {
        top: 0;
        opacity: 1;
    }
}
@keyframes showUp2 {
    0%, 50% {
        top: 20px;
        opacity: 0; 
    };
    100% {
        top: 0;
        opacity: 1;
    }
}
@keyframes showUp3 {
    0%, 66.66% {
        top: 20px;
        opacity: 0; 
    };
    100% {
        top: 0;
        opacity: 1;
    }
}
@keyframes showUp4 {
    0%, 75% {
        top: 20px;
        opacity: 0; 
    };
    100% {
        top: 0;
        opacity: 1;
    }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
    .main-slider .item .left-side h2 {
        font-size: 50px;
    }
}
@media screen and (max-width: 767px) {
    .main-slider {
        padding-top: 120px;
    }
    .main-slider .flickity-viewport {
        height: 500px !important;
    }
    .main-slider .item .left-side h2 {
        font-size: 25px;
    }
    .main-slider .item .left-side p {
        font-size: 16px;
    }
    .main-slider .inner-slide {
        display: block;
    }
    .main-slider .item .right-side img {
        margin: 0 auto;
        height: 250px;
        max-height: 50%;
        max-height: 25vh;
    }
}
/* -- ./Main slider -- */


/* -- Image Separtor -- */
.img-seprator {
    position: relative;
    z-index: -1;
}
.img-seprator img {
    max-width: 90%;
    max-height: 350px;
    opacity: 0.35;
    display: block;
    margin: 0 auto -200px;
}
@media screen and (max-width: 767px) {
    .img-seprator img {
        margin-bottom: -100px;
    }
}
/* -- ./Image Separtor -- */

/* -- Trend Games Slider -- */
.games-slider .flickity-viewport {
    height: 400px !important;
}
.games-slider .item {
    height: 100%;
    width: 40%;
    padding: 0 10px;
}
.games-slider .item a,
.games-slider .item img {
    width: 100%;
    height: 100%;
    display: block;
}
.games-slider .item img {
    object-fit: cover;
}
.games-slider .flickity-prev-next-button {
    top: 15px;
    transform: none;
    border-radius: 0;
    background: var(--main-mauve);
    opacity: 0.3;
    transition: all .5s ease-in-out;
}
.games-slider .flickity-prev-next-button:hover {
    opacity: 1;
}
.games-slider .flickity-prev-next-button .arrow {
    fill: var(--white);
}
.games-slider .flickity-prev-next-button.next {
    left: auto;
    right: 60px;
}
@media screen and (max-width: 991px) {
    .games-slider .item {
        width: 60%;
    }
}
@media screen and (max-width: 767px) {
    .games-slider .item {
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .games-slider .flickity-viewport {
        height: 300px !important;
    }
}
/* -- ./Trend Games Slider -- */

/* -- Most View Groups -- */
.most-view-groups {
    margin-top: 150px;
}
.section-main-title {
    font-size: 35px;
    color: var(--white);
    margin-bottom: 40px;
}
.section-main-title .main-btn {
    float: left;
    font-size: 16px;
}
.most-view-groups .sub-group {
    display: block;
}
.most-view-groups .sub-group img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 15px;
    transition: all .5s ease-in-out;
    filter: brightness(60%);
}
.most-view-groups .sub-group img:hover {
    filter: brightness(100%);
}
.most-view-groups .sub-group span.group-name {
    color: var(--main-mauve);
    display: block;
    margin: 15px 0 30px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width: 1200px) {
    .most-view-groups {
        margin-top: 100px;
    }
    .most-view-groups .sub-group span.group-name {
        font-size: 20px;
    }
}
@media screen and (max-width: 991px) {
    .most-view-groups .sub-group img {
        height: 250px;
    }
}
@media screen and (max-width: 767px) {
    .section-main-title {
        font-size: 25px;
    }
}
@media screen and (max-width: 400px) {
    .section-main-title {
        font-size: 20px;
    }
    .section-main-title .main-btn {
        padding: 5px 10px;
        font-size: 15px;
    }
}
/* -- ./Most View Groups -- */

/* -- About Us -- */
.about-main {
    margin-top: 100px;
}
.about-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}
.about-main h3 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 25px;
}
.about-main .about-content {
    color: var(--white);
}
@media screen and (max-width: 767px) {
    .about-main {
        margin-top: 50px;
    }
    .about-main img {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 500px) {
    .about-main img {
        height: 300px;
    }
    .about-main h3 {
        font-size: 25px;
    }
}
/* -- ./About Us -- */

/* -- Video Box -- */
.main-video-box {
    margin-top: 150px;
}
.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 450px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-box i {
    position: absolute;
    font-size: 80px;
    color: var(--white);
    z-index: 1;
    transition: all .5s ease-in-out;
}
.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s ease-in-out;
}
.video-box:hover img {
    transform: scale(1.2);
}
.video-box:hover i {
    color: var(--main-mauve);
}
.main-video-box .video-content {
    color: var(--white);
}
.main-video-box .video-content h3 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.main-video-box .video-content p {
    font-size: 18px;
}
.main-video-box .video-content ul li {
    margin-bottom: 10px;
    font-size: 16px;  
}
.main-video-box .video-content ul li i {
    color: #080;
    font-size: 18px;
    position: relative;
    top: 3px;
    margin-left: 15px;
}
@media screen and (max-width: 767px) {
    .main-video-box {
        margin-top: 50px;
    }
    .video-box {
        height: 400px;
    }
}
@media screen and (max-width: 500px) {
    .video-box {
        height: 300px;
    }
    .main-video-box .video-content h3 {
        font-size: 25px;
    }
}
/* -- ./Video Box -- */

/* -- Palyers Slider -- */
.players-slider-section {
    margin-top: 100px;
}
.players-slider .flickity-viewport {
    height: 300px !important;
}
.players-slider .item {
    width: 25%;
    height: 100%;
    text-align: center;
}
.players-slider .item img,
.players-slider .item span {
    display: block;
}
.players-slider .item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 15px;
}
.players-slider .item h4 {
    color: var(--white);
}
.players-slider .item span {
    transition: all .5s ease-in-out;
    color: #999;
    font-weight: bold;
}
.players-slider .item:hover span {
    color: var(--main-mauve);
}
.players-slider .flickity-page-dots {
    display: none;
}
@media screen and (max-width: 1200px) {
    .players-slider .item {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .players-slider-section {
        margin-top: 70px;
    }
    .players-slider .item {
        width: 50%;
    }
}
@media screen and (max-width: 550px) {
    .players-slider .item {
        width: 100%;
    }
}
/* -- ./Players Slider -- */

/* -- Last News -- */
.news-main-block {
    margin-top: 100px;
}
.news-main-block .news-title {
    text-align: center;
    margin-bottom: 70px;
}
.news-main-block .news-title h3 {
    margin-bottom: 15px;
    font-size: 35px;
}
.news-main-block .news-title p {
    font-size: 16px;
    color: #aaa;
}
.news-main-block .news-block {
    margin-bottom: 30px;
}
.news-main-block .news-block a {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.news-main-block .news-block img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}
.news-main-block .news-block p {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: #000;
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
    padding: 30px 10px 15px;
    background: linear-gradient(to top, #000 0%, #000 60%, #00000000 100%);
    transition: all 1s ease-in-out;
}
.news-main-block .news-block a:hover img {
    transform: scale(1.2);
}
.news-main-block .news-block a:hover p {
    color: var(--main-mauve);
}
@media screen and (max-width: 767px) {
    .news-main-block .news-block img {
        height: 300px;
    }
    .news-main-block {
        margin-top: 50px;
    }
}
/* -- ./Last News -- */

/* -- Footer -- */
footer.main-footer {
    background: linear-gradient(to top, #000 0%, #000 60%, #00000000 100%);
    padding-top: 70px;
} 
footer.main-footer .footer-about img {
    width: 200px;
    margin-bottom: 15px;
}
footer.main-footer .footer-about p {
    font-size: 16px;
    color: var(--white);
}
footer.main-footer .links {
    margin-bottom: 30px;
    padding: 70px 0 20px;
    border-bottom: 1px dashed #555;
}
footer.main-footer .links li:not(:last-child),
footer.main-footer .socials li:not(:last-child) {
    margin-left: 15px;
}
footer.main-footer .socials li,
footer.main-footer .links li {
    display: inline-block;
    font-size: 18px;
}
footer.main-footer .links li a {
    color: var(--white);
    transition: all 0.5s ease-in-out;
}
footer.main-footer .links li a:hover {
    color: var(--main-mauve)
}
footer.main-footer .socials li a {
    padding: 8px;
    background: var(--white);
    color: var(--main-bg);
    border-radius: 5px;
    font-size: 18px;
    transition: all 1s ease-in-out;
    position: relative;
    top: 0;
    display: inline-block;
}
footer.main-footer .socials li a:hover {
    color: var(--white);
    background: var(--main-mauve);
    top: -5px;
}
footer.main-footer .copyright {
    padding: 40px 0 20px;
    text-align: center;
    font-size: 15px;
    color: #999;
}
footer.main-footer .copyright span {
    color: var(--main-mauve);
}
@media screen and (max-width: 767px) {
    .before-footer {
        display: none;
    }
    footer.main-footer {
        padding-top: 40px;
    }
    footer.main-footer .footer-about img {
        margin: 20px auto;
        display: block;
    }
    footer.main-footer .footer-about p {
        text-align: center;
    }
    footer.main-footer .links {
        padding-top: 10px;
        text-align: center;
    }
    footer.main-footer .links li {
        margin-right: 10px !important;
        margin-left: 10px !important;
        font-size: 16px;
        margin-top: 10px;
    }
    footer.main-footer .socials {
        text-align: center;
    }
    footer.main-footer .copyright {
        padding-top: 20px;
    }
}
/* -- ./Footer -- */


/*
    ===================================
    ========== INNER PAGES  ===========
    ===================================
*/

/* =========== General Items ========== */

/* -- User Block -- */
.user-block img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}
.user-block .user-info {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
}
.user-block .user-info span,
.user-block .user-info small {
    position: relative;
    top: 10px;
    display: block;
    font-weight: bold;
}
.user-block .user-info small {
    color: #555;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
}
.user-block:hover .user-info small {
    color: var(--main-mauve);
}
.user-block.small img {
    width: 50px;
    height: 50px;
}
.user-block.small .user-info {
    font-size: 14px;
}
/* -- ./User Block -- */

/* -- Inner Menu -- */
.inner-menu {
    padding: 20px;
    position: fixed;
    top: 0;
}
.inner-menu .user-block {
    margin-bottom: 15px;
}
.inner-menu .links-list li:not(:last-child) {
    margin-bottom: 10px;
}
.inner-menu .links-list li a {
    color: #aaa;
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 10px 25px;
    font-size: 16px;
    transition: all .5s ease-in-out;
}
.inner-menu .links-list li a span {
    position: relative;
    top: -3px;
    margin-right: 7px;
}
.inner-menu .links-list li a i {
    font-size: 18px;
}
.inner-menu .links-list li:not(.active) a:hover {
    color: var(--main-mauve);
}
.inner-menu .links-list li.active a {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    background: var(--main-mauve);
    color: #fff;
}
@media screen and (min-width: 1200px) {
    .top-bar {
        display: none;
    }
}
@media screen and (max-width: 1199px) {
    .inner-page {
        margin-top: 75px;
    }
    .top-bar {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 99;
        background: #000;
        padding: 10px;
        box-shadow: 0 5px 25px rgba(255, 255, 255, 0.2);
    }
    .top-bar .inner-menu-btn {
        position: absolute;
        top: 10px;
        left: 15px;
        color: #fff;
        padding: 5px;
        font-size: 30px;
    }
    .top-bar .user-block {
        position: relative;
        top: -5px;
        display: inline-block;
    }
    .inner-side-menu .inner-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -260px;
        width: 250px;
        z-index: 99999;
        background: #000;
        transition: all .5s ease-in-out;
    }
    .inner-side-menu .inner-menu.open {
        right: 0;
    }
}
/* -- Inner Menu -- */

/* -- Side Title -- */
.side-title {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}
.side-title span {
    font-weight: bold;
}
.side-title a {
    font-size: 15px;
    float: left;
    color: var(--main-blue);
    transition: all .5s ease-in-out;
}
.side-title a:hover {
    color: var(--main-mauve);
}
/* -- ./Side Title -- */

/* -- Last News -- */
.side-last-news {
    margin-top: 20px;
}
.side-last-news .side-news-block {
    position: relative;
    margin-bottom: 20px;
}
.side-last-news .side-news-block img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.side-last-news .side-news-block p {
    margin: 0;
    padding: 25px 15px 15px;
    background: linear-gradient(to top, #000 0%, #000 60%, #00000000 100%);
    color: var(--white);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 75px;
    overflow: hidden;
}
/* -- ./Last News -- */

/* -- Best Gamers -- */
.side-best-gamers {
    margin-top: 30px;
}
.side-best-gamers .user-block:not(:last-child) {
    margin-bottom: 25px;
}
/* -- ./Best Gamers -- */

/* -- Best Games -- */
.side-best-games {
    margin-top: 30px;
}
.side-best-games .games-list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.side-best-games .games-list li {
    flex: 0 0 calc(33.33% - 8px);
}
.side-best-games .games-list img {
    width: 100%;
    height: 75px;
   object-fit: cover;
   filter: brightness(80%);
   transition: all 1s ease-in-out;
}
.side-best-games .games-list img:hover {
    filter: brightness(150%);
}
/* -- ./Best Games -- */


/* -- Top Zones -- */
.zone-block img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.zone-block h4 {
    font-size: 16px;
    color: var(--white);
    max-height: 40px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.zone-block:hover h4 {
    color: #aaa;
}
.zone-block span {
    font-size: 14px;
    font-weight: bold;
    color: var(--main-mauve);
}
.zone-block .zone-options {
    margin-top: 15px;
    text-align: left;
}
.zone-block .zone-options li {
    display: inline-block;
}
.zone-block .zone-options li:not(:last-child) {
    margin-left: 10px;
}
.zone-block .zone-options li a {
    display: block;
    padding: 2px;
    font-size: 22px;
    color: var(--white);
    opacity: 0.6;
    transition: all 0.5s ease-in-out;
}
.zone-block .zone-options li a:hover {
    opacity: 1;
}
.zone-block .zone-options li.show a {
    color: #eee;
}
.zone-block .zone-options li.edit a {
    color: var(--main-blue);
}
.zone-block .zone-options li.delete a {
    color: #d00;
}
.side-top-zones {
    margin-top: 30px;
}
.side-top-zones .zone-block:not(:last-child) {
    margin-bottom: 25px;
}
/* -- ./Top Zones -- */

/* =========== Comunity Page ========== */

/* -- Write Space -- */
.write-space {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0 30px;
}
.write-space .input-area {
    border-radius: 10px;
    background: #3a3a3a;
    border: 0;
    padding: 15px;
}
.write-space .input-area textarea {
    display: block;
    width: 100%;
    background: #3a3a3a;
    border: 0;
    resize: none;
    outline: none;
    color: #fff;
}
.write-space .input-area .attach-box {
    position: relative;
    color: #fff;
    overflow: hidden;
    width: 30px;
    height: 30px;
}
.write-space .input-area .attach-box i {
    font-size: 25px;
    position: relative;
    top: 5px;
}
.write-space .input-area .attach-box input {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    top: 0;
    right: -300px;
    left: 0;
    bottom: 0;
    opacity: 0;
}
.write-space .input-area .imgs-list ul {
    margin: 15px 0;
}
.write-space .input-area .imgs-list ul li {
    margin: 10px;
    margin-bottom: 0;
    display: inline-block;
    border-radius: 5px;
    border: 1px dashed #666;
}
.write-space .input-area .imgs-list ul li img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.write-space .btn-box {
    margin-top: 15px;
    text-align: left;
}
.write-space .btn-box button {
    border: 0;
    padding: 5px 30px;
    border-radius: 5px;
}
/* -- ./Write Space -- */

/* -- Post Block -- */
.post-block:not(:first-child) {
    border-top: 1px solid #444;
}
.post-block {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 15px;
}
.post-block .post-header .user-block {
    display: inline-block;
}
.post-block .post-time {
    float: left;
    color: #aaa;
}
.post-block .post-body {
    margin: 20px 0;
    color: #fff;
}
.post-block .post-body .text-box ~ .images-box {
    margin-top: 15px;
}
.post-block .post-body .images-box img {
    background: #333;
    object-fit: cover;
}
.post-block .post-body .images-box.count-1 img {
    display: block;
    width: 100%;
    max-height: 600px;
}
.post-block .post-body .images-box:not(.count-1) {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.post-block .post-body .images-box.count-2 .post-img {
    flex: 0 0 calc(50% - 10px);
}
.post-block .post-body .images-box.count-2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.post-block .post-body .images-box:not(.count-1, .count-2) .post-img {
    flex: 1;
}
.post-block .post-body .images-box:not(.count-1, .count-2) .post-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.post-block .post-body .images-box .post-img {
    position: relative;
}
.post-block .post-body .images-box .post-img .more-imgs {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}
.post-block .post-footer ul {
    user-select: none;
    display: block;
    font-size: 16px;
}
.post-block .post-footer ul i {
    font-size: 22px;
}
.post-block .post-footer ul span {
    margin-right: 5px;
}
.post-block .post-footer li {
    display: inline-block;
}
.post-block .post-footer li:first-child {
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}
.post-block .post-footer li:first-child:after {
    content: '';
    width: 6px;
    height: 6px;
    display: inline-block;
    background: #555;
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: calc(50% - 2px);
}
.post-block .post-footer li a {
    cursor: pointer;
    color: #999;
    transition: all 0.5s ease-in-out;
}
.post-block .post-footer li a:hover {
    color: #fff;
}
.post-block .post-footer li:last-child {
    float: left;
}
.post-block .post-footer li.liked i {
    color: var(--main-mauve);
}
@media screen and (max-width: 1199px) {
    .post-block .post-body .images-box.count-2 img {
        height: 300px;
    }
    .post-block .post-body .images-box:not(.count-1, .count-2) .post-img img {
        height: 250px;
    }
}
@media screen and (max-width: 425px) {
    .post-block .post-body .images-box.count-2 img {
        height: 200px;
    }
    .post-block .post-body .images-box:not(.count-1, .count-2) .post-img img {
        height: 150px;
    }
}
/* -- ./Post Block -- */

/* =========== Profile Page ========== */

/* -- Profile Tabs -- */
.profile-tabs {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid #444;
}
.profile-tabs li {
    display: inline-block;
    margin-left: 10px;
}
.profile-tabs li a {
    display: inline-block;
    padding: 10px;
    margin-bottom: -1px;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: all .5s ease-in-out;
}
.profile-tabs li a:hover,
.profile-tabs li a.active {
    color: var(--main-blue);
    border-color: var(--main-blue);
}
@media screen and (max-width: 420px) {
    .profile-tabs {
        font-size: 14px;
    }
    .profile-tabs li {
        margin-left: 2px;
    }
    .profile-tabs li a {
        padding: 5px;
    }
}
/* -- ./Profile Tabs -- */

/* -- Profile Form -- */
.main-form {
    border-radius: 15px;
    border: 1px solid #444;
    padding: 25px;
}
.main-form .form-title {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
}
.main-form .img-box {
    margin-bottom: 25px;
    position: relative;
    border-radius: 50%;
    border-bottom-left-radius: 25px;
    overflow: hidden;
    padding: 5px;
    border: 2px solid #444;
    width: 100px;
    height: 100px;
}
.main-form .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-form .img-box input {
    position: absolute;
    z-index: 5;
    top: 0;
    right: -300px;
    left: 0;
    bottom: 0;
    cursor: pointer;
    opacity: 0;
}
.main-form .img-box i {
    position: absolute;
    z-index: 2;
    font-size: 25px;
    bottom: 5px;
    color: var(--main-mauve);
    border-radius: 50%;
    background: var(--white);
    padding: 5px;
    left: 3px;
}
.main-form .img-box.big {
    width: 100%;
    height: 300px;
    border-radius: 15px;
}
.main-form .input-box {
    margin-bottom: 25px;
    border-radius: 15px;
    background: #3a3a3a;
    position: relative;
}
.main-form .input-box input {
    position: relative;
    padding: 10px 40px 10px 10px;
    z-index: 14;
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    color: var(--white);
}
.main-form .input-box input:required + label:after {
    content: '*';
    color: #d00;
    position: relative;
    top: -3px;
    left: -5px;
}
.main-form .input-box > i {
    position: absolute;
    z-index: 1;
    color: #aaa;
    font-size: 20px;
    top: 13px;
    right: 10px;
}
.main-form .input-box input:placeholder-shown + label {
    color: var(--white);
    font-size: 16px;
    top: 10px;
}
.main-form .input-box input:focus + label,
.main-form .input-box label {
    color: #aaa;
    position: absolute;
    z-index: 5;
    top: -10px;
    right: 40px;
    font-size: 12px;
    transition: all 0.25s ease-in-out;
}
.main-form .input-box small {
    margin-right: 15px;
    display: block;
    padding-bottom: 10px;
}
.main-form .check-area {
    margin-bottom: 15px;
    color: #aaa;
}
.main-form .check-area input {
    float: right;
    position: relative;
    top: 7px;
}
.main-form .check-area label {
    display: block;
    margin-right: 20px;
    user-select: none;
}
.main-form .check-area label a {
    color: var(--main-mauve);
}
.main-form .check-area label a:hover {
    color: var(--main-blue);
}
.main-form .button-box {
    text-align: center;
}
.main-form .button-box button {   
    border: 0;
    min-width: 200px;
}
.main-form .password-option {
    position: absolute;
    z-index: 17;
    color: var(--white);
    font-size: 20px;
    top: 8px;
    left: 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.main-form .password-option:hover {
    color: var(--main-mauve);
}
.main-form .password-option.show .hide-pass,
.main-form .password-option:not(.show) .show-pass {
    display: none;
}
.profile-form form + form {
    margin-top: 40px;
}
@media screen and (max-width: 575px) {
    .main-form .img-box.big {
        height: 150px;
    }
}
/* -- ./Profile Form -- */

/* =========== Zones Pages ========== */

/* -- Zones Area -- */
.add-zone-btn {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}
.no-content-block svg {
    width: 250px;
    height: 250px;
    display: block;
    margin: 15px auto;
}
.no-content-block svg * {
    fill: #3a3a3a;
}
.no-content-block p {
    font-weight: bold;
    font-size: 40px;
    color: #3a3a3a;
    text-align: center;
}
.zone-area .zone-block {
    margin-bottom: 30px;
}
.zone-area .zone-list .zone-block img {
    height: 100px;
}
@media screen and (max-width: 575px) {
    .add-zone-btn {
        margin-bottom: 30px;
    }
    .zone-area .zone-list .zone-block {
        border: 1px solid #3a3a3a;
        border-radius: 15px;
        overflow: hidden;
    }
    .zone-area .zone-list .zone-block img {
        height: 150px;
        margin-bottom: 15px;
    }
    .zone-area .zone-list .zone-block h4,
    .zone-area .zone-list .zone-block span {
        padding-left: 10px;
        padding-right: 10px;
    }
    .zone-area .zone-list .zone-block .zone-options {
        display: flex;
        text-align: center;
        margin-top: 10px;
        background: #3a3a3a;
    }
    .zone-area .zone-list .zone-block .zone-options li {
        flex: 1;
        margin: 0;
    }
    .zone-area .zone-list .zone-block .zone-options li a {
        opacity: 1;
        padding: 5px;
    }
}
/* -- ./Zones Area -- */

/* -- Zone Details -- */
.zone-details .zone-header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: #3a3a3a;
}
.zone-details .zone-header h4 {
    color: var(--white);
    font-size: 25px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    display: block;
}
.zone-details .zone-header h4 a {
    margin-right: 15px;
    font-size: 18px;
    color: var(--main-blue);
    transition: all 0.5s ease-in-out;
}
.zone-details .zone-header h4 a:hover {
    color: var(--main-mauve);
}
.zone-details .zone-header h4 b:hover {
    text-decoration: underline;
}
.zone-details .zone-header h4 button {
    float: left;
    border: 0;
    font-size: 14px;
}
.zone-details .zone-header h4 .fixed-top {
    position: fixed;
    z-index: 10;
    padding: 15px;
}
.zone-details .zone-header span.followers {
    display: block;
    color: var(--main-mauve);
    font-size: 14px;
    margin-right: 10px;
}
/* -- ./Zone Details -- */

/* =========== News Pages ========== */

/* -- All News -- */ 
.news-page {
    margin-top: 25px;
}
.news-page .news-main-title {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 20px;
}
.sub-news-block {
    margin-bottom: 20px;
}
.sub-news-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: all 1s ease-in-out;
}
.sub-news-block:hover img {
    filter: grayscale(50%) brightness(70%);    
}
.sub-news-block h3 {
    color: var(--white);
    font-size: 20px;
    height: 50px;
    overflow: hidden;
    transition: all 1s ease-in-out;
}
.sub-news-block:hover h3 {
    color: #aaa;
}
.sub-news-block span {
    font-size: 14px;
    font-weight: bold;
    color: var(--main-mauve);
}
.sub-news-block span i {
    font-size: 20px;
    position: relative;
    top: 5px;
}
/* -- ./All News -- */

/* -- News Details -- */
.news-page .main-news-img {
    margin-bottom: 15px;
}
.news-page .main-news-img img {
    width: 100%;
}
.news-page .news-info {
    margin-bottom: 20px;
    color: #aaa;
    font-size: 14px;
}
.news-page .news-info i {
    font-size: 18px;
    position: relative;
    top: 3px;
    color: var(--main-mauve);
}
.news-page .news-info li {
    display: inline-block;
}
.news-page .news-info li:not(:last-child) {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #444;
}
.news-page .news-details * {
    color: var(--white) !important;
}
.news-page .news-details img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    max-height: 700px;
}
.news-page .news-details a {
    transition: all 0.5s ease-in-out;
    color: var(--main-mauve) !important;
}
.news-page .news-details a:hover {
    color: var(--main-blue) !important;
    text-decoration: underline !important;
}
/* -- ./News Details -- */

/* =========== Catalog Pages ========== */

.catalog-page {
    margin-top: 25px;
}
.catalog-page .catalog-main-title {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 20px;
}
.catalog-block {
    margin-bottom: 30px;
}
.catalog-block img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.catalog-block h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}
.catalog-block .platform-list {
    margin-bottom: 15px;
}
.catalog-block .platform-list li {
    display: inline-block;
    margin-left: 10px;
}
.catalog-block .platform-list li a {
    color: var(--white);
    transition: all 0.5s ease-in-out;
}
.catalog-block .platform-list li a:hover {
    color: var(--main-mauve);
}
.catalog-filter {
    margin-bottom: 40px;
    background: #222;
    border-radius: 15px;
    padding: 20px;
}
.catalog-filter ul li {
    display: inline-block;
    margin: 5px 0 5px 5px;
}
.catalog-filter ul li a {
    display: block;
    padding: 3px 10px;
    font-size: 14px;
    background: var(--main-blue);
    border-radius: 5px;
    color: #000;
}
.catalog-filter ul li.close-filter a {
    background: #c24242;
}
.catalog-filter ul li a i {
    font-size: 18px;
    position: relative;
    top: 3px;
    left: -3px;
}
/* -- Tages -- */
.tags-area li {
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 5px;
}
.tags-area li a {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 15px;
    display: block;
    background: #aaa;
    color: #000;
    transition: all 0.5s ease-in-out;
}
.tags-area li a.active,
.tags-area li a:hover {
    background: var(--main-mauve);
}
/* -- ./Tages -- */
@media screen and (max-width: 575px) {
    .catalog-block img {
        margin-bottom: 15px;
    }
}

/* =========== Auth Pages ========== */

.auth-bg {
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: contain;
    background-image: url(../imgs/videos/01.png);
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.auth-bg:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    content: '';
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(20px);
}
.auth-page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 30px 0;
}
.auth-page .info-side {
    padding-top: 50px;
}
.auth-page .info-side h1 {
    text-decoration: wavy;
    color: var(--main-blue);
}
.auth-page .info-side h1 span  {
    color: var(--main-mauve);
}
.auth-page .info-side p {
    color: #aaa;
}
.auth-page .auth-form {
    background: #000;
    padding: 30px 20px 150px;
    border: 0;
    border-radius: 5px;
    position: relative;
    min-height: calc(100vh - 70px);
}
.auth-page .auth-form form {
    position: relative;
    z-index: 2;
}
.auth-page .auth-form .auth-shape {
    position: absolute;
    bottom: 25px;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}
.auth-page .auth-form h3 {
    margin-bottom: 30px;
    font-size: 25px;
    color: var(--main-mauve);
}
.auth-page .auth-form label {
    color: #aaa !important;
}
.auth-page .auth-form .button-box {
    margin-top: 30px;
}
.auth-page .auth-form .button-box button {
    margin-bottom: 15px;
}
.auth-page .auth-form .button-box p {
    color: #aaa;
}
.auth-page .auth-form .button-box a {
    text-decoration: underline !important;
    color: var(--main-mauve);
}
@media (max-width: 991px) {
    .auth-page .info-side {
        display: none;
    }
}

/* =========== Popup ========== */
.golden-popup {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.golden-popup.open {
    opacity: 1;
    transform: scale(1);
}
.golden-popup .golden-popup-body {
    max-width: calc(100% - 30px);
    width: 700px;
}
.golden-popup .close-btn {
    position: absolute;
    color: #fff;
    z-index: 10;
    font-size: 40px;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 15px;
}
.login-alert {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
}
/* =========== ./Popup ========== */

/* =========== Loader ========== */
.loader-box {
    padding: 15px 0;
    text-align: center;
    font-size: 40px;
    color: #aaa;
    animation: loader 3s ease-in-out infinite;
}
@keyframes loader {
    0% {
        transform: rotate(0);
    }
    80%, 100% {
        transform: rotate(-360deg);
    }
}
/* =========== ./Loader ========== */

/* =========== Post Details ========== */

.post-details .post-page-header {
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-left: 100px;
}
.post-details .post-page-header .btn-back {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    font-size: 30px;
    padding: 10px 15px;
    padding-left: 0;
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.post-details .post-page-header .btn-back:hover {
    color: var(--main-mauve);
}
.post-details .post-page-header .zone-name {
    color: #fff;
    font-size: 20px;
}
.post-details .post-page-header .zone-name:hover {
    text-decoration: underline !important;
}
.post-details .detail-img img {
    width: 100%;
    margin: 5px 0;
    border: 1px solid #666;
}
/* =========== ./Post Details ========== */

.dropdown-btn {
    background: no-repeat;
}
.dropdown-toggle::after {
        display: none !important;
    }
.dropdown-btn:hover,.dropdown-btn:focus, .dropdown-btn:active:focus, .show>.btn-primary.dropdown-toggle {
    background: var(--dark);
}
.dropdown-btn i {
    font-size: 25px;
}
.dropdown-menu {
    border: 2px solid var(--black);
    background: var(--dark);
    margin-top: 7px;
}
.dropdown-menu a {
    cursor: pointer;
}
.dropdown-menu span {
    color: white;
}
.platform-img {
    width: 25px !important;
    height: 25px !important;
}