/* 
* Main Theme Styles
* @galactic
*/
/* ===== 1.0 Preloader ===== */
body.is-preloader {
    overflow: hidden;
}

body.is-preloader.loaded {
    overflow: inherit;
}

#preloader-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loaded #preloader-wrap {
    visibility: hidden;
    opacity: 0;
}

#preloader-wrap,
.preloader-circle-holder:after,
.preloader-circle-holder .m-loader:after,
.preloader-circle-holder .m-loader .e-text:before, .preloader-circle-holder .m-loader .e-text:after {
    background-color: #0c023e;
}

.preloader-circle-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    box-sizing: border-box;
}

.preloader-circle-holder:before {
    content: "";
    width: 100%;
    height: 100%;
    border: 5px solid var(--galactic-primary-color);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    opacity: 0.5;
}

.preloader-circle-holder:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    content: " ";
    display: block;
    transform-origin: center;
    z-index: 0;
}

.preloader-circle-holder:after {
    width: 100px;
    height: 200%;
    -webkit-animation: rotateAnim2 30s infinite linear;
    -moz-animation: rotateAnim2 30s infinite linear;
    -o-animation: rotateAnim2 30s infinite linear;
    animation: rotateAnim2 30s infinite linear;
}

.preloader-circle-holder .m-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    width: 200px;
    height: 200px;
    color: var(--galactic-grey);
    text-align: center;
    border: 5px solid var(--galactic-primary-color);
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 20;
    text-transform: uppercase;
}

.preloader-circle-holder .m-loader:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    content: " ";
    display: block;
    transform-origin: center;
    z-index: -1;
}

.preloader-circle-holder .m-loader:after {
    width: 100px;
    height: 106%;
    -webkit-animation: rotateAnim1 15s infinite linear;
    -moz-animation: rotateAnim1 15s infinite linear;
    -o-animation: rotateAnim1 15s infinite linear;
    animation: rotateAnim1 15s infinite linear;
}

.preloader-circle-holder .m-loader .e-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    -webkit-animation: textColourAnim 1s alternate linear infinite;
    -moz-animation: textColourAnim 1s alternate linear infinite;
    -o-animation: textColourAnim 1s alternate linear infinite;
    animation: textColourAnim 1s alternate linear infinite;
    display: block;
    width: 140px;
    height: 140px;
    text-align: center;
    border: 5px solid var(--galactic-primary-color);
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 20;
}

.preloader-circle-holder .m-loader .e-text:before, .preloader-circle-holder .m-loader .e-text:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    content: " ";
    display: block;
    transform-origin: center;
    z-index: -1;
}

.preloader-circle-holder .m-loader .e-text:before {
    width: 110%;
    height: 40px;
    -webkit-animation: rotateAnim2 3.5s infinite linear;
    -moz-animation: rotateAnim2 3.5s infinite linear;
    -o-animation: rotateAnim2 3.5s infinite linear;
    animation: rotateAnim2 3.5s infinite linear;
}

.preloader-circle-holder .m-loader .e-text:after {
    width: 40px;
    height: 110%;
    -webkit-animation: rotateAnim1 8s infinite linear;
    -moz-animation: rotateAnim1 8s infinite linear;
    -o-animation: rotateAnim1 8s infinite linear;
    animation: rotateAnim1 8s infinite linear;
}

@-webkit-keyframes rotateAnim1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-moz-keyframes rotateAnim1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-o-keyframes rotateAnim1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateAnim1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rotateAnim2 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@-moz-keyframes rotateAnim2 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@-o-keyframes rotateAnim2 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes rotateAnim2 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@-webkit-keyframes textColourAnim {
    0% {
        color: #888;
    }

    100% {
        color: #fff;
    }
}

@-moz-keyframes textColourAnim {
    0% {
        color: #888;
    }

    100% {
        color: #fff;
    }
}

@-o-keyframes textColourAnim {
    0% {
        color: #888;
    }

    100% {
        color: #fff;
    }
}

@keyframes textColourAnim {
    0% {
        color: #888;
    }

    100% {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .preloader-circle-holder {
        -webkit-transform: translate(-51%, -50%) scale(0.7);
        -moz-transform: translate(-51%, -50%) scale(0.7);
        -ms-transform: translate(-51%, -50%) scale(0.7);
        -o-transform: translate(-51%, -50%) scale(0.7);
        transform: translate(-51%, -50%) scale(0.7);
    }
}

/* ===== 1.1 Layout ===== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media(min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media(min-width:992px) {
    .container {
        max-width: 1170px;
    }
}

.wrapper {
    padding: 100px 0;
}

.col-row {
    column-gap: 30px;
    row-gap: 30px;
}

.col-row,
.dl-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.dl-row>main {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 30px;
}

.dl-row>aside {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.left-sidebar {
    flex-direction: row-reverse;
}

.full-width>main,
.full-width>aside {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
}

.col-item-3,
.col-item-2 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {

    .col-item-3,
    .col-item-2 {
        -ms-flex: 0 0 calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 992px) {

    .col-item-3 {
        -ms-flex: 0 0 calc((100% - 60px) / 3);
        flex: 0 0 calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
    }

    .left-sidebar>main {
        padding-right: 0;
        padding-left: 30px;
    }

    .right-sidebar>main {
        padding-right: 30px;
    }

    .left-sidebar>.widget-area {
        padding-right: 5px;
    }

    .right-sidebar>.widget-area {
        padding-left: 5px;
    }

}

@media(max-width: 992px) {

    .wrapper {
        padding: 80px 0;
    }

    .dl-row>aside,
    .dl-row>main {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .dl-row>aside {
        padding-top: 50px;
    }

}

/* ===== 1.2 Blog Layout ===== */
.page .full-width .site-main .content,
.single .full-width .site-main .content {
    width: 720px;
    max-width: 100%;
    margin: 0 auto;
}

.project-content>*,
.comment-content>*,
.content-area>* {
    margin-bottom: 30px;
    margin-top: 0;
}

.content-area .wp-block-image:last-of-type figure {
    margin-bottom: 30px;
}

.content-area p:last-of-type img.alignright {
    margin-top: 15px;
}

/* ===== 1.3 Custom Cursor ===== */
.dl-cursor {
    display: none;
}

@media (min-width: 992px) {
    .dl-cursor {
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        position: fixed;
        left: 0;
        top: 0;
        user-select: none;
        pointer-events: none;
        transform: translate(50%, 50%);
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
        transition: all .3s cubic-bezier(.165, .84, .44, 1);
    }

    .dl-cursor:before {
        background-color: var(--galactic-primary-color);
        opacity: 0.5;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .dl-cursor.cursor-grow:before {
        opacity: 0.7;
        transform: scale(1.5);
        transition: all 0.3s ease;
    }

    .dl-cursor.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
        transition-delay: 0.4s;
    }

    .dl-cursor.hide .inner {
        transform: scale(0.1);
        transition: transform 0.3s ease;
    }

    .dl-cursor.cross:before {
        font-family: "DL-Icons";
        content: "\e9b3";
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        opacity: 1;
        transform: scale(2);
        transition: all 0.3s ease;
    }
}

/* ===== Header ===== */
header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sticky-header {
    width: 100%;
    display: none;
    position: fixed;
    top: 0;
}

@media (min-width: 992px) {

    .sticky-header.fixed {
        display: block;
        background: var(--galactic-white);
        animation-name: menuSticky;
        -webkit-animation-name: menuSticky;
        animation-duration: 1s;
        -webkit-animation-duration: 1s;
        animation-timing-function: ease;
        -webkit-animation-timing-function: ease;
        box-shadow: 0 0 4px 0 rgb(115 115 115 / 20%);
        z-index: 111;
    }

    .admin-bar .site-header.transparent,
    .admin-bar .sticky-header.fixed {
        top: 32px;
    }
}

@-webkit-keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* Main Header */
.main-header {
    background-color: #0c023e;
    position: relative;
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    z-index: 9;
}

.main-header:before,
.main-header:after {
    background: #0c023e;
    content: "";
    width: 175px;
    height: 18px;
    position: absolute;
    bottom: -17px;
}

.main-header:before {
    left: 0;
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
}

.main-header:after {
    right: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
}

.sticky-header .main-header:before,
.sticky-header .main-header:after {
    display: none;
}

.main-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-column-gap: 30px;
    align-items: center;
    line-height: 90px;
}

/* Site Branding */
.site-branding {
    max-width: 150px;
    padding: 10px 0;
}

.site-branding a {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .site-branding {
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .site-branding {
        max-width: 115px;
    }

    .main-header:before,
    .main-header:after {
        display: none;
    }
}

/* Navigation Menu */
.dl-main-menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    column-gap: 30px;
    margin: 0;
    list-style: none;
}

.dl-main-menu li {
    position: relative;
}

.dl-main-menu li a {
    font-family: var(--galactic-primary-font);
    font-size: 15px;
    line-height: 1;
    color: #ddd;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    -webkit-font-smoothing: antialiased;
    z-index: 1;
}

.dl-main-menu li:hover a {
    color: var(--galactic-white);
}

.dl-main-menu li>ul {
    list-style: none;
    min-width: 225px;
    position: absolute;
    z-index: 5;
    background-color: rgba(12, 13, 53, 0.95);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 30%);
    border-radius: 0;
    border: none;
    display: block;
    text-align: left;
    left: -20px;
    right: auto;
    top: 100%;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .dl-nav .dl-main-menu li>ul {
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0);
        transform-origin: 0 0 0;
        box-shadow: 0 3px 25px 0px rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
    }

    .dl-nav .dl-main-menu li li>ul {
        top: 0 !important;
        left: 100%;
    }

    .dl-nav .dl-main-menu li:hover>ul {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }

    .dl-nav .dl-main-menu>li:nth-last-child(1)>ul,
    .dl-nav .dl-main-menu>li:nth-last-child(2)>ul {
        left: auto;
        right: -20px;
    }

    .dl-nav .dl-main-menu>li:nth-last-child(1) li>ul,
    .dl-nav .dl-main-menu>li:nth-last-child(2) li>ul {
        left: auto;
        right: 100%;
    }

    .dl-main-menu li li.menu-item {
        padding: 15px 20px;
        line-height: 1;
    }

    .dl-main-menu li li.menu-item:not(:last-of-type) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dl-main-menu li li.menu-item>a {
        display: block;
        width: auto;
        font-size: 15px;
        line-height: 20px;
        color: #bbb;
        text-transform: capitalize;
    }

    .dl-main-menu>li a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 0;
        height: 4px;
        background: var(--galactic-primary-color);
        transition: width .3s;
    }

    .dl-main-menu li.current-menu-ancestor>a:before,
    .dl-main-menu li.current_page_item>a:before,
    .dl-main-menu li:hover>a:before {
        width: 100%;
    }

    .dl-main-menu li li:hover>a:before,
    .dl-main-menu li.current-menu-parent li.current_page_item a:before {
        width: 0;
    }

}

.dl-main-menu li>li {
    margin: 0 !important;
}

.dl-main-menu li li>a {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-base-color);
    width: 100%;
    display: block;
    font-size: 15px;
    letter-spacing: -0.2px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.dl-main-menu li:hover li>a {
    color: #bbb;
}

.dl-main-menu li li.current_page_item>a,
.dl-main-menu li li:hover>a {
    color: var(--galactic-white);
}

.dropdown-plus, .dl-close-menu, .dl-menu-btn {
    display: none;
}

/* Menu Arrow */

.dropdown-plus {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 5px;
    top: 0;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s linear;
    z-index: 10;
}

.dropdown-plus:before,
.dropdown-plus:after {
    background-color: #ddd;
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.dropdown-plus:before {
    width: 10px;
    height: 2px;

}

.dropdown-plus:after {
    width: 2px;
    height: 10px;
    right: 14px;
}

.dropdown-open.dropdown-plus:after {
    visibility: hidden;
    opacity: 0;
}

/* Burger Menu */
.burger-menu {
    width: 20px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
}

.burger-menu.menu-open {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.line-menu {
    background-color: #ddd;
    border-radius: 2px;
    width: 100%;
    height: 2px;
}

.line-menu.line-half {
    width: 50%;
}

.line-menu.first-line {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}

.menu-open .line-menu.first-line {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -moz-transform: rotate(-90deg) translateX(3px);
    -o-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px);
}

.line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.menu-open .line-menu.last-line {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -moz-transform: rotate(-90deg) translateX(-3px);
    -o-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
}

@media (max-width: 992px) {

    .main-header-inner {
        grid-template-columns: auto 1fr;
    }

    .site-branding {
        text-align: center;
    }

    .dl-menu-btn {
        display: flex;
        font-size: 40px;
        color: var(--galactic-dark);
        transition: 0.3s ease transform;
        cursor: pointer;
    }

    .dl-close-menu {
        display: block;
        position: absolute;
        right: 33px;
        top: 20px;
        color: #ddd;
        font-size: 32px;
        cursor: pointer;
        transition: color 0.3s linear;
        line-height: 1;
    }

    .admin-bar .dl-close-menu {
        right: 33px;
        top: 40px;
    }

    .dl-close-menu svg {
        width: 15px;
        height: 15px;
        fill: #ddd;
    }

    .dl-close-menu:hover {
        opacity: 0.8;
    }

    /* Side Menu */
    .dl-nav {
        background-color: #0c023e;
        width: 400px;
        height: 100vh;
        padding: 70px 20px 20px;
        position: fixed;
        left: 0;
        top: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all 0.3s cubic-bezier(.34, .65, .8, .68);
        z-index: 99;
        box-shadow: 0px 30px 70px 0px rgb(137 139 142 / 15%);
        overflow-y: auto;
    }

    .dl-nav.menu-open {
        visibility: visible;
        transform: translateX(0);
        transition: all 0.3s linear;
    }

    .dl-main-menu {
        flex-direction: column;
        column-gap: 0;
        width: 100%;
        margin-top: 30px;
    }

    .dl-main-menu li a {
        line-height: 1;
        display: block;
        padding: 15px 0;
    }

    .dropdown-plus {
        display: block;
    }

    .dl-main-menu li>ul {
        position: static;
        display: none;
        padding: 0;
        padding-left: 0;
        box-shadow: none;
        transition: all 0s linear;
    }

    .dl-main-menu li a {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dl-main-menu li:first-child a {
        border-top: none;
    }

    .dl-main-menu li a {
        font-size: 14px;
        letter-spacing: -0.2px;
        color: #fff;
        padding: 18px 0;
    }

    .dl-main-menu li li>a {
        font-size: 14px;
        color: #ddd;
        font-weight: 600;
        line-height: 20px;
        text-transform: capitalize;
        padding: 13px 0;
    }

    .dl-main-menu li li:first-child>a,
    .dl-main-menu li li>a {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

}

@media (max-width: 520px) {

    .main-header-inner {
        grid-column-gap: 15px;
    }

    .site-branding {
        text-align: left;
    }

    .dl-nav {
        width: 80%;
    }
}

/* Header Right */

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}

.dl-search-btn, .dl-shopping-cart-btn {
    display: flex;
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
}

.dl-search-btn svg, .dl-shopping-cart-btn svg {
    width: 25px;
    fill: #ddd;
}

.header-btn-wrap {
    display: flex;
    align-items: center;
}

/* Shopping Cart */
.shopping-cart-inner {
    position: relative;
    display: flex;
    height: 25px;
}

.shopping-cart-inner span.count {
    width: 17px;
    height: 17px;
    background-color: var(--galactic-primary-color);
    color: var(--galactic-white);
    font-size: 10px;
    position: absolute;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: 1;
    line-height: 17px;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 520px) {
    .header-btn-wrap {
        display: none;
    }
}

/* ===== Overlay Search ===== */
#popup-search-box {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

.admin-bar #popup-search-box {
    top: 32px;
}

.open-search-popup #popup-search-box {
    opacity: 1;
    visibility: visible;
}

#popup-search-box .box-inner-wrap {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 80px 0;
    width: 100%;
    transform: translateY(-100%);
    transition: all ease-in-out 0.3s;
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}

.open-search-popup #popup-search-box .box-inner-wrap {
    transform: translateY(0);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    width: 600px;
    margin: 0 auto;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    color: #666;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    color: #666;
}

#popup-search-box .box-inner-wrap input::placeholder {
    color: #666;
    font-size: 18px;
}

#popup-search-box .box-inner-wrap input {
    background: var(--galactic-white);
    width: 100%;
    padding: 18px 30px 15px;
    padding-right: 80px;
    border: 1px solid #eee;
    font-size: 18px;
    color: #666;
    border-radius: 50px;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input:focus {
    outline: none;
    border: 1px solid var(--galactic-primary-color);
}

#popup-search-box .box-inner-wrap button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ddd;
    padding: 0 25px;
}

#popup-search-box .box-inner-wrap button svg {
    width: 25px;
    fill: #ddd;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover svg {
    fill: var(--galactic-primary-color);
}

#popup-search-box .box-inner-wrap button:focus {
    outline: none;
}

.search-close {
    font-size: 30px;
    color: #666;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.search-close:hover {
    color: var(--galactic-primary-color);
    transform: scale(1.1);
}

#searchbox-overlay {
    background-color: var(--galactic-dark);
    width: 100%;
    height: calc(100% - 214px);
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    transition: all 0s ease-in-out;
    z-index: -1;
}

.open-search-popup #searchbox-overlay {
    opacity: 0.5;
    z-index: 1002;
    cursor: none;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

@media (max-width: 767px) {
    #popup-search-box .box-inner-wrap form {
        width: 80%;
    }
}

/* Cart Flyout */
.cart-aside {
    background: rgba(12, 12, 53, 0.9);
    position: fixed;
    top: 0;
    width: 420px;
    padding: 50px;
    min-height: 100vh;
    bottom: 0;
    right: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 250ms ease;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    -webkit-transform: translate(200px, 0);
    transform: translate(200px, 0);
    max-width: 100%;
}

.open-cart-aside .cart-aside {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 1s ease;
}

.cart-aside .cart-aside-inner {
    display: block;
    height: 100%;
    position: relative;
}

.cart-overlay-global {
    position: fixed;
    background: #232324;
    z-index: 120;
    visibility: hidden;
    opacity: 0;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    transition: all 250ms ease-out;
}

.open-cart-aside .cart-overlay-global {
    visibility: visible;
    opacity: .7;
}

.cart-aside .aside-cart-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #ddd;
    cursor: pointer;
}

.cart-aside .aside-cart-close svg {
    fill: #ddd;
    width: 20px;
    transition: opacity 0.35s ease-in-out;
}

.cart-aside .aside-cart-close:hover svg {
    opacity: 0.7;
}

.header-quickcart {
    padding-top: 50px;
}

.header-quickcart .widgettitle {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
}

.header-quickcart .widget_shopping_cart .cart_list {
    max-height: calc(100vh - 430px);
    overflow: auto;
    padding-right: 4px;
}

.header-quickcart .widget_shopping_cart .cart_list::-webkit-scrollbar {
    width: 0px;
}

.header-quickcart .widget_shopping_cart .cart_list:hover::-webkit-scrollbar {
    width: 4px;
}

.header-quickcart .widget_shopping_cart .cart_list li {
    padding: 0;
    overflow: hidden;
}

.header-quickcart .widget_shopping_cart .cart_list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.header-quickcart .cart_list li.mini_cart_item a.remove {
    display: block;
    font-weight: 400;
    font-size: 14px;
    height: 20px;
    line-height: 17px;
    overflow: hidden;
    right: 0;
    left: auto;
    text-align: right;
    width: 20px;
    font-family: Verdana, sans-serif;
    color: #ddd !important;
}

.header-quickcart .cart_list li.mini_cart_item a.remove:hover {
    background-color: transparent;
    color: #fff !important;
    text-decoration: none;
}

.header-quickcart ul.product_list_widget li img {
    float: left;
    max-width: 70px;
    width: 70px;
    border-radius: 2px;
    margin: 0;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.header-quickcart .cart_list li.mini_cart_item a:nth-child(2) {
    color: var(--galactic-white);
    line-height: 22px;
}

.header-quickcart .product_list_widget li a:hover {
    text-decoration: none;
}

.header-quickcart .cart_list li.mini_cart_item .quantity,
.header-quickcart .cart_list li.mini_cart_item .quantity .amount {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #6c7a87;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.header-quickcart .widget_shopping_cart .total {
    border-top: none;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    color: var(--galactic-white);
    font-weight: 600;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons:before,
.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons:after {
    display: none;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
    background: var(--galactic-gradiant);
    display: block;
    margin: 0;
    height: auto;
    line-height: 1;
    padding: 17px 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: var(--galactic-white);
    border-radius: 2px;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;

}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:hover {
    transform: translateY(-2px);
}

/* ===== Blog Posts ===== */
.post-items article {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.article-inner {
    position: relative;
}

.post-items article.sticky .article-inner:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.5) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.5) 100%);
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.post-items.classic>article:not(:last-of-type) {
    margin-bottom: 40px;
}

article .post-thumbnail {
    position: relative;
    height: 360px;
}

article .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

article .post-thumbnail>a {
    display: block;
    line-height: 0;
}

article .dl-cat-items {
    position: absolute;
    left: 0;
    bottom: 0;
}

article .bottom-right .dl-cat-items {
    left: auto;
    right: 0;
}

.classic article .bottom-right .dl-cat-items {
    left: auto;
    right: 30px;
}

.classic article .dl-cat-items {
    left: 30px;
    bottom: 30px;
}

article .top-right .dl-cat-items,
article .top-left .dl-cat-items {
    bottom: auto;
    top: 0;
}

.classic article .top-right .dl-cat-items,
.classic article .top-left .dl-cat-items {
    bottom: auto;
    top: 30px;
}

article .top-right .dl-cat-items {
    left: auto;
    right: 0;
}

.classic article .top-right .dl-cat-items {
    left: auto;
    right: 30px;
}

article .center .dl-cat-items {
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
}

.rel-post-card .dl-cat-items .dl-cat-item,
article .dl-cat-items .dl-cat-item {
    background: var(--galactic-gradiant);
    padding: 10px 25px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: var(--galactic-white);
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0% 100%, 0 66%, 0 0);
    position: relative;
    z-index: 1;
}

article .bottom-right .dl-cat-items .dl-cat-item,
article .top-right .dl-cat-items .dl-cat-item,
.classic article .dl-cat-items .dl-cat-item {
    clip-path: none;
}

.rel-post-card .dl-cat-items .dl-cat-item:before,
article .dl-cat-items .dl-cat-item:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

article.has-post-thumbnail .post-content {
    border-top: none;
}

article .post-content .post-meta {
    line-height: 1;
}

article .post-content .post-meta a {
    font-family: var(--galactic-primary-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #f1d6c5;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

article .post-content .post-meta a:hover {
    color: var(--galactic-primary-color);
    transition: all 0.2s ease-in-out;
}

article .post-content .post-meta a:not(:last-of-type) {
    margin-right: 15px;
}

.post-banner-inner .post-meta a .updated,
article .post-content .post-meta a .updated {
    display: none;
}

article .post-content .post-meta a i {
    color: var(--galactic-primary-color);
    font-size: 20px;
    margin-right: 5px;
    margin-top: -3px;
}

article .entry-title {
    font-family: var(--galactic-primary-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--galactic-heading-color);
    letter-spacing: -1px;
    text-transform: inherit;
    margin: 10px 0 15px;
}

article .entry-title a {
    color: var(--galactic-heading-color);
    background-image: linear-gradient(var(--galactic-primary-color) 0%, var(--galactic-primary-color) 98%);
    background-size: 0 4px;
    background-repeat: no-repeat;
    background-position: left 100%;
    word-break: break-all;
}

article .entry-title a:hover {
    background-size: 100% 4px;
}

.rel-post-card .entry-footer .readmore,
article .entry-footer .post-comments,
article .entry-footer .readmore {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-heading-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    padding-right: 25px;
    position: relative;
    display: inline-block;
    transition: all .6s .125s cubic-bezier(.1, .75, .25, 1);
}

.rel-post-card .entry-footer .readmore:before,
.rel-post-card .entry-footer .readmore:after,
article .entry-footer .readmore:before,
article .entry-footer .readmore:after {
    position: absolute;
    font-family: 'DL-Icons';
    font-weight: 900;
    font-size: 20px;
    line-height: 0;
    content: "\e96f";
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .4s .25s, left .6s .25s, right .6s .25s;
    transition-timing-function: cubic-bezier(.1, .75, .25, 1);
}

.rel-post-card .entry-footer .readmore:before,
article .entry-footer .readmore:before {
    left: -25px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(.1, .75, .25, 1);
}

.rel-post-card .entry-footer .readmore:after,
article .entry-footer .readmore:after {
    right: 0;
    transition-delay: 0s;
}

.rel-post-card .entry-footer .readmore:hover,
article .entry-footer .readmore:hover {
    padding-left: 25px;
    color: var(--galactic-primary-color);
}

.rel-post-card .entry-footer .readmore:hover:before,
article .entry-footer .readmore:hover:before {
    left: 0;
    opacity: 1;
    transition: opacity .4s .25s, left .6s .25s;
    transition-timing-function: cubic-bezier(.1, .75, .25, 1);
    transition-delay: .225s;
}

.rel-post-card .entry-footer .readmore:hover:after,
article .entry-footer .readmore:hover:after {
    right: -10px;
    opacity: 0;
    transition-delay: 0s;
}

/* ===== Post Grid ===== */
.post-items.grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.post-items.grid>article {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    padding: 15px;
}

.post-items.classic .article-inner,
.post-items.grid .article-inner {
    background-color: rgba(12, 12, 53, 0.9);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

.post-items.grid article .post-thumbnail {
    overflow: hidden;
    height: 250px;
}

.post-items.grid article .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s linear;
}

.post-items.grid article:hover .post-thumbnail img {
    transform: scale(1.03) rotate(1deg);
}

.post-items.classic .post-content,
.post-items.grid .post-content {
    padding: 30px;
    padding-bottom: 0;
}

.post-items.grid article .entry-title {
    font-size: 24px;
    line-height: 34px;
}

.rel-post-card .entry-footer,
.post-items.classic article .entry-footer,
.post-items.grid article .entry-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 15px 0;
    margin-top: 20px;
}

.rel-post-card .entry-footer .readmore,
.post-items.grid article .entry-footer .readmore {
    margin-top: 0;
}

.rel-post-card .entry-footer .post-comments,
.post-items.grid article .entry-footer .post-comments {
    font-family: var(--galactic-primary-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    color: var(--galactic-base-color);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.rel-post-card .entry-footer .post-comments:hover,
.post-items.grid article .entry-footer .post-comments:hover {
    color: var(--galactic-primary-color);
    transition: all 0.2s ease-in-out;
}

.rel-post-card .entry-footer .post-comments i,
.post-items.grid article .entry-footer .post-comments i {
    color: var(--galactic-primary-color);
    font-size: 20px;
    margin-right: 5px;
}

/* Classic */
.post-items.classic article .entry-footer .post-comments {
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 5px;
}

.post-items.classic article .entry-footer .post-comments i {
    font-size: 20px;
    color: var(--galactic-primary-color);
    margin-bottom: 2px;
}

.post-items.classic article .entry-footer .post-comments:hover {
    color: var(--galactic-primary-color);
}

@media (max-width: 992px) {
    .post-items.grid article .post-content .post-meta a:not(:last-of-type) {
        margin-right: 10px;
    }

    .post-items.grid article .post-content .post-meta a i {
        margin-right: 3px;
    }

    .post-items.grid article .post-content .post-meta a {
        font-size: 14px;
    }

    .post-items.grid article .entry-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .post-items.classic article .entry-title {
        font-size: 22px;
        line-height: 28px;
    }

    .post-items.grid>article {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    article .post-thumbnail {
        height: 250px;
    }
}

/* ===== Blog Single ===== */
.page-banner,
.post-banner {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    color: var(--galactic-white);
    position: relative;
    z-index: 1;
}

.page-banner:before,
.post-banner:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.5) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.5) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.post-banner .container,
.page-banner .container {
    position: relative;
}

.page-banner-inner,
.post-banner-inner {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
}

.post-banner-inner {
    height: 450px;
}

.page-banner:not(.is-breadcrumb) .page-banner-inner,
.post-banner:not(.is-breadcrumb) .post-banner-inner {
    padding-bottom: 60px;
}

.single-post .post-thumb {
    min-height: 350px;
    position: relative;
    margin-bottom: 40px;
}

.single-post .post-thumb .post-single-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.post-banner-inner {
    text-align: center;
}

.post-banner .entry-title {
    color: var(--galactic-white);
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
}

.post-banner .dl-cat-items {
    display: block;
    margin-bottom: 20px;
}

.post-banner .dl-cat-items a {
    background: var(--galactic-gradiant);
    font-family: var(--galactic-primary-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--galactic-white);
    padding: 8px 20px;
    line-height: 1;
    border-radius: 1px;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.post-banner .dl-cat-items a:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.post-banner .dl-cat-items a:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

.post-banner .post-meta {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}

.post-banner .post-meta .author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-banner .post-meta a {
    font-family: var(--galactic-primary-font);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #f1d6c5;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.post-banner .post-meta a:hover {
    opacity: 0.8;
}

.post-banner .post-meta a i {
    color: var(--galactic-primary-color);
    font-size: 20px;
    margin-right: 5px;
}

.post-banner-inner {
    max-width: 100%;
    padding: 0 15px;
}

@media (max-width: 600px) {
    .post-banner .post-meta {
        flex-wrap: wrap;
    }

    .post-banner .post-meta a {
        width: 48%;
    }
}

/* ===== Page Banner ===== */
.page-banner {
    position: relative;
    z-index: 1;
}

.post-banner .overlay,
.page-banner .overlay {
    background-color: var(--galactic-dark);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    z-index: -1;
}

.page-banner.no-image .overlay,
.post-banner.no-image .overlay {
    display: none;
}

.post-banner .post-banner-inner,
.page-banner .page-banner-inner {
    max-width: 60%;
    position: relative;
}

.post-banner.center .post-banner-inner,
.page-banner.center .page-banner-inner {
    margin: 0 auto;
}

.post-banner.right .post-banner-inner,
.page-banner.right .page-banner-inner {
    margin-left: auto;
}

.center .page-banner-inner {
    text-align: center;
}

.right .post-banner-inner,
.right .page-banner-inner {
    text-align: right;
    justify-content: flex-end;
}

.left .post-banner-inner,
.left .page-banner-inner {
    text-align: left;
    justify-content: flex-start;
}

.page-banner-inner h3 {
    font-family: var(--galactic-primary-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--galactic-primary-color);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.page-banner-inner h1 {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-white);
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
}

.page-banner-inner p {
    margin-top: 20px;
}

.page-header-shape .shape {
    background: var(--galactic-primary-color);
    background-image: var(--galactic-gradiant);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
    width: 200px;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.page-header-shape .shape:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.page-header-shape .shape.right {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
}

.page-header-shape .shape.center {
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 5px;
}

.page-header-shape .shape.center.back {
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    width: 400px;
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    opacity: 0.5;
    border-radius: 2px;
    z-index: -1;
}

@media (max-width: 767px) {

    .post-banner .post-banner-inner,
    .page-banner .page-banner-inner {
        max-width: 90%;
    }
}

/* ===== Breadcrumb ===== */
.breadcrumb-wrap {
    background-color: var(--galactic-primary-color);
    background: var(--galactic-gradiant);
    padding: 0 30px;
    border-radius: 2px;
    width: max-content;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 15px;
    bottom: -20px;
    z-index: 2;
}

.breadcrumb-wrap:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.center .breadcrumb-wrap {
    left: 50%;
    transform: translateX(-50%);
}

.right .breadcrumb-wrap {
    left: auto;
    right: 15px;
}

.breadcrumb-wrap li a,
.breadcrumb-wrap li {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    display: inline-block;
}

.breadcrumb-wrap .sep {
    margin: 0 5px;
}

@media (max-width: 767px) {

    .page-header-shape .shape {
        width: 80px;
        height: 40px;
    }

    .page-header-shape .shape.center.back {
        width: 170px;
        height: 30px;
    }

    .el-page-header .el-breadcrumbs,
    .breadcrumb-wrap {
        display: none;
    }
}

@media (min-width: 992px) {
    .post-banner-inner {
        width: 650px;
        max-width: 1400px;
    }
}

@media (max-width: 992px) {

    .page-banner-inner h1,
    .post-banner .entry-title {
        font-size: 32px;
        line-height: 42px;
    }

    .page-banner .page-banner-inner {
        max-width: 90%;
        height: auto;
        padding: 100px 0;
    }

    .page-banner:not(.is-breadcrumb) .page-banner-inner,
    .post-banner:not(.is-breadcrumb) .post-banner-inner {
        padding-bottom: 160px;
    }
}

@media (max-width: 767px) {
    .page-banner .page-banner-inner {
        padding: 60px 0;
    }

    .page-banner:not(.is-breadcrumb) .page-banner-inner,
    .post-banner:not(.is-breadcrumb) .post-banner-inner {
        padding-bottom: 90px;
    }

    .page-banner-inner h1,
    .post-banner .entry-title {
        font-size: 28px;
        line-height: 36px;
    }

    .post-banner .post-meta a {
        font-size: 12px;
    }
}

/* ===== Post Author Box ===== */
.post-author-box {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    padding: 40px;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 20px;
}

.post-author-box.no-desc {
    align-items: center;
}

.post-author-box .author-avatar img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
}

.post-author-box .author-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.post-author-box .author-info h3 a {
    color: #fff;
}

.post-author-box .author-info h3 a:hover {
    color: var(--galactic-primary-color);
}

.post-author-box .author-info p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
}

.post-author-box .author-info ul {
    list-style: none;
    line-height: 1;
    margin-top: 15px;
    margin-left: -3px;
}

.post-author-box .author-info ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 17px;
}

.post-author-box .author-info ul li a {
    color: #fff;
}

.post-author-box .author-info ul li a:hover {
    color: var(--galactic-primary-color);
}

/* ===== Post Navigation ===== */
.post-navigation .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    align-items: center;
}

.all-projects .post-navigation .nav-links {
    grid-template-columns: 1fr 30px 1fr;
}

@media (max-width: 580px) {
    .all-projects .post-navigation .nav-links {
        grid-column-gap: 10px;
    }
}

.post-navigation .nav-links .nav-next {
    text-align: right;
}

.nav-links .post-text {
    font-family: var(--galactic-primary-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--galactic-base-color);
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    display: block;
}

.nav-links .post-text i {
    margin-right: 5px;
}

.nav-links .nav-next .post-text i {
    margin-left: 5px;
    margin-right: auto;
}

.nav-links .nav-text .post-title {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-heading-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-transform: capitalize;
    word-break: break-word;
    margin: 0;
    transition: all 0.2s ease-in-out;
}

.nav-links .nav-text .post-title:hover {
    opacity: 0.8;
}

.nav-links .nav-previous,
.nav-links .nav-next {
    border-radius: 3px;
    overflow: hidden;
}

.nav-links .has-image {
    background-color: #1b152b;
    padding: 25px 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.nav-links .has-image:before {
    background-color: var(--galactic-dark, #000018);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}

.nav-links .has-image .post-text {
    color: #ddd;
}

.nav-links .has-image .post-title {
    color: var(--galactic-white);
}

.single-post-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .nav-links .nav-text .post-title {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ===== Single Posts Tags ===== */
.single-post-tags a {
    background: rgba(152, 65, 255, 0.3);
    color: var(--galactic-white);
    padding: 3px 15px;
    border-radius: 2px;
    font-family: var(--galactic-primary-font);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 5px 10px 5px 0;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.single-post-tags a:hover {
    background: var(--galactic-primary-color);
    color: var(--galactic-white);
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

/* ===== Post Social Share ===== */
.post-social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.post-social-share>div {
    background-color: rgba(152, 65, 255, 0.3);
    clip-path: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
    color: var(--galactic-heading-color);
    font-size: 15px;
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.post-social-share>div:hover {
    background-color: var(--galactic-primary-color);
    color: var(--galactic-white);
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .single-post-footer {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
}

/* ===== Comment Section ===== */
.dl-comment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.dl-comment-row div>input {
    width: 100%;
}

.comments-area ol {
    list-style: none;
}

.comment-body {
    position: relative;
    padding-left: 100px;
}

.comment-list li ol {
    margin-left: 0;
    margin-top: 35px;
    padding-left: 100px;
}

.comment-list ol ol ol {
    padding-left: 0;
}

.comment-list ol ol ol li:not(:first-of-type),
.comment-list>li:not(:first-of-type) {
    margin-top: 35px;
}

.comment-meta .comment-author img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.comment-meta .comment-author b {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-heading-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.3px;
}

.comment-meta .comment-author b a {
    color: var(--galactic-heading-color);
}

.comment-meta .comment-author span {
    display: none;
}

.comment-metadata {
    margin-bottom: 7px;
}

.comment-body .reply a,
.comment-metadata a {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-base-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.3px;
}

.comment-body .reply {
    margin-top: 15px;
}

.comment-body .reply a {
    position: relative;
    color: var(--galactic-heading-color);
}

.comment-body .reply a:before {
    position: absolute;
    font-family: 'DL-Icons';
    font-weight: 900;
    content: "\e996";
    font-size: 12px;
    color: var(--galactic-base-color);
    color: var(--galactic-primary-color);
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

.comment-metadata a:hover,
.comment-body .reply a:hover:before,
.comment-body .reply a:hover {
    color: var(--galactic-primary-color);
    opacity: 1;
}

.comment-list .comment-content ol {
    margin-bottom: 30px;
    margin-top: 0;
    list-style: decimal;
    padding: 0;
}

.comment-list .comment-content ol ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

.comment-list .comment-content ol ol ol li:not(:first-of-type),
.comment-list .comment-content>li:not(:first-of-type) {
    margin: 0;
}

@media (max-width: 767px) {
    .comment-list li ol {
        padding-left: 25px;
    }
}

/* ===== Comment Form ===== */
.comments-area #cancel-comment-reply-link {
    margin-left: 15px;
}

.comments-area .comment-respond {
    margin-top: 15px;
}

.comments-area .dl-comment-form textarea,
.comments-area .dl-comment-form input[type="text"],
.comments-area .dl-comment-form input[type="email"] {
    background-color: rgba(12, 12, 53, 0.9);
    min-height: 60px;
    border-radius: 2px;
    border: 2px solid rgba(152, 65, 255, 0.3);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    outline: none;
}

.comments-area .dl-comment-form textarea {
    min-height: 150px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

/* ===== Pagination Style ===== */
.navigation.pagination {
    margin-top: 40px;
}

.navigation.pagination .nav-links {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.navigation.pagination .nav-links span.page-numbers.current {
    background: var(--galactic-primary-color);
}

.navigation.pagination .nav-links span.page-numbers.current,
.navigation.pagination .nav-links a {
    background-color: rgba(152, 65, 255, 0.3);
    clip-path: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
    display: inline-block;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 17px;
    color: var(--galactic-heading-color);
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .2s ease-in-out;
}

.navigation.pagination .nav-links a:before {
    background: var(--galactic-primary-color);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.navigation.pagination .nav-links a:hover:before {
    visibility: visible;
    opacity: 1;
    transition: all .2s ease-in-out;
}

.navigation.pagination .nav-links a.prev,
.navigation.pagination .nav-links a.next {
    font-size: 25px;
}

.navigation.pagination .nav-links a:hover {
    transform: translateY(-2px);
}

.navigation.pagination .nav-links a:hover,
.navigation.pagination .nav-links span.page-numbers.current {
    color: #fff;
}

.navigation.pagination .nav-links span.page-numbers.current {
    background-color: var(--galactic-primary-color);
}

/* ===== Button Style ===== */
.wp-block-button__link {
    color: var(--galactic-white);
    border-radius: inherit;
    font-weight: 600;
    font-family: var(--galactic-primary-font);
    letter-spacing: 0;
    text-transform: capitalize;
}

.wp-block-button__link:not(.has-background) {
    background: var(--galactic-primary-color);
}

.wp-block-button:not(.has-custom-font-size) .wp-block-button__link {
    font-size: 15px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--galactic-heading-color);
}

.wp-block-button__link:not(.has-background):hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--galactic-dark);
    color: var(--galactic-white);
    border-color: var(--galactic-dark);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    opacity: 0.8;
}

/* ===== Image Cover Block ===== */
.wp-block-cover .wp-block-cover__inner-container p a,
.wp-block-cover .wp-block-cover__inner-container {
    color: var(--galactic-white);
    font-family: var(--galactic-primary-font);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: capitalize;
    text-decoration: none;
}

/* ===== Blockquote ===== */
.wp-block-quote,
blockquote.is-style-default {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    border-left: 3px solid var(--galactic-primary-color);
    padding: 40px;
    margin-left: 0;
    margin-right: 0;
}

.wp-block-quote[style="text-align:right"] {
    border-left: none;
    border-right: 3px solid var(--galactic-primary-color);
}

.wp-block-quote p,
.wp-block-quote.is-large, .wp-block-quote.is-style-large p,
blockquote.is-style-plain p,
blockquote.is-style-default p {
    font-family: var(--galactic-primary-font);
    font-size: 24px;
    line-height: 32px;
    color: var(--galactic-heading-color);
    font-weight: 600;
    letter-spacing: -1px;
    margin: 0;
}

blockquote cite {
    font-family: var(--galactic-primary-font);
    font-size: 16px;
    color: var(--galactic-base-color);
    font-weight: 500;
    font-style: normal;
    letter-spacing: -0.5px;
    margin-top: 10px;
    display: block;
}

blockquote p em {
    font-style: normal;
    font-size: 20px;
}

blockquote cite em,
blockquote cite {
    font-style: normal;
}

.wp-block-quote.is-large:not(.is-style-plain),
.wp-block-quote.is-style-large:not(.is-style-plain),
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
blockquote.is-style-plain {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    padding: 40px;
}

blockquote p {
    margin: 0;
}

/* ===== Block Gallery ===== */
.wp-block-gallery:not(.has-nested-images) {
    margin-bottom: 30px;
}

.wp-block-gallery {
    display: grid !important;
    grid-gap: 20px !important;
    grid-template-columns: 1fr;
}

.wp-block-gallery .blocks-gallery-item,
.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: inherit !important;
    margin: 0 !important;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    font-size: 17px;
    line-height: 27px;
}

@media (min-width: 580px) {

    .wp-block-gallery.columns-6,
    .wp-block-gallery.columns-5,
    .wp-block-gallery.columns-4,
    .wp-block-gallery.columns-3,
    .wp-block-gallery.columns-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .wp-block-gallery.columns-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .wp-block-gallery.columns-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .wp-block-gallery.columns-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .wp-block-gallery.columns-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}



/* ===== Blocks Style ===== */
.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
    margin: 10px 0 15px 0;
}

.content-area p,
.has-large-font-size {
    line-height: 1.8;
}

.content-area .wp-block-column ul {
    margin-top: -8px;
}

.has-media-on-the-right .wp-block-media-text__content p {
    color: var(--galactic-dark);
    margin-top: 0;
}

.post-footer-area>* {
    margin-top: 50px;
}

.project-footer-title,
.post-footer-area .post-footer-title,
.post-footer-area .comment-reply-title {
    font-size: 22px;
    padding-bottom: 15px;
    margin-top: -5px;
    position: relative;
}

.project-footer-title:before,
.project-footer-title:after,
.post-footer-area .post-footer-title:before,
.post-footer-area .post-footer-title:after,
.post-footer-area .comment-reply-title:after,
.post-footer-area .comment-reply-title:before {
    background: var(--galactic-primary-color);
    content: "";
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 5px;
    border-radius: 2px;
}

.project-footer-title:before,
.post-footer-area .post-footer-title:before,
.post-footer-area .comment-reply-title:before {
    width: 15px;
}

.project-footer-title:after,
.post-footer-area .post-footer-title:after,
.post-footer-area .comment-reply-title:after {
    width: 35px;
    left: 20px;
}

.post-footer-area .comment-list {
    margin-bottom: 50px;
}

.post-footer-area .comment-respond {
    margin-top: 35px;
}

.post-footer-area #cancel-comment-reply-link {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-base-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-left: 10px;
    text-transform: capitalize;
}

.post-footer-area #cancel-comment-reply-link:hover {
    color: var(--galactic-primary-color);
    text-decoration: underline;
}

/* Related Posts */
.related-posts-wrapper .rel-items {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 767px) {
    .related-posts-wrapper .rel-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rel-post-card {
    background-color: rgba(12, 12, 53, 0.9);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

.rel-post-card .post-thumb {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 0;
}

.rel-post-card .post-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.rel-post-card .post-thumb .dl-cat-items {
    position: absolute;
    left: 0;
    bottom: 0;
}

.rel-post-card .post-content {
    padding: 30px;
    padding-bottom: 0;
}

.rel-post-card .post-content .post-meta {
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.rel-post-card .post-content .post-meta a {
    font-family: var(--galactic-primary-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    color: var(--galactic-base-color);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.rel-post-card .post-content .post-meta a i {
    color: var(--galactic-primary-color);
    font-size: 20px;
    margin-right: 5px;
}

.rel-post-card .post-content .post-meta a:not(:last-of-type) {
    margin-right: 15px;
}

.rel-post-card .post-content .post-meta a .updated {
    display: none;
}

.rel-post-card .post-content .entry-title {
    font-family: var(--galactic-primary-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.rel-post-card .post-content .entry-title a {
    color: var(--galactic-heading-color);
}

/* ===== Sidebar Widgets Style ===== */
.widget-area .widget {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 2px;
}

.widget-area>section:not(:last-of-type) {
    margin-bottom: 40px;
}

.widget .widget-title {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-heading-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    text-transform: capitalize;
    position: relative;
}

.widget .widget-title:after,
.widget .widget-title:before {
    background: var(--galactic-primary-color);
    content: "";
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.widget .widget-title:before {
    width: 15px;
}

.widget .widget-title:after {
    width: 35px;
    left: 20px;
}

.widget ul li {
    position: relative;
    list-style: none;
}

.widget ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.widget.widget_categories ul li {
    width: 100%;
}

.widget.widget_archive ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Search Form ===== */
.widget_search .search-form {
    width: 100%;
    position: relative;
}

.widget_search .search-form .form-control {
    background-color: rgba(12, 12, 53, 0.9);
    border: 2px solid rgba(152, 65, 255, 0.3);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    width: 100%;
    height: 60px;
    padding: 0 40px 0 15px;
    color: var(--galactic-white);
    font-size: 17px;
}

.widget_search .search-btn {
    background: transparent;
    width: 40px;
    padding: 0;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget_search .search-btn::before {
    display: none;
}

.widget_search .search-btn svg {
    width: 25px;
    fill: var(--galactic-primary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

.widget_search .search-btn:hover svg {
    opacity: 1;
}

/* ===== Tag Cloud ===== */
.widget .tagcloud a {
    background-color: rgba(152, 65, 255, 0.3);
    font-size: 14px !important;
    line-height: 1;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    color: var(--galactic-base-color);
    border-radius: 2px;
    display: inline-block;
    padding: 9px 15px;
    margin: 0 5px 0px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}

.widget .tagcloud a:hover {
    background-color: var(--galactic-primary-color);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    transition: all 0.2s ease-in-out;
}

.widget .tagcloud a:hover:before {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

/* ===== Sidebar Recent Posts ===== */
.widget.widget_recent_entries ul li {
    padding-left: 0;
}

.widget.widget_recent_entries ul li:before {
    display: none;
}

.widget.widget_recent_entries ul li a {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-heading-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
    display: block;
}

.widget.widget_recent_entries ul li a:hover {
    color: var(--galactic-primary-color);
    text-decoration: underline;
}

.widget.widget_recent_entries ul li span {
    font-family: var(--galactic-base-font);
    color: var(--galactic-base-color);
    font-size: 14px;
    letter-spacing: -0.2px;
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
}

.widget.widget_recent_entries ul li:not(:last-of-type) {
    margin-bottom: 20px;
}

/* ===== Sidebar Calendar ===== */
.calendar_wrap .wp-calendar-nav span,
.widget_calendar .wp-calendar-table caption {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-heading-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.widget_calendar .wp-calendar-table caption {
    margin-bottom: 8px;
    text-align: left;
}

.wp-calendar-table tbody tr td,
.wp-calendar-table thead tr th {
    text-align: center;
    padding: 5px;
}

.calendar_wrap .wp-calendar-nav span a {
    color: var(--galactic-heading-color);
}

.calendar_wrap .wp-calendar-nav span a:hover {
    color: var(--galactic-primary-color);
}

.calendar_wrap .wp-calendar-nav {
    margin-top: 8px;
}

/* ===== Block Calendar ===== */
.wp-block-calendar .wp-calendar-table thead tr th {
    color: var(--galactic-heading-color);
    font-weight: 600;
}

/* ===== Sidebar Image Gallery ===== */
.widget_media_gallery .gallery {
    grid-gap: 15px;
    margin-bottom: 0;
}

.widget_media_gallery .gallery .gallery-item {
    margin: 0;
    line-height: 0;
}

.widget_media_gallery .gallery .gallery-item a {
    width: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-size: 0;
    display: inline-block;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.widget_media_gallery .gallery .gallery-item a img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.widget_media_gallery .gallery .gallery-item:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

/* ===== Ui Select Menu Style ===== */
.ui-selectmenu-button.ui-button {
    background: rgba(12, 12, 53, 0.9);
    width: 100%;
    padding: 18px 15px;
    border-radius: 2px;
    border: 2px solid rgba(152, 65, 255, 0.3);
    outline: none;
    box-shadow: none;
}

.ui-widget.ui-widget-content {
    background-color: rgba(12, 12, 53, 0.9);
    border: none;
}

.ui-widget.ui-widget-content li:not(:last-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-selectmenu-text {
    font-family: var(--galactic-primary-font);
    color: var(--galactic-base-color);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.ui-menu .ui-menu-item-wrapper {
    font-family: var(--galactic-base-font);
    color: var(--galactic-base-color);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    padding: 10px 15px;
}

.ui-state-active, .ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active, a.ui-button:active,
.ui-button:active, .ui-button.ui-state-active:hover {
    background: transparent;
    color: var(--galactic-primary-color);
    border: 1px solid transparent;
    outline: none;
    box-shadow: none;
}

.ui-button:active,
a.ui-button:active {
    border: 2px solid rgba(152, 65, 255, 0.3);
}

.ui-selectmenu-button:active .ui-selectmenu-text {
    color: var(--galactic-primary-color);
}

/* ===== Sidebar Comments ===== */
.comment-author-link>a {
    font-family: var(--galactic-primary-font);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.2px;
    color: var(--galactic-heading-color);
}

.recentcomments>a {
    color: var(--galactic-base-color);
}

/* ===== Widget RSS ===== */
.widget_rss .widget-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.widget_rss .widget-title a {
    font-size: 20px;
    font-weight: 600;
}

.widget_rss .widget-title a img {
    width: 16px;
}

.widget_rss ul li {
    padding-left: 0;
}

.widget_rss ul li:not(:last-of-type) {
    margin-bottom: 20px;
}

.widget_rss ul li:before {
    display: none;
}

.widget_rss .rsswidget {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--galactic-heading-color);
    letter-spacing: -0.2px;
    display: block;
}

.widget_rss .rss-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--galactic-base-color);
    letter-spacing: -0.2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ===== Widget Meta ===== */
.widget_meta ul li a {
    color: var(--galactic-base-color);
}

.widget_meta ul li a:hover {
    color: var(--galactic-primary-color);
    text-decoration: underline;
}

/* ===== Footer Widgets ===== */
.footer-widgets-area {
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-widget-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 50px;
}

.footer-widget-items.widget-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.footer-widget-items.widget-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.footer-widget-items.widget-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.footer-widget-items.widget-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.footer-widget-item>section:not(:last-of-type) {
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-widgets-area {
        padding: 0 0 50px;
    }

    .footer-widget-items.widget-col-3,
    .footer-widget-items.widget-col-4,
    .footer-widget-items {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {
    .footer-widgets-area {
        padding: 0 0 50px;
    }
}

@media (max-width: 600px) {

    .footer-widget-items.widget-col-2,
    .footer-widget-items.widget-col-3,
    .footer-widget-items.widget-col-4,
    .footer-widget-items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dark .widget_rss .rsswidget,
.dark .calendar_wrap .wp-calendar-nav span a,
.dark .calendar_wrap .wp-calendar-nav span,
.dark .widget_calendar .wp-calendar-table caption,
.dark .widget-posts-list li .widget-post-content a,
.dark .comment-author-link>a,
.dark .widget.widget_recent_entries ul li a,
.dark .widget .widget-title {
    color: var(--galactic-white);
}

.dark .textwidget p,
.dark ul li,
.dark ul li a,
.dark .widget_rss .rss-date,
.dark .widget-posts-list li .widget-post-content .post-date,
.dark .widget_meta ul li a,
.dark .recentcomments>a,
.dark .widget.widget_recent_entries ul li span {
    color: #ddd;
}

.dark .widget .tagcloud a {
    background-color: #132b75;
    color: #ddd;
}

.dark .widget .tagcloud a:hover {
    color: var(--galactic-white);
}

.dark tr {
    background: var(--galactic-white);
}

.dark tr:nth-of-type(odd) {
    background: var(--galactic-grey);
}

/* ===== Footer Area ===== */
.footer-area {
    overflow: hidden;
}

.footer-area .site-info {
    display: inline-block;
    padding: 30px 80px 30px 0;
    position: relative;
    z-index: 1;
    font-family: var(--galactic-primary-font);
    color: var(--galactic-base-color);
}

.footer-area .site-info:after,
.footer-area .site-info:before {
    background-color: rgb(12 12 53 / 80%);

    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-area .site-info:before {
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.footer-area .site-info:after {
    width: 5000px;
    right: 200px;
}

.footer-area.dark .site-info a,
.footer-area.dark .site-info {
    color: #ddd;
}

.footer-area .site-info a {
    color: var(--galactic-base-color);
}

.footer-area .site-info a:hover {
    color: var(--galactic-primary-color);
}

@media (min-width: 992px) {
    .footer-widget-items.widget-col-4 .footer-widget-item:nth-child(2) .widget_nav_menu {
        margin-left: 50px;
    }
}

@media (max-width: 580px) {
    .footer-area .site-info {
        padding-right: 40px;
    }
}

/* ===== My Club Header ===== */
.page-club-info img {
    max-width: 150px;
    margin-bottom: 20px;
}

.page-player-info .entry-title,
.page-club-info .entry-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.tournament-details-info,
.match-details-info,
.team-details-info {
    position: relative;
    z-index: 1;
}

.tournament-details-wrap,
.match-details-wrap,
.team-details-wrap {
    background: var(--galactic-primary-color);
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
    padding: 0 40px;
    height: 120px;
    border-radius: 10px;
    position: relative;
    width: 90%;
    margin: 0 auto;
    margin-top: -62px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.team-details-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
}

.tournament-details-wrap:before,
.match-details-wrap:before,
.team-details-wrap:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-details-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-details-wrap ul li {
    display: inline-block;
}

.team-details-wrap ul li:first-child {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-right: 10px;
}

.team-details-wrap .social-list li:not(:last-of-type) {
    margin-right: 5px;
}

.team-details-wrap .social-list li a {
    background-color: rgba(12, 12, 53, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    clip-path: none;
    width: 40px;
    height: 35px;
    font-size: 14px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.team-details-wrap .social-list li a:hover {
    background-color: var(--galactic-primary-color);
    color: var(--galactic-white);
    transform: translateY(-2px);
}

.team-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-counter .counter-list {
    text-align: center;
    margin: 0;
}

.team-details-wrap ul.team-counter .counter-list:first-child {
    margin: 0;
}

.team-counter .counter-list.match-info span,
.team-counter .counter-list .odometer-inside span {
    font-family: var(--galactic-primary-font);
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-counter .counter-list h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.team-counter .counter-list h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.team-details-wrap .rating {
    text-align: right;
}

.team-details-wrap .rating li {
    color: rgba(12, 12, 53, 0.9);
    font-size: 14px;
}

.team-details-wrap .rating-1 li:nth-child(-n+2),
.team-details-wrap .rating-2 li:nth-child(-n+3),
.team-details-wrap .rating-3 li:nth-child(-n+4),
.team-details-wrap .rating-4 li:nth-child(-n+5),
.team-details-wrap .rating-5 li:nth-child(-n+6) {
    color: #fed701;
}

.team-details-wrap .rating li:first-child {
    color: var(--galactic-white);
}

.client-logo-item img {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.client-logo-item:hover img {
    opacity: 1;
    transform: translateY(-4px);
}

@media (max-width: 580px) {

    .team-counter .counter-list.match-info span,
    .team-counter .counter-list .odometer-inside span {
        font-size: 24px;
        line-height: 28px;
    }

    .team-counter .counter-list h4 {
        font-size: 12px;
    }
}

/* Match Details */
.single-matches section.match-details-ph .page-banner-inner {
    max-width: 100%;
    padding-bottom: 62px;
}

.match-details-header {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    width: 70%;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 120px;
    margin: 0 auto;
}

.match-details-info .tournament-name:before,
.match-details-header .vs:before,
.match-details-header:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.match-details-header>div {
    display: inline-flex;
    align-items: center;
}

.match-details-header h3 {
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.5px;
    text-align: left;
    margin: 0;
    display: inline-block;
    width: 50%;
    padding-left: 70px;
    z-index: 1;
}

.match-details-header h3 a,
.match-details-header h3 a:hover {
    color: #fff;
}

.match-details-header h3.left-team {
    text-align: right;
    padding-right: 70px;
    padding-left: 0;
}

.match-details-header .vs {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 100px;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.match-details-header .vs h2 {
    margin: 0;
    font-size: 60px;
    font-weight: 600;
}

.match-details-header img {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.match-details-header img.right {
    left: auto;
    right: -60px;
}

.match-details-info .tournament-name {
    background: linear-gradient(90deg, rgba(0, 157, 255, 0.7) 0%, #009cff 50%, rgba(0, 157, 255, 0.7) 100%);
    clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
    display: inline-block;
    position: absolute;
    left: 50%;
    top: -25.5px;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 24px;
    margin: 0;
    padding: 15px 40px 12px;
    line-height: 1;
    color: #fff;
}

.match-details-info .tournament-name a,
.match-details-info .tournament-name a:hover {
    color: #fff;
}

.match-details-info .tournament-name:before {
    z-index: -1;
}

.match-details-info .tournament-name:after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.match-details-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-details {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    text-transform: capitalize;
    color: var(--galactic-white);
    font-size: 18px;
    font-weight: 600;
}

.match-details li {
    position: relative;
    padding-left: 15px;
}

.match-details li:before {
    background-color: rgb(12 12 53 / 70%);
    box-shadow: 0px 0px 0px 3px rgb(12 12 53 / 40%);
    content: "";
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Match Content Area */
.match-content-area {
    max-width: 750px;
    margin: 0 auto;
    padding-top: 60px;
}

.match-info-wrap .match-no {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    column-gap: 5px;
}

.match-info-wrap .match-no i {
    color: var(--galactic-primary-color);
    font-size: 20px;
    padding-bottom: 2px;
}

.match-info-wrap h2 {
    font-size: 36px;
    margin: 15px 0 0;
}

.match-stream-links-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    margin-top: 15px;
}

.match-stream-links-wrap .match-stream-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.match-share-wrap .share-label,
.match-stream-links-wrap .m-heading,
.match-stream-links-wrap .match-stream-links a {
    background-color: var(--galactic-primary-color);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 10px 15px;
    border-radius: 2px;
    line-height: 1;
}

.match-stream-links-wrap .match-stream-links a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.match-stream-links-wrap .match-stream-links a.twitch {
    background-color: #9146ff;
}

.match-stream-links-wrap .match-stream-links a.facebook {
    background-color: #1877f2;
}

.match-stream-links-wrap .match-stream-links a.youtube {
    background-color: #ff0000;
}

.match-stream-links-wrap .match-stream-links a.vimeo {
    background-color: #1ab7ea;
}

.match-share-wrap .share-label,
.match-stream-links-wrap .m-heading {
    background: var(--galactic-gradiant);
    clip-path: polygon(0% 0, 93% 0, 100% 50%, 93% 100%, 0% 100%, 0% 50%);
}

.match-content-area .comments-area {
    margin-top: 50px;
}

.match-content-wrap>* {
    margin-top: 30px;
}

.match-content-wrap p {
    font-size: 20px;
    line-height: 32px;
}

/* Share Buttons */
.match-share-wrap {
    margin-top: 50px;
}

.match-social-share,
.match-share-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.match-share-wrap .share-label {
    height: 40px;
    display: flex;
    align-items: center;
}

.match-social-share>div {
    background-color: rgba(152, 65, 255, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.match-social-share>div:hover {
    background-color: var(--galactic-primary-color);
    transform: translateY(-2px);
}

/* Tournament Details */
.single-tournaments .tournament-ph .page-banner-inner {
    flex-direction: column;
    padding-bottom: 62px;
}

.tournament-ph h4 {
    line-height: 1;
    margin: 0 0 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--galactic-primary-color);
    font-weight: 600;
    letter-spacing: 0;
}

.tournament-ph h1 {
    font-size: 46px;
    line-height: 1;
}

.tournament-details-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 2fr;
    align-items: center;
    grid-column-gap: 10px;
    z-index: 1;
}

.follow-links-wrap,
.tournament-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.tournament-logo-wrap img {
    width: 80px;
}

.tournament-logo-wrap h5 {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    font-weight: 700;
}

.follow-links-wrap .follow-label {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
}

.follow-links-wrap .follow-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
}

.follow-links-wrap .follow-links a {
    background-color: rgba(12, 12, 53, 0.9);
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--galactic-white);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.follow-links-wrap .follow-links a:hover {
    background-color: var(--galactic-primary-color);
    transform: translateY(-2px);
}

.tournament-info {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    list-style: none;
}

.tournament-info li {
    font-size: 15px;
    color: var(--galactic-white);
    font-weight: 500;
    line-height: 1;
}

.tournament-info li>span {
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 1;
    column-gap: 5px;
    margin-bottom: 3px;
}

.tournament-info li>span span {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    padding-top: 2px;
}

.page-content-area .section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.page-content-area .section-heading h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-content-area .section-heading h2 {
    font-size: 45px;
    line-height: 50px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.page-content-area .section-heading h2 span {
    color: var(--galactic-primary-color);
}

.page-content-area .no-result {
    text-align: center;
}

.single-tournaments .page-content-area {
    padding-top: 90px;
}

.page-content-area .tournament-section:not(:last-of-type) {
    padding-bottom: 100px;
}

/* Owl Carousel Controls */
.owl-carousel-control .owl-nav button {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    padding: inherit !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inherit;
    overflow: inherit;
    z-index: 1;
}

.owl-carousel-control .owl-nav button i {
    font-size: 50px;
    position: absolute;
    right: -17px;
    top: 1px;
    height: 100%;
    line-height: 40px;
}

.owl-carousel-control .owl-nav button.owl-next i {
    right: auto;
    left: -17px;
}

.owl-carousel-control .owl-nav button.owl-next {
    left: auto;
    right: -5px;
}

.owl-carousel-control .owl-nav button::before {
    background: transparent;
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    left: 0;
    top: 0;
    transition: all 450ms cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
}

.owl-carousel-control .owl-nav button:hover::before {
    transform: scale(1.09);
}

/* Tournament Content Area */
.tournament-content-area>* {
    margin-bottom: 20px;
}

.tournament-content-area p {
    margin-top: 0;
}

/* Stream Schedule */
.stream-ph .game-type {
    line-height: 1;
    margin: 0 0 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--galactic-primary-color);
    font-weight: 600;
    letter-spacing: 0;
}

.stream-ph .stream-date {
    color: var(--galactic-grey);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.stream-info-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 30px;
}

.stream-info-wrap .stream-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.stream-info-wrap .stream-links .stream-link-label,
.stream-info-wrap .stream-links a {
    background-color: var(--galactic-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--galactic-white);
    line-height: 1;
    text-transform: capitalize;
    column-gap: 5px;
    border-radius: 2px;
}

.stream-info-wrap .stream-links a.youtube-play {
    background-color: #ff0000;
}

.stream-info-wrap .stream-links a.vimeo {
    background-color: #1ab7ea;
}

.stream-info-wrap .stream-links a.facebook {
    background-color: #1877f2;
}

.stream-info-wrap .stream-links a.steam {
    background-color: #00adee;
}

.stream-info-wrap .stream-links a.twitch {
    background-color: #9146ff;
}

.stream-info-wrap .stream-links a.bigo-live,
.stream-info-wrap .stream-links a.bigo {
    background-color: #02c4b4;
}

.stream-info-wrap .stream-links a.afreeca {
    background-color: #4279ff;
}

.stream-info-wrap .stream-links a.gosu-gamers {
    background-color: rgb(219, 16, 27);
}

.stream-info-wrap .stream-links a.caffeine {
    background-color: rgb(3, 216, 216);
}

.stream-info-wrap .stream-links a.dlive {
    background-color: #e0bb03;
}

.stream-info-wrap .stream-links a.hltv {
    background-color: #2d6da3;
}

.stream-info-wrap .stream-links a:hover {
    transform: translateY(-2px);
}

.stream-info-wrap .stream-links .stream-link-label {
    background: var(--galactic-gradiant);
    clip-path: polygon(0% 0, 93% 0, 100% 50%, 93% 100%, 0% 100%, 0% 50%);
}

@media (min-width: 768px) {
    .tournament-ph .page-banner-inner {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .single-matches section.match-details-ph .page-banner-inner {
        padding: 120px 0 180px;
    }

    .single-tournaments .tournament-ph .page-banner-inner {
        padding-bottom: 162px;
    }

    .match-details-header {
        width: 90%;
    }

    .match-details-header .vs h2 {
        font-size: 50px;
    }

    .match-content-area {
        padding: 60px 15px 0;
    }

    .tournament-details-wrap {
        grid-template-columns: 1fr 2fr;
    }

    .follow-links-wrap {
        display: none;
    }

    .page-content-area .section-heading h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .gutenberg-content-section,
    .single-tournaments .page-content-area {
        padding-top: 70px;
    }

    .page-content-area .tournament-section:not(:last-of-type) {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {

    .match-details-header h3 {
        display: none;
    }

    .match-details-header img {
        max-width: 100px;
        left: -15px;
    }

    .match-details-header img.right {
        right: -15px;
    }

    .match-details-header .vs {
        width: 90px;
        height: 80px;
    }

    .match-details-header .vs h2 {
        font-size: 42px;
    }

    .match-details-info .tournament-name {
        width: 65%;
        text-align: center;
        font-size: 14px;
        top: calc(-45px / 2);
        padding: 15px 20px 12px;
    }

    .match-details-wrap {
        width: 98%;
    }

    .match-info-wrap h2 {
        font-size: 28px;
    }

    .single-tournaments .tournament-ph .page-banner-inner {
        padding-top: 70px;
        padding-bottom: 132px;
    }

    .tournament-ph h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .single-tournaments .tournament-ph .page-banner-inner p {
        margin-top: 10px;
    }

    .tournament-details-wrap {
        grid-template-columns: 1fr;
        position: relative;
    }

    .tournament-info {
        display: none;
    }

    .tournament-logo-wrap {
        justify-content: center;
    }

    .page-content-area .section-heading h2 {
        font-size: 24px;
        line-height: 34px;
    }

}

@media (max-width: 580px) {
    .match-details {
        font-size: 15px;
        padding-top: 18px;
    }

    .match-stream-links-wrap {
        flex-wrap: wrap;
        row-gap: 10px;
    }

}

/* Player Details */
.page-banner.player .page-banner-inner {
    padding-bottom: 60px;
}

.page-player-info .player-thumb {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    border: 15px solid rgba(152, 65, 255, 0.3);
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
}

.page-player-info .player-thumb:before {
    border: 7px solid rgba(152, 65, 255, 0.5);
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.page-player-info .player-thumb img {
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-player-info .game-type {
    color: var(--galactic-primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 10px;
    margin-bottom: 0;
}

.player-details .team-details-wrap.is-social {
    grid-template-columns: 1fr 1fr 2fr;
}

.player-details .team-details-wrap:not(.is-social) {
    grid-template-columns: 1fr 2fr;
}

.player-details .social-list {
    text-align: center;
}

.player-team {
    display: flex;
    align-items: center;
}

.player-team img {
    max-width: 80px;
    margin-right: 10px;
}

.player-team h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.player-team h3 a,
.player-team h3 a:hover {
    color: var(--galactic-white);
}

.player-team h3 a:hover {
    opacity: 0.8;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
}

.player-info li>div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.player-info li.country span {
    margin-left: 0;
}

.player-info li .flag {
    max-width: 30px;
    margin-right: 5px;
}

.player-info li i {
    font-size: 20px;
}

.player-info li span {
    font-size: 24px;
    font-weight: 600;
    color: var(--galactic-white);
    text-transform: uppercase;
    line-height: 1;
    margin-left: 5px;
    margin-top: 2px;
}

.player-info li h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--galactic-white);
    display: block;
    margin: 0;
}

/* ===== Player About ===== */
.page-content-area {
    padding-bottom: 100px;
}

.gutenberg-content-section,
.page-content-area .content-section {
    padding-top: 90px;
}

.gameplay-heading h3,
.content-section h3 {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.gameplay-heading h2,
.content-section h2 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gameplay-heading h2 span,
.content-section h2 span {
    color: var(--galactic-primary-color);
}

.content-section .signature {
    margin-top: 15px;
}

.about-team .team-content p {
    font-size: 18px;
    line-height: 32px;
}

.about-player-thumb {
    line-height: 1;
}

.about-player-thumb img {
    border-radius: 5px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}

.about-team .team-content {
    text-align: center;
}

.about-team .team-content img {
    margin-bottom: -20px;
}

@media (min-width: 992px) {
    .about-team .team-content {
        max-width: 65%;
        margin: 0 auto;
    }

    .about-team .team-content img {
        margin-bottom: -40px;
    }
}

@media (max-width: 992px) {

    .gutenberg-content-section,
    .page-content-area .content-section {
        padding-top: 70px;
    }
}

/* ===== Gameplay ===== */
.gameplay-heading {
    text-align: center;
    margin-bottom: 40px;
}

.gameplay-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
    min-height: 250px;
    border-radius: 3px;
    z-index: 1;
}

.gameplay-card:before {
    background: rgb(12, 12, 53);
    background: linear-gradient(180deg, rgba(12, 12, 53, 0) 0%, rgba(12, 12, 53, 1) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.gameplay-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.gameplay-card .play-btn {
    background: var(--galactic-primary-color);
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--galactic-white);
    -webkit-box-shadow: 0 10px 33.25px 1.75px rgb(0 27 103 / 35%);
    box-shadow: 0 10px 33.25px 1.75px rgb(0 27 103 / 35%);
}

.gameplay-card .play-btn i {
    font-size: 40px;
}

.gameplay-card .play-btn:hover {
    opacity: 0.9;
    scale: 1.02;
}

.gameplay-info {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
}

.gameplay-info .post-meta {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #f1d6c5;
    text-transform: uppercase;
}

.gameplay-info .post-meta i {
    color: var(--galactic-primary-color);
    margin-right: 5px;
}

.gameplay-info h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

@media (max-width: 992px) {

    .page-banner.player .page-banner-inner,
    .page-banner.my-club .page-banner-inner {
        padding: 60px 0 120px;
    }

    .about-player .col-row {
        flex-direction: column;
    }

    .about-player .col-row .col-item-2 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .team-details-wrap {
        grid-template-columns: 1fr;
    }

    .team-details-wrap .rating,
    .team-details-wrap .social-list {
        display: none;
    }

    .player-details .team-details-wrap.is-social,
    .player-details .team-details-wrap {
        grid-template-columns: 1fr 2fr;
    }

    .gameplay-heading h2,
    .content-section h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .page-content-area {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {

    .gutenberg-content-section,
    .page-content-area .content-section {
        padding-top: 75px;
    }

    .page-banner.player .page-banner-inner {
        padding-bottom: 160px;
        padding-top: 60px;
    }

    .player-details .team-details-wrap.is-social,
    .player-details .team-details-wrap {
        grid-template-columns: 1fr;
        padding: 20px 30px;
        height: auto;
        gap: 10px;
        margin-top: -100px;
    }

    .player-team,
    .player-info {
        justify-content: center;
    }

    .gameplay-heading h3,
    .about-player h3 {
        line-height: 1;
    }

    .gameplay-heading h2,
    .about-player h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .page-content-area {
        padding-bottom: 71px;
    }
}

/* ===== Player ===== */

.team-player .player-thumb {
    position: relative;
}

.team-player .player-thumb .shape-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: skew(-5deg);
    z-index: -1
}

.team-player .player-thumb .shape {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(0% 0%, 80% 0, 100% 10%, 100% 100%, 0 100%);
    width: 150px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    transition: all 450ms cubic-bezier(.4, 0, .2, 1);
    transition: all 0.2s ease-in-out;
}

.team-player .player-thumb .shape:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.team-player .player-thumb .shape.shape-1 {
    clip-path: polygon(0% 0%, 90% 0, 100% 10%, 100% 100%, 0 100%);
    width: 200px;
    height: 70%;
    left: 20%;
    z-index: 1;
    opacity: 0.8;
}

.team-player .player-thumb .shape.shape-2 {
    height: 100%;
    left: 30%;
    opacity: 0.7;
}

.team-player .player-thumb .shape.shape-3 {
    height: 90%;
    z-index: 2;
    opacity: 0.4;
    left: 30px;
}

.team-player .player-thumb .shape.shape-4 {
    height: 60%;
    left: 15px;
    opacity: 0.6;
}

.team-player .player-content {
    position: relative;
    margin-top: -1rem;
    padding-left: 0.75rem;
    padding-bottom: 1rem;
    z-index: 20;
}

.team-player .player-content-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    position: relative;
}

.team-player .player-content-inner .whte-shape {
    background-color: #fff;
    width: 66.666667%;
    height: 100%;
    position: absolute;
    left: -5px;
    bottom: 10px;
    border-radius: 2px;
    overflow: hidden;
    transform: skewX(-15deg);
    z-index: -1;
}

.team-player .player-content-inner .name-bg-shape {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    position: absolute;
    left: 7px;
    bottom: 0;
    z-index: -1;
}

.team-player .player-content-inner .name-bg-shape span:nth-child(1) {
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    border-radius: 2px;
    width: 75%;
    height: 100%;
    transform: skewX(-15deg);
    position: relative;
}

.team-player .player-content-inner .name-bg-shape span:nth-child(1):before {
    background-image: repeating-linear-gradient(-45deg, hsla(0, 0%, 100%, .25), hsla(0, 0%, 100%, .25) 1px, transparent 0, transparent 6px);
    background-size: 4px 4px;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.team-player .player-content-inner .name-bg-shape span:nth-child(2) {
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    border-radius: 2px;
    transform: skewX(-15deg);
    width: 18px;
    height: 100%;
}

.team-player .player-content-inner .name-bg-shape span:nth-child(3) {
    background-color: #ddd;
    transform: skewX(-15deg);
    border-radius: 2px;
    width: 18px;
    height: 100%;
}

.team-player .player-content-inner h3 {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.5px;
    padding-left: 2rem;
    z-index: 10;
    margin-bottom: 0;
    text-transform: capitalize;
}

.team-player .player-content-inner h3 a {
    color: #fff;
}

.team-player .player-content-inner h4 {
    width: 60%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1.25rem;
    bottom: -15px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    color: #0c023e;
    padding-top: 1px;
    margin-bottom: 0;
}

.team-player .player-content-inner h4:before {
    background-color: rgb(226 232 240/1);
    content: "";
    transform: skewX(-15deg);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}


@media (min-width: 767px) {
    .team-player .player-thumb .shape.shape-1 {
        height: 60%;
    }

    .team-player .player-thumb .shape.shape-2 {
        height: 90%;
    }

    .team-player .player-thumb .shape.shape-3 {
        height: 70%;
    }

    .team-player .player-thumb .shape.shape-4 {
        height: 40%;
    }

    .team-player:hover .player-thumb .shape.shape-1 {
        height: 70%;
        transition-delay: 200ms;
    }

    .team-player:hover .player-thumb .shape.shape-2 {
        height: 100%;
        transition-delay: 150ms;
    }

    .team-player:hover .player-thumb .shape.shape-3 {
        height: 90%;
        transition-delay: 100ms;
    }

    .team-player:hover .player-thumb .shape.shape-4 {
        height: 60%;
        transition-delay: 50ms;
    }
}

/* ===== Wishlist ===== */
.woocommerce table.shop_table {
    border-collapse: collapse;
}

.woocommerce table.shop_table.wishlist_table {
    margin: 0;
}

.woocommerce .wishlist-title-container {
    display: none;
}

.woocommerce .wishlist-items-wrapper .yith-wcqv-button {
    display: none;
}

.woocommerce .woocommerce-message .button {
    background: var(--galactic-gradiant);
    color: var(--galactic-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    height: 35px;
    line-height: 1;
    padding: 0 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding-top: 3px;
}

.woocommerce .woocommerce-message .button:hover {
    background: var(--galactic-gradiant);
    color: var(--galactic-white);
    transform: translateY(-2px);
}

.woocommerce a.remove {
    font-size: 20px;
    width: auto;
}

.woocommerce a.remove:hover {
    background-color: transparent;
    color: var(--galactic-dark) !important;
}

/* YTTH Wishlist Social Share */
.yith_wcwl_wishlist_footer .yith-wcwl-share {
    float: none;
    margin: 40px 0 0 0;
    text-align: left;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share .yith-wcwl-share-title {
    font-family: var(--galactic-secondary-font);
    color: var(--galactic-heading-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
}

@media (max-width: 992px) {
    .woocommerce .wishlist_table .yith-wcqv-button {
        display: none;
    }

    .wishlist_table.mobile li .item-wrapper {
        width: 100%;
    }

    .wishlist_table.mobile li:not(:last-of-type) {
        margin-bottom: 50px;
    }

    .woocommerce .wishlist_table .item-wrapper {
        text-align: center;
    }

    .wishlist_table.mobile li .item-wrapper .product-thumbnail {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .woocommerce .wishlist_table table tbody tr:nth-of-type(odd) {
        background-color: transparent;
    }

    .woocommerce .wishlist_table table tbody tr .label {
        display: none;
    }

    .wishlist_table.mobile li .additional-info-wrapper .product-remove,
    .wishlist_table.mobile li table.additional-info td.value,
    .wishlist_table.mobile li .item-details table.item-details-table td.value {
        text-align: center;
    }

    .wishlist_table.mobile li .item-details table.item-details-table td,
    .woocommerce .wishlist_table .product-name h3 a {
        font-family: var(--galactic-primary-font);
        color: var(--galactic-heading-color);
        font-size: 22px;
        font-weight: 600;
        letter-spacing: -0.5px;
    }

    .wishlist_table.mobile li table.additional-info td.value,
    .wishlist_table.mobile li .item-details table.item-details-table td {
        font-size: 16px;
        line-height: 1;
    }

    .woocommerce .wishlist_table .product-add-to-cart {
        margin: 0;
    }

    .woocommerce .wishlist_table .product-add-to-cart a {
        background-color: var(--galactic-primary-color);
        color: var(--galactic-white);
        font-family: var(--galactic-secondary-font);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0 20px;
        height: 30px;
        line-height: 30px;
        border-radius: 2px;

    }

    .yith_wcwl_wishlist_footer .yith-wcwl-share {
        text-align: center;
    }

}

/* 404 Page */
.error-404 {
    text-align: center;
}

.h-style-2 .error-404 {
    padding-top: var(--main-header-height, 71px);
}

.error-404 img {
    max-width: 400px;
}

.error-404 h1 {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 15px 0;
}

.error-404 p {
    max-width: 400px;
    margin: 0 auto 20px;
}

@media (max-width: 767px) {
    .error-404 h1 {
        font-size: 22px;
    }

    p br {
        display: none;
    }

    .error-404 img {
        max-width: 250px;
    }
}

/* No Results */
.no-results h1 {
    font-size: 36px;
    line-height: 1;
}

.no-results .page-content form,
.no-results .page-content p {
    margin-top: 20px;
}

.no-results .page-content .form-control {
    min-height: 45px;
}

/* ===== Scroll To Top ===== */
#scroll-to-top {
    height: 45px;
    width: 45px;
    background: var(--galactic-gradiant);
    clip-path: polygon(0% 0%, 73% 0, 100% 30%, 100% 100%, 0 100%);
    color: var(--galactic-white);
    font-family: var(--galactic-primary-font, 'Inter');
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    position: fixed;
    bottom: 0;
    right: 25px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}

#scroll-to-top:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#scroll-to-top.active {
    bottom: 25px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#scroll-to-top:hover {
    bottom: 28px;
}

#scroll-to-top i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}