/* 
* Main Theme Styles
* @logisko

===== Table of Contents =====
1.0 Preloader
    1.1 Default Button
    1.2 Layout
    1.3 Blog Layout
    1.4 Custom Cursor
2.0 Header
3.0 Blog Posts
    3.1 Post Grid
    3.2 Post Classic
    3.3 Blog Single
4.0 Page Header
5.0 Comment Section
6.0 Comment Form
7.0 Pagination
8.0 Projects
    8.1 Project Card
    8.2 Project Single
    8.3 Project Footer
    8.4 Related Projects
9.0 Blocks Style
    9.1 Button
    9.2 Image Cover Block
    9.3 Blockquote
    9.4 Block Gallery
    9.5 Blocks Content
10.0 Sidebar Widgets
    10.1 Search Form
    10.2 Tag Cloud
    10.3 Recent Posts
    10.4 TextWidget
    10.5 Calendar
    10.6 Image Gallery
    10.7 UI Select Menu
    10.8 Comments
    10.9 Widget RSS
    10.10 Widget Meta
11.0 Footer Widgets
12.0 Footer Area
13.0 OWL Carousel Controls
14.0 404 Page
15.0 No Results
16.0 Scroll To Top
=========== **** =========== */

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

#preloader-wrap svg {
    width: 100vw;
    height: 110vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    fill: #fff;
}

.dl-loader-text {
    font-family: var(--logisko-primary-font);
    text-align: center;
    user-select: none;
    color: transparent;
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ddd;
}

.dl-loader-text span {
    display: inline-block;
    position: relative;
}

.dl-loader-text span:before {
    position: absolute;
    top: 0;
    left: 0;
    animation: dl-text-loading 4s infinite;
    content: attr(data-text);
    opacity: 0;
    color: var(--logisko-bg-dark);
    line-height: 1;
}

.dl-loader-text span:nth-child(2):before {
    animation-delay: 0.1s;
}

.dl-loader-text span:nth-child(3):before {
    animation-delay: 0.2s;
}

.dl-loader-text span:nth-child(4):before {
    animation-delay: 0.3s;
}

.dl-loader-text span:nth-child(5):before {
    animation-delay: 0.4s;
}

.dl-loader-text span:nth-child(6):before {
    animation-delay: 0.5s;
}

.dl-loader-text span:nth-child(7):before {
    animation-delay: 0.6s;
}

.dl-loader-text span:nth-child(8):before {
    animation-delay: 0.7s;
}

.dl-loader-text span:nth-child(9):before {
    animation-delay: 0.8s;
}

.dl-loader-text span:nth-child(10):before {
    animation-delay: 0.9s;
}

@keyframes dl-text-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media (max-width: 767px) {
    .dl-loader-text {
        font-size: 42px;
    }
}

/* Preloader Spinner */
.dl-spinner {
    background-color: var(--logisko-primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: dl-scaleout 1.0s infinite ease-in-out;
    animation: dl-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes dl-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes dl-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* Custom Preloader */
.dl-custom-loader {
    max-width: 160px;
}

.dl-custom-loader img {
    margin: 0 auto;
    max-width: 100%;
    -webkit-animation: dl-preloader-fade 1.2s infinite ease-out;
    animation: dl-preloader-fade 1.2s infinite ease-out;
    animation-direction: alternate-reverse;
}

@-webkit-keyframes dl-preloader-fade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@keyframes dl-preloader-fade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

/* ===== 1.1 Default Button ===== */
.default-btn {
    background-color: var(--logisko-primary-color);
    font-family: var(--logisko-primary-font);
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    line-height: 42px;
    display: inline-block;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 0 35px;
    position: relative;
    border-radius: 2px;
    z-index: 1;
}

.default-btn.blue {
    background-color: var(--logisko-secondary-color);
}

.default-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logisko-bg-dark);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1),
        -webkit-transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
    -webkit-transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    z-index: -1;
}

.default-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.default-btn:visited,
.default-btn:hover {
    color: #fff;
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin: 0 auto;
}

/* ===== 1.2 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;
    }
}

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

.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 67%;
    flex: 0 0 67%;
    max-width: 67%;
    padding-right: 30px;
}

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

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

    .full-width:is(.style-classic),
    .page .full-width,
    .full-width.blog-style-classic {
        max-width: 800px;
        margin: 0 auto;
    }

}

@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;
    }

}

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

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

.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.4 Custom Cursor ===== */
.dl-cursor {
    display: none;
}

@media (min-width: 992px) {
    .dl-cursor {
        display: block;
        width: 10px;
        height: 10px;
        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 .5s cubic-bezier(.165, .84, .44, 1);
        transition: all .5s cubic-bezier(.165, .84, .44, 1);
    }

    .dl-cursor:before {
        background-color: var(--logisko-bg-dark);
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }

    /*Cursor Expand*/
    .dl-cursor.expand:before {
        transform: scale(5);
        transition: all 0.3s ease;
    }

    .dl-cursor.expand:after {
        font-family: "Font Awesome 6 Pro";
        color: var(--logisko-white-color);
        content: "\f065";
        font-size: 16px;
        line-height: 1;
        font-weight: 900;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .dl-cursor.expand {
        transform: scale(2);
        transition: all 0.3s ease;
    }
}

/* ===== 2.0 Header ===== */
.header-wrapper {
    --logisko-sticky-header-bg: var(--logisko-bg-white);
    background-color: var(--logisko-bg-dark);
    position: relative;
    z-index: 2;
    overflow-x: clip;
    overflow-y: visible;
}

.main-header-wrapper {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}

.site-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.site-logo img {
    max-width: 160px;
}

.main-header-items {
    position: relative;
}

.main-header-items:before {
    background-color: var(--logisko-bg-dark);
    clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
    width: 50px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.main-header-items:after {
    background-color: var(--logisko-primary-color);
    transform: skewX(23deg);
    width: 8px;
    height: 100%;
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
}

/* Sticky Header */
.sticky-header {
    display: none;
}

.header-wrapper.no-topbar .main-header-items:after,
.sticky-header .main-header-items:after {
    transform: skewX(33deg);
}

.sticky-logo {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 47%;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
}

@media (min-width: 782px) {

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

@media (min-width: 993px) {
    .sticky-header {
        background-color: var(--logisko-bg-white);
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        transform: translateY(-100%);
        z-index: 99;
    }

    .sticky-header .top-header {
        display: none;
    }

    .sticky-header.sticky-fixed-top {
        transform: translateY(0);
        box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
        transition: transform 1s ease;
        will-change: transform;
    }

    .sticky-header.sticky-fixed-top .sticky-logo {
        visibility: visible;
    }

    .sticky-header.sticky-fixed-top .is-sticky-logo {
        visibility: hidden;
    }
}

/* Top Header */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 80px;
    min-height: 40px;
}

.top-header:before {
    background-color: var(--logisko-primary-color);
    content: "";
    width: 6000px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.top-left {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.top-header-nav li a,
.top-left li a,
.top-left li {
    font-family: var(--logisko-primary-font);
    color: var(--logisko-white-color);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 5px;
    line-height: 1;
}

.top-left li svg {
    width: auto;
    height: 20px;
    margin-right: 5px;
    margin-top: -1px;
}

.top-header .top-right {
    display: inline-flex;
    align-items: center;
}

.top-header .top-header-nav {
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.top-header-nav li {
    position: relative;
}

.top-header-nav li:not(:last-of-type) {
    padding-right: 10px;
    margin-right: 10px;
}

.top-header-nav li:not(:last-of-type):before {
    background-color: #e39c20;
    width: 2px;
    height: 15px;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.header-social-share {
    display: flex;
    align-items: center;
}

.header-social-share li a {
    color: var(--logisko-white-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #b40007;
}

.header-social-share li:last-child a {
    border-right: 1px solid #b40007;
}

.header-social-share li a svg {
    width: auto;
    height: 16px;
}

.top-left li a:hover,
.top-header-nav li a:hover,
.header-social-share li a:hover {
    color: var(--logisko-dark-color);
    opacity: 0.8;
}

@media (min-width: 992px) {
    .navigation-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-left: 80px;
        min-height: 76px;
    }

    .navigation-wrap:before {
        background-color: var(--logisko-bg-white);
        width: 6000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
}

.header-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Shopping Cart */
.dl-shopping-cart-btn {
    display: flex;
    font-size: 24px;
    color: var(--logisko-dark-color);
    cursor: pointer;
    margin-right: 15px;
}

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

.dl-shopping-cart-btn svg {
    width: 25px;
    fill: var(--logisko-dark-color);
}

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

.main-menu {
    display: none;
    column-gap: 30px;
}

.navigation-inner .site-logo {
    max-width: 120px;
}

/* Header Right */
.header-wrapper .header-right a,
.header-wrapper .header-right>div {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--logisko-dark-color);
}

.header-wrapper .header-right>.dl-search-icon {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%);
    margin-top: 5px;
}

.header-wrapper .header-right a {
    font-family: var(--logisko-primary-font);
    color: var(--logisko-dark-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
}

.header-wrapper .header-right .default-btn {
    background-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    padding: 0 20px;
    line-height: 42px;
    font-size: 14px;
}


.header-wrapper .header-right .default-btn i {
    margin-right: 5px;
}

.header-wrapper .header-right .default-btn:hover {
    color: var(--logisko-white-color);
}

@media (min-width: 992px) {

    .main-menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        height: 100%;
    }

    .main-menu li {
        position: relative;
        display: flex;
        align-items: center;
        height: 76px;
    }

    .main-menu li li {
        height: 100%;
    }

    .main-menu li i.fa-solid {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .main-menu li.dropdown_menu {
        padding-right: 14px;
    }

    .main-menu li.dropdown_menu i {
        transition: all 200ms linear;
        font-size: 14px;
    }

    .main-menu li.dropdown_menu:hover i {
        transform: rotateZ(-180deg);
    }

    .main-menu li a {
        font-family: var(--logisko-primary-font);
        color: var(--logisko-dark-color);
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
        text-transform: capitalize;
    }

    .main-menu li:hover a {
        color: var(--logisko-primary-color);
    }

    .main-menu li ul {
        background-color: var(--logisko-bg-white);
        padding: 0;
        width: 220px;
        position: absolute;
        top: 100%;
        left: -28px;
        border-radius: 0;
        -webkit-transform: rotate3d(1, 0, 0, -90deg);
        transform: rotate3d(1, 0, 0, -90deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        visibility: hidden;
        opacity: 0;
        z-index: 1;
        box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
        transition: all .6s ease;
    }

    .main-menu li:nth-last-child(-n+2) ul {
        left: auto;
        right: -28px;
    }

    .main-menu li:hover ul {
        visibility: visible;
        transition: all .6s ease;
        opacity: 1;
        transform: none;
    }

    .main-menu li li {
        margin: 0;
        padding: 15px 20px;
        position: relative;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }

    .main-menu li li:before {
        background-color: #f1f4f9;
        content: "";
        width: 0;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        transition: width .5s linear;
    }

    .main-menu li li:after {
        background-color: var(--logisko-primary-color);
        width: 3px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0px;
        top: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .2s cubic-bezier(.75, 0, .175, 1);
    }

    .main-menu li li:not(:last-of-type) {
        border-bottom: 1px solid #ddd;
    }

    .main-menu li li:hover:before {
        width: 100%;
    }

    .main-menu li li:hover:after {
        visibility: visible;
        opacity: 1;
    }

    .main-menu li li a {
        font-weight: 600;
        display: block;
        color: var(--logisko-grey-color);
        line-height: 1.1;
        position: relative;
    }

    .main-menu li:hover li a {
        color: var(--logisko-grey-color);
    }

    .main-menu li:hover li a:before {
        background-color: var(--logisko-primary-color);
        content: "";
        width: 0;
        height: 2px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all .3s ease-in-out;
    }

    .main-menu li:hover li.dropdown_menu>i {
        position: absolute;
        right: 0;
        top: 10px;
        transform: rotateZ(-90deg);
    }

    .main-menu li:hover li:hover a {
        color: var(--logisko-dark-color);
        padding-left: 15px;
    }

    .main-menu li:hover li:hover a:before {
        width: 10px;
    }

    .main-menu li:hover li:hover li a {
        color: var(--logisko-grey-color);
        padding-left: 0;
    }

    .main-menu li:hover li:hover li a:hover {
        color: var(--logisko-primary-color);
        padding-left: 15px;
    }

    .main-menu li:hover li:hover li a:before {
        width: 0;
    }

    .main-menu li:hover li:hover li a:hover:before {
        width: 10px;
    }

    .main-menu li:hover li ul {
        left: 100%;
        top: 10%;
        visibility: hidden;
        opacity: 0;
        transition: all 200ms linear;
    }

    .main-menu li:hover li:hover ul {
        top: 0;
        visibility: visible;
        transition: all 200ms linear;
        opacity: 1;
    }

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

    /* Color Scheme */
    .header-color-scheme-white .sidebar-trigger,
    .header-color-scheme-white .main-menu li a {
        color: var(--logisko-white-color);
    }
}

.header-color-scheme-white .line-menu {
    background-color: var(--logisko-white-color);
}

.header-color-scheme-white .dl-shopping-cart-btn svg {
    fill: var(--logisko-white-color);
}

.header-right .mobile-menu-icon {
    background-color: var(--logisko-bg-grey);
    width: 40px;
    height: 40px;
    font-size: 20px !important;
    line-height: 1;
    color: var(--logisko-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.header-wrapper .header-right .mobile-menu-icon,
.mobile-navigation-menu {
    display: none;
}


@media (max-width: 1200px) and (min-width: 993px) {
    .main-menu {
        column-gap: 20px;
    }
}

@media (max-width: 992px) {
    .main-header-items:after {
        transform: skewX(35deg);
    }

    .top-header {
        display: none;
    }

    .navigation-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 72px;
        padding: 0;
    }

    .navigation-wrap:before {
        background-color: var(--logisko-bg-white);
        width: 3000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .site-logo img {
        max-width: 130px;
    }

    .header-wrapper .header-right .mobile-menu-icon {
        display: flex;
    }

    /* Mobile Menu */
    .navigation-menu {
        display: none;
    }

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

    .mobile-menu-icon {
        display: block;
        margin-left: auto;
    }

    .header-wrapper .mobile-menu-icon {
        margin-left: 0;
    }

    .dl-shopping-cart-btn {
        margin-right: 0;
    }

    #mobile-menu-close {
        background-color: var(--logisko-bg-grey);
        position: absolute;
        right: 30px;
        top: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
        color: var(--logisko-dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 0;
    }

    .admin-bar #mobile-menu-close {
        top: 40px;
    }

    #mobile-menu-close:hover {
        background-color: var(--logisko-primary-color);
        color: var(--logisko-white-color);
    }

    .mobile-navigation-menu {
        background-color: var(--logisko-bg-white);
        position: fixed;
        left: -100%;
        top: 0;
        width: 400px;
        height: 100vh;
        padding: 100px 0 40px;
        box-shadow: var(--logisko-shadow-sm);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all .3s linear;
        z-index: 999;
        margin: 0;
    }

    .mobile-navigation-menu>ul {
        margin: 0;
    }

    .open-mobile-menu.mobile-navigation-menu {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all .3s linear;
    }

    .mobile-navigation-menu .main-menu {
        display: block;
    }

    .mobile-navigation-menu .dropdown-plus {
        width: 100px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 3px;
        right: 38px;
        cursor: pointer;
        z-index: 1;
    }

    .mobile-navigation-menu .dropdown-plus:before,
    .mobile-navigation-menu .dropdown-plus:after {
        position: absolute;
        content: "";
        top: 21px;
        right: 10px;
        width: 10px;
        height: 2px;
        background-color: var(--logisko-bg-dark);
    }

    .mobile-navigation-menu .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .mobile-navigation-menu .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-navigation-menu ul {
        padding-left: 0;
    }

    .mobile-navigation-menu ul li {
        position: relative;
        margin: 0;
        display: block;
        padding: 0;
    }

    .mobile-navigation-menu ul li>a {
        display: block;
        padding: 10px 40px;
        font-family: var(--logisko-primary-font);
        color: var(--logisko-dark-color);
        font-size: 17px;
        line-height: 30px;
        font-weight: 700;
    }

    .mobile-navigation-menu ul li:hover>a,
    .mobile-navigation-menu li li:hover>a {
        color: var(--logisko-primary-color);
    }

    .mobile-navigation-menu ul li ul li ul,
    .mobile-navigation-menu ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
        margin: 0;
    }

    .mobile-navigation-menu li li {
        padding: 0 20px;
    }

    .mobile-navigation-menu li li {
        padding-left: 10px;
    }

    .mobile-navigation-menu li li:last-child {
        border-bottom: none;
    }

    .mobile-navigation-menu li li>a {
        color: var(--logisko-grey-color);
        font-weight: 600;
        font-size: 16px;
        padding: 5px 20px 5px 40px;
    }
}

/* Cart Flyout */
.cart-aside {
    background-color: var(--logisko-bg-white);
    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%;
}

.rtl .cart-aside {
    right: auto;
    left: 0;
    -webkit-transform: translate(-200px, 0);
    transform: translate(-200px, 0);
}

.open-cart-aside .cart-aside,
.rtl.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 {
    background-color: var(--logisko-bg-grey);
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--logisko-dark-color);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.rtl .cart-aside .aside-cart-close {
    right: auto;
    left: 0;
}

.cart-aside .aside-cart-close:hover {
    background-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    transition: all 0.3s ease-in-out;
}

.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: var(--logisko-grey-color) !important;
}

.rtl .header-quickcart .cart_list li.mini_cart_item a.remove {
    right: auto;
    left: 0;
}

.header-quickcart .cart_list li.mini_cart_item a.remove:hover {
    background-color: transparent;
    color: var(--logisko-primary-color) !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 var(--logisko-border-color);
}

.rtl .header-quickcart ul.product_list_widget li img {
    float: right;
    margin-right: 0;
    margin-left: 20px;
}

.header-quickcart .cart_list li.mini_cart_item a:nth-child(2) {
    color: var(--logisko-dark-color);
    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: var(--logisko-primary-font);
    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(--logisko-dark-color);
    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-color: var(--logisko-primary-color);
    display: block;
    margin: 0;
    height: auto;
    line-height: 1;
    padding: 15px 30px;
    text-align: center;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: var(--logisko-white-color);
    border-radius: 2px;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

/* Search Box */
#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;
}

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

#searchbox-overlay {
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: 100%;
    z-index: -1;
}

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

#popup-search-box .box-inner-wrap {
    background-color: var(--logisko-bg-white);
    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-box #popup-search-box .box-inner-wrap {
    transform: translateY(0);
}

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

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    color: var(--logisko-grey-color);
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    color: var(--logisko-grey-color);
}

#popup-search-box .box-inner-wrap input::placeholder {
    color: var(--logisko-grey-color);
}

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

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

#popup-search-box .box-inner-wrap button {
    color: var(--logisko-dark-color);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 50px;
    right: 20px;
    top: 50%;
    background: transparent;
    border: none;
    font-size: 25px;
    transition: 500ms ease all;
    transform: translateY(-50%);
}

#popup-search-box .box-inner-wrap button svg {
    height: 30px;
}

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

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

.search-close {
    color: var(--logisko-grey-color);
    font-size: 30px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

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

@media screen and (max-width: 782px) {
    .admin-bar #popup-search-box {
        top: 46px;
    }

    #popup-search-box .box-inner-wrap form {
        width: 90%;
    }
}

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

.article-inner {
    position: relative;
}

.post-items article.sticky .article-inner:before {
    background-color: var(--logisko-primary-color);
    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: 20px;
    bottom: 20px;
}

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

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

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

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

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

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

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

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-color: var(--logisko-primary-color);
    padding: 9px 20px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: var(--logisko-dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

article.related-post .post-content,
article.has-post-thumbnail .post-content {
    border-top: none;
    position: relative;
}

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

article .post-content .post-meta a {
    font-family: var(--logisko-secodary-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    color: var(--logisko-grey-color);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

article .post-content .post-meta a:hover {
    color: var(--logisko-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(--logisko-primary-color);
    font-size: 15px;
    margin-right: 5px;
    margin-top: -2px;
}

article .post-content .post-meta .author i {
    margin-top: -3px;
}

/* Date */
article .post-date {
    position: absolute;
    right: 20px;
    top: -20px;
}

article.post time {
    background-color: var(--logisko-bg-dark);
    color: var(--logisko-grey-light-color);
    height: 40px;
    display: inline-flex;
    align-items: center;
    column-gap: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 15px;
    border-radius: 2px;
    overflow: hidden;
}

article.post time span {
    background-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    font-size: 24px;
    font-weight: 600;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

article.post time.updated {
    display: none;
}

.post-items article.post:not(.has-post-thumbnail) {
    padding-top: 20px;
}

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

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

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

.rel-post-card .entry-footer .readmore,
article .entry-footer .post-comments,
article .entry-footer .readmore {
    font-family: var(--logisko-primary-font);
    color: var(--logisko-dark-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:after,
article .entry-footer .readmore:after {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 18px;
    line-height: 0;
    content: "\f178";
    top: 55%;
    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 {
    background-color: var(--logisko-bg-dark);
    content: "";
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    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(--logisko-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;
}

/* ===== 3.1 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;
}

article.classic-post .article-inner,
article.grid-post .article-inner {
    background-color: var(--logisko-white-color);
    box-shadow: var(--logisko-shadow);
}

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

article.grid-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.05) translateX(0);
    transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

article.grid-post:hover .post-thumbnail img {
    transform: scale(1.05) translateX(2%);
}

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

.classic-post .post-content {
    border: 1px solid var(--logisko-border-color);
}

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

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

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

article.grid-post .entry-footer .readmore {
    margin-top: 0;
}

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

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

article.grid-post .entry-footer .post-comments i {
    color: var(--logisko-primary-color);
    font-size: 15px;
    margin-right: 8px;
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
    article.classic-post .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;
    }
}

/* ===== 3.3 Blog Single ===== */
.single-post .post-thumb {
    min-height: 450px;
    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;
    border-radius: 2px;
}

@media (min-width: 993px) {

    .full-width .wp-block-video,
    .full-width .wp-block-image,
    .full-width .wp-block-gallery,
    .single-post .full-width .post-thumb {
        width: 120%;
        margin-left: -10%;
    }
}

/* ===== 4.0 Page Header ===== */
.post-banner,
.page-banner {
    background-color: var(--logisko-bg-grey);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.woocommerce-page .page-banner {
    height: 250px;
}

.ph-banner-bg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.ph-banner-overlay {
    background: radial-gradient(at center, var(--logisko-bg-dark), transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}

.single-dl-project .page-banner.is-info {
    padding-bottom: 40px;
}

.post-banner .container,
.page-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.post-banner {
    height: 500px;
}

.post-banner .post-banner-inner h1,
.page-banner-info h1 {
    color: var(--logisko-white-color);
    font-size: 46px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.post-banner.no-image .post-banner-inner h1,
.no-image .page-banner-info h1 {
    color: var(--logisko-dark-color);
}

.search-results .page-banner-info h1,
.archive .page-banner-info h1 {
    margin-bottom: 0;
}

.woocommerce .page-banner .page-banner-info h1 {
    margin-bottom: 0;
}

.post-banner .post-banner-inner h1 span,
.page-banner-info h1 span {
    color: var(--logisko-primary-color);
}

.page-banner-info h4 {
    background: var(--logisko-primary-color);
    font-family: var(--logisko-secodary-font);
    color: var(--logisko-white-color);
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
    padding: 0 15px;
    border-radius: 2px;
    display: inline-block;
}

.post-banner-inner p,
.page-banner-info p {
    color: #ddd;
    font-size: 17px;
    margin: 20px 0 0 0;
}

.no-image .post-banner-inner p,
.no-image .page-banner-info p {
    color: var(--logisko-grey-color);
}

/* Alignment */
.post-banner .post-banner-inner,
.page-banner .page-banner-inner {
    max-width: 50%;
}

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

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

/* Breadcrumb */
.breadcrumb-wrap {
    background-color: #fff;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    box-shadow: var(--logisko-shadow-sm);
    font-family: var(--logisko-primary-font);
    padding: 15px 30px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: -30px;

}

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

.post-banner.right .breadcrumb-wrap,
.page-banner.right .breadcrumb-wrap {
    left: 50%;
}

.post-banner .post-banner-inner .breadcrumb-wrap,
.page-banner.center .breadcrumb-wrap {
    justify-content: center;
}

.breadcrumb-wrap li {
    font-size: 18px;
    color: var(--logisko-grey-color);
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
}

.breadcrumb-wrap li:not(:last-of-type) {
    padding-right: 16px;
}

.breadcrumb-wrap li span.sep {
    background: var(--logisko-primary-color);
    width: 6px;
    height: 6px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.breadcrumb-wrap li a {
    color: var(--logisko-dark-color);
}

.breadcrumb-wrap li a:hover {
    color: var(--logisko-primary-color);
}

/* Post Meta */
.post-banner .post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-top: 25px;
}

.post-banner .post-meta .author {
    display: grid;
    grid-template-columns: 35px 1fr;
    grid-column-gap: 10px;
    align-items: center;
}

.post-banner .post-meta .author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.post-banner .post-meta a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #ddd;
}

.post-banner.no-image .post-meta a {
    color: var(--logisko-grey-color);
}

.post-banner .post-meta a i {
    color: var(--logisko-primary-color);
}

.post-banner .post-meta a:hover {
    color: var(--logisko-primary-color);
    transform: translateY(-2px);
}

.post-banner .dl-cat-items {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-bottom: 15px;
}

.post-banner .dl-cat-items a {
    background-color: var(--logisko-primary-color);
    font-family: var(--logisko-secodary-font);
    color: var(--logisko-white-color);
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0;
    padding: 7px 15px;
    line-height: 1;
    border-radius: 2px;
}

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

@media (max-width: 992px) {

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

    .page-banner.right .page-banner-inner {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .single-dl-project .page-banner.is-info {
        padding-bottom: 50px;
    }

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

    .post-banner .post-banner-inner h1,
    .page-banner-info h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .breadcrumb-wrap {
        width: 90%;
    }
}

/* ===== Post Author Box ===== */
.post-author-box {
    background-color: var(--logisko-bg-grey);
    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: var(--logisko-dark-color);
}

.post-author-box .author-info h3 a:hover {
    color: var(--logisko-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 {
    background-color: var(--logisko-bg-grey);
    color: var(--logisko-dark-color);
    border: 1px solid var(--logisko-border-color);
    border-radius: 2px;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-author-box .author-info ul li a:hover {
    background-color: var(--logisko-primary-color);
    border: 1px solid var(--logisko-primary-color);
    color: var(--logisko-white-color);
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

/* ===== 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(--logisko-primary-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--logisko-grey-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(--logisko-primary-font);
    color: var(--logisko-dark-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: 2px;
    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(--logisko-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(--logisko-white-color);
}

.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-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    font-family: var(--logisko-primary-font);
    padding: 3px 15px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    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(--logisko-primary-color);
    color: var(--logisko-white-color);
    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: var(--logisko-bg-grey);
    color: var(--logisko-dark-color);
    font-size: 15px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    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(--logisko-primary-color);
    color: var(--logisko-white-color);
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

.post-social-share>div svg {
    fill: currentColor;
    height: 15px;
    transition: all 0.3s ease-in-out;
}

.post-social-share>div:hover svg {
    color: var(--logisko-white-color);
}

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

/* ===== 5.0 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(--logisko-primary-font);
    color: var(--logisko-dark-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.3px;
}

.comment-meta .comment-author b a {
    color: var(--logisko-dark-color);
}

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

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

.comment-body .reply a,
.comment-metadata a {
    font-family: var(--logisko-secondary-font);
    color: var(--logisko-grey-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(--logisko-dark-color);
}

.comment-body .reply a:before {
    color: var(--logisko-primary-color);
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    line-height: 1;
    content: "\f122";
    font-size: 14px;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.comment-metadata a:hover,
.comment-body .reply a:hover:before,
.comment-body .reply a:hover {
    color: var(--logisko-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;
    }
}

/* ===== 6.0 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: var(--logisko-bg-grey);
    color: var(--logisko-dark-color);
    min-height: 60px;
    border-radius: 2px;
    border: none;
    box-shadow: none;
    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;
}

/* ===== 7.0 Pagination ===== */
.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(--logisko-primary-color);
}

.navigation.pagination .nav-links span.page-numbers.current,
.navigation.pagination .nav-links a {
    background-color: var(--logisko-bg-grey);
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 17px;
    color: var(--logisko-dark-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(--logisko-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: 20px;
}

.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(--logisko-primary-color);
}

/* ===== 8.0 Projects ===== */
.project-items {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.project-items .project-card {
    flex: 0 0 auto;
    width: 100%;
    padding: 15px;
}

@media (min-width: 767px) {

    .full-width .project-items .project-card,
    .project-items .project-card {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .project-items .project-card {
        width: 50%;
    }

    .full-width .project-items .project-card {
        width: 33.33333333%;
    }
}

/* ===== 8.1 Project Card ===== */
.project-card-inner .project-thumb {
    width: 100%;
    height: 300px;
    position: relative;
}

.project-card-inner .project-content {
    background-color: var(--logisko-bg-white);
    padding: 20px 30px;
    margin: 0 10px;
    margin-top: -20px;
    position: relative;
    box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
}

.project-card-inner .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-card-inner .project-content .project-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--logisko-dark-color);
    letter-spacing: 0px;
}

.project-card-inner .project-content .project-title a {
    color: var(--logisko-dark-color);
}

.project-card-inner .project-content .project-title a:hover {
    color: var(--logisko-primary-color);
}

.project-card-inner .project-content .project-cat {
    background-color: var(--logisko-primary-color);
    padding: 10px 15px;
    font-family: var(--logisko-primary-font);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    left: 30px;
    top: -20px;
    z-index: 1;
}

.project-card-inner .project-content .project-cat:before {
    background-color: #cc0b12;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    content: "";
    width: 10px;
    height: 20px;
    position: absolute;
    left: -10px;
    top: 0;
    z-index: -1;
}

/* ===== 8.2 Project Single ===== */
.project-banner-image {
    margin-bottom: 50px;
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
}

.project-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media(min-width: 993px) {

    .project-container .wp-block-video,
    .project-container .wp-block-gallery,
    .project-container .wp-block-image {
        width: 120%;
        margin-left: -10%;
    }
}

@media (max-width: 767px) {
    .project-thumb img {
        height: 350px;
    }
}

/* Project Content Inner */
.project-content-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.project-content-inner .wp-block-heading:first-child {
    margin-top: 0;
}

.project-info-inner {
    background-color: var(--logisko-bg-grey);
    padding: 50px 40px;
    border-radius: 2px;
    border-top: 4px solid var(--logisko-primary-color);
}

.project-info-inner h3 {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: var(--logisko-dark-color);
    margin-bottom: 30px;
    position: relative;
}

.project-info-inner .p-info-title {
    padding-bottom: 20px;
}

.project-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.project-info-item p,
.project-info-item h3 {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: var(--logisko-dark-color);
    margin: 0 0 10px;
}

.project-info-item p {
    margin: 0;
    font-weight: 500;
    color: var(--logisko-grey-color);
}

.project-info-inner .post-social-share {
    justify-content: flex-start;
    margin-top: 30px;
}

.project-info-inner .post-social-share>div {
    background-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
}

.project-info-inner .post-social-share>div:hover {
    background-color: var(--logisko-bg-dark);
    color: var(--logisko-white-color);
}

@media (max-width: 992px) {
    .project-content-inner {
        grid-template-columns: 1fr;
    }
}

.project-img-wrap {
    margin-top: 40px;
}

.project-img-wrap img {
    width: 100%;
}

@media (min-width: 993px) {
    .project-img-wrap {
        position: sticky;
        top: 140px;
    }
}

/* ===== 8.3 Project Footer ===== */
.project-footer {
    margin-top: 50px;
}

.project-footer .post-navigation .nav-links {
    grid-template-columns: 1fr 30px 1fr;
    grid-column-gap: 15px;
}

.project-footer .post-navigation .nav-links .all-projects {
    text-align: center;
}

.project-footer .post-navigation .nav-links .all-projects a {
    display: block;
    line-height: 1;
}

.project-footer .post-navigation .nav-links .all-projects a:hover {
    fill: var(--logisko-primary-color);
}

/* ===== 8.4 Related Projects ===== */
.related-projects-wrap {
    background-color: var(--logisko-bg-grey);
    padding: 80px 0;
}

.rel-project-head {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.rel-project-head .rel-heading {
    max-width: 500px;
}

.rel-project-head .rel-title {
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    margin: 0;
}

.rel-project-head .rel-desc {
    display: block;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .rel-project-head {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .rel-project-head .rel-heading {
        max-width: 100%;
    }

    .rel-project-head .rel-title {
        font-size: 32px;
        line-height: 42px;
    }
}

.related-project-carousel.owl-carousel .owl-stage-outer {
    overflow: inherit;
    overflow-x: clip;
    overflow-y: visible;
}

/* Related Projects Column */
.related-project-column {
    --logisko-rel-project-col: 4;
    display: grid;
    grid-template-columns: repeat(var(--logisko-rel-project-col, 4), 1fr);
    grid-gap: 30px;
}

@media (max-width: 992px) {
    .related-project-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 667px) {
    .related-project-column {
        grid-template-columns: 1fr;
    }
}

.related-project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.related-project-carousel .owl-dots .owl-dot {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: #ddd;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 1;
    transition: all .6s cubic-bezier(.75, 0, .175, 1);
}

.related-project-carousel .owl-dots .owl-dot.active {
    background-color: var(--logisko-primary-color);
    box-shadow: 0px 0px 0px 3px rgba(255, 170, 23, 0.5);
    transition: all .6s cubic-bezier(.75, 0, .175, 1);
}

.related-project-carousel .owl-dots .owl-dot:hover {
    transform: translateY(0px);
}

/* ===== Project Comment ===== */
.project-comments {
    padding: 72px 0 80px;
    border-top: 1px solid var(--logisko-border-color);
}

@media (min-width: 992px) {
    .project-head {
        grid-template-columns: 1fr 350px;
    }

    .project-head .project-thumb {
        min-height: auto;
    }

    .project-footer .post-navigation .nav-links {
        grid-template-columns: 1fr 60px 1fr;
        grid-column-gap: 30px;
    }

    .related-projects-wrap {
        padding: 100px 0;
    }

    .project-comments {
        padding: 92px 0 100px;
    }
}

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

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

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

.wp-block-button:not(.is-style-squared, .is-style-outline) .wp-block-button__link {
    border-radius: 30px;
}

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

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

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    border-width: 2px;
    border-style: solid;
}

.wp-block-group.has-background {
    padding: 30px;
}

.wp-block-column p:first-child,
.wp-block-group p:first-child {
    margin-top: 0;
}

.wp-block-column.has-background {
    padding: 15px;
}

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

/* ===== 9.3 Blockquote ===== */
.wp-block-quote,
blockquote.is-style-default {
    background-color: var(--logisko-bg-grey);
    border-left: 4px solid var(--logisko-primary-color);
    padding: 40px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 2px;
    position: relative;
}

.wp-block-quote:before,
blockquote.is-style-default:before {
    color: var(--logisko-primary-color);
    font-family: "Font Awesome 6 Sharp";
    content: "\f10e";
    position: absolute;
    right: 30px;
    top: -10px;
    font-size: 50px;
    font-weight: 400;
}

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

blockquote.wp-block-quote p,
blockquote.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(--logisko-primary-font);
    color: var(--logisko-dark-color);
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    margin: 0;
}

blockquote cite {
    font-family: var(--logisko-primary-font);
    font-size: 16px;
    color: var(--logisko-grey-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-color: var(--logisko-bg-grey);
    padding: 40px;
}

blockquote p {
    margin: 0;
}

/* ===== 9.4 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);
    }
}

/* ===== 9.5 Blocks Content 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 p {
    font-size: 18px;
    line-height: 32px;
}

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

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

.content-area .wp-block-column figure {
    margin: 0;
}

.content-area .wp-block-column figure:not(:first-of-type) {
    margin-bottom: 15px;
}

.content-area .wp-block-column .wp-block-heading {
    margin: 0;
}

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

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

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

.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(--logisko-primary-color);
    content: "";
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 5px;
    border-radius: 2px;
}

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

.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(--logisko-primary-font);
    color: var(--logisko-grey-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(--logisko-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: var(--logisko-bg-light-color)
}

.rel-post-card .post-thumb {
    position: relative;
    width: 100%;
    height: 250px;
    min-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(--logisko-primary-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    color: var(--logisko-grey-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(--logisko-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(--logisko-primary-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

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

/* ===== 10.0 Sidebar Widgets ===== */
.widget-area .widget {
    background-color: var(--logisko-bg-grey);
    padding: 30px;
    border-radius: 2px;
}

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

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

.dark .widget .widget-title {
    color: var(--logisko-white-color);
}

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

.project-info-inner .p-info-title:before,
.widget .widget-title:before {
    width: 15px;
}

.project-info-inner .p-info-title:after,
.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: 15px;
}

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

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

/* ===== 10.1 Search Form ===== */
.widget-area .widget.widget_search {
    padding: 0;
}

.widget-area .widget.widget_search .widget-title {
    display: none;
}

.widget_search .search-form {
    width: 100%;
    position: relative;
}

.widget_search .search-form .form-control {
    background-color: var(--logisko-bg-white);
    border: none;
    width: 100%;
    height: 60px;
    padding: 0 65px 0 15px;
    color: var(--logisko-grey-color);
    font-size: 17px;
}

.widget-area .widget_search .search-form .form-control {
    background-color: var(--logisko-bg-grey);
}

.widget_search .search-btn {
    background-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    font-size: 25px;
    width: 50px;
    height: 45px;
    padding: 0;
    position: absolute;
    right: 7.5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    opacity: 1;
}

.widget_search .search-btn i {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%);
    margin-top: 2px;
}

.widget_search .search-btn svg {
    height: 30px;
}

.widget_search .search-btn:hover {
    background-color: var(--logisko-bg-dark);
    color: var(--logisko-white-color);
}

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


.dark .widget_search .search-form .form-control {
    background-color: var(--logisko-white-color);
    color: var(--logisko-grey-color);
}

/* ===== 10.2 Tag Cloud ===== */
.widget .tagcloud a {
    background-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    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(--logisko-bg-dark);
    color: var(--logisko-white-color);
    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;
}

/* ===== 10.3 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(--logisko-primary-font);
    color: var(--logisko-dark-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(--logisko-primary-color);
    text-decoration: underline;
}

.widget.widget_recent_entries ul li span {
    font-family: var(--logisko-secondary-font);
    color: var(--logisko-grey-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;
}

.dark .widget.widget_recent_entries ul li a {
    color: var(--logisko-grey-light-color);
}

.dark .widget.widget_recent_entries ul li a:hover {
    color: var(--logisko-primary-color);
}

/* ===== 10.2 Categories ===== */

.footer-widget-item .widget.widget_nav_menu a,
.widget.widget_categories a {
    font-family: var(--logisko-primary-font);
    color: var(--logisko-dark-color);
    font-weight: 500;
    position: relative;
    padding-left: 15px;
    line-height: 1;
}

.footer-widget-item .widget.widget_nav_menu a:before,
.widget.widget_categories a:before {
    color: var(--logisko-primary-color);
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    content: '\f101';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== 10.4 Banner ===== */
.widget-area .widget.widget_media_image {
    padding: 0;
}

.widget-area .widget.widget_media_image img {
    border-radius: 2px;
    display: block;
}

/* ===== 10.4 TextWidget ===== */
.textwidget>* {
    margin-top: 15px;
}

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

.textwidget p strong {
    font-family: var(--logisko-primary-font);
    color: var(--logisko-dark-color);
    font-size: 18px;
    line-height: 1.2;
    display: block;
}

.dark .textwidget,
.dark .textwidget p {
    color: var(--logisko-grey-light-color);
}

.dark .textwidget p strong {
    color: var(--logisko-white-color);
}

.dark .textwidget .wp-caption .wp-caption-text {
    background-color: var(--logisko-white-color);
    color: var(--logisko-grey-color);
}

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

.dark .calendar_wrap .wp-calendar-nav span a,
.dark .widget_calendar .wp-calendar-table caption {
    color: var(--logisko-white-color);
}

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

.widget_calendar .wp-calendar-table #today {
    color: var(--logisko-primary-color);
}

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

.wp-calendar-table tbody tr td {
    color: var(--logisko-grey-color);
}

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

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

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

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

/* ===== 10.6 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 ===== */
.ui-selectmenu-button.ui-button {
    background-color: var(--logisko-bg-white);
    width: 100%;
    padding: 18px 15px;
    border-radius: 2px;
    border: 1px solid var(--logisko-border-color);
    outline: none;
    box-shadow: none;
}

.ui-widget.ui-widget-content {
    background-color: var(--logisko-bg-white);
    border: none;
}

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

.ui-menu .ui-menu-item-wrapper {
    font-family: var(--logisko-secondary-font);
    color: var(--logisko-grey-color);
    font-size: 16px;
    font-weight: 400;
    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: var(--logisko-bg-white);
    color: var(--logisko-primary-color);
    border: 1px solid var(--logisko-border-color);
    outline: none;
    box-shadow: none;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: 0;
}

.dark .ui-selectmenu-button.ui-button {
    background-color: var(--logisko-white-color);
    border: none;
}

.dark .ui-selectmenu-text {
    color: var(--logisko-grey-color);
}

.woocommerce-checkout .ui-state-active,
.woocommerce-checkout .ui-widget-content .ui-state-active,
.ui-button:active,
a.ui-button:active {
    border: 1px solid var(--logisko-border-color);
}

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

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

.recentcomments>a {
    color: var(--logisko-grey-color);
}

/* ===== 10.9 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;
}

.dark .widget_rss .widget-title a {
    color: var(--logisko-white-color);
}

.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-family: var(--logisko-primary-font);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--logisko-dark-color);
    letter-spacing: -0.2px;
    display: block;
}

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

.dark .widget_rss .rsswidget {
    color: var(--logisko-white-color);
}

.dark .widget_rss .rsswidget:hover {
    color: var(--logisko-primary-color);
}

.dark .widget_rss .rss-date {
    color: var(--logisko-grey-light-color);
}

/* ===== 10.10 Widget Meta ===== */
.widget_meta ul li a {
    color: var(--logisko-grey-color);
}

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

/* ===== 11.0 Footer Widgets ===== */
.footer-wrapper {
    background-color: var(--logisko-bg-white);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.footer-pattern {
    background-image: url(../img/footer-map.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
    z-index: -1;
}

.footer-overlay {
    background-color: var(--logisko-bg-dark);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
    z-index: -1;
}

/* Dark Footer */
.footer-wrapper.dark {
    background-color: var(--logisko-bg-dark);
}

.dark .widget.widget_categories a {
    color: var(--logisko-grey-light-color);
}

.dark .widget,
.dark ul li a {
    color: var(--logisko-grey-light-color);
}

.dark ul li a:hover {
    color: var(--logisko-primary-color);
}

.footer-widgets-area {
    background-image: url(../img/footer-shape.png);
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: contain;
    width: 100%;
    padding: 100px 0 150px;
    position: relative;
}

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

/* ===== 11.0 Footer Truck Animation ===== */
.running-truck {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.running-truck .truck {
    background-image: url(../img/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 128px;
    height: 60px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
}

.running-truck .truck-2 {
    background-image: url(../img/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 118px;
    height: 60px;
    left: 30%;
    bottom: 0;
    animation: running-anim-left 30s linear infinite;
}

.running-truck .truck-3 {
    background-image: url(../img/truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 184px;
    height: 60px;
    right: 70%;
    bottom: 0;
    animation: running-anim 35s linear infinite;
}

@keyframes running-anim {
    0% {
        right: -30%;
    }

    100% {
        right: 100%;
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 992px) {

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

/* ===== 12.0 Footer Area ===== */
.copyright-area {
    background-color: var(--logisko-bg-dark);
}

.copyright-area .copyright-inner {
    color: var(--logisko-grey-light-color);
    font-size: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 10px;
}

.dark .copyright-area .copyright-inner {
    background-color: var(--logisko-bg-dark);
    color: var(--logisko-grey-light-color);
}

.copyright-area.no-footer-menu .copyright-inner {
    justify-content: center;
}

.copyright-area .site-info a {
    color: var(--logisko-primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.dark .copyright-area .site-info a {
    color: var(--logisko-primary-color);
}

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

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 5px;
}

.footer-menu li:not(:last-of-type)::after {
    content: "/";
    margin-left: 15px;
}

@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: 992px) {
    .copyright-area .copyright-inner {
        padding: 35px;
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
        column-gap: 10px;
    }

    .footer-menu li:not(:last-of-type)::after {
        margin-left: 10px;
    }
}

/* ===== 13.0 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);
}

/* ===== 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-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    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-color: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    transform: translateY(-2px);
}

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

.woocommerce a.remove:hover {
    background-color: transparent;
    color: var(--logisko-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(--logisko-secondary-font);
    color: var(--logisko-dark-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(--logisko-primary-font);
        color: var(--logisko-dark-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(--logisko-primary-color);
        color: var(--logisko-white-color);
        font-family: var(--logisko-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;
    }

}

/* ===== 14.0 404 Page ===== */
.error-page-wrap {
    background-color: var(--logisko-bg-grey);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 130px;
}

.error-404 {
    text-align: center;
}

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

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

.error-404 h1 {
    color: var(--logisko-dark-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin: 15px 0;
}

.error-404 p {
    max-width: 450px;
    margin: 0 auto 20px;
    color: var(--logisko-grey-color);
}

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

    p br {
        display: none;
    }

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

/* ===== 15.0 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 {
    background: var(--logisko-primary-color);
    color: var(--logisko-white-color);
    font-family: var(--logisko-primary-font);
    box-shadow: var(--logisko-shadow);
    height: 45px;
    width: 45px;
    font-size: 20px;
    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.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;
    box-shadow: var(--logisko-shadow-lg);
}

@-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)
    }
}