@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/webfonts/fa-solid-900.woff2") format("woff2");
}

:root {
    --main-color: #f7e90c;
    --second-color: #192a2e;
    --bg-color: #252628;
    --text-color: #64666C;
    --light-color: #f6efe7;
    --border-color: #bcbcd6;
    --extra-color: #bf0304;
    --success-color: #0bc20b;
    --error-color: #ce2f2f;
    --border-radius: 8px;
    --form-height: 50px;
    /* Arxa fonlar */
    --color-background-primary: #ffffff;
    /* kart, modal */
    --color-background-secondary: #f0eeeb;
    /* hover, şərh bölməsi */
    --color-background-tertiary: #e8e6e1;
    /* səhifə fonu */

    /* Mətnlər */
    --color-text-primary: #1a1a1a;
    /* əsas mətn */
    --color-text-secondary: #6b6b6b;
    /* ikinci dərəcəli mətn */
    --color-text-tertiary: #a0a0a0;
    /* placeholder */

    /* Sərhədlər */
    --color-border-tertiary: rgba(0, 0, 0, 0.12);
    /* əsas kart kənarı */
    --color-border-secondary: rgba(0, 0, 0, 0.25);
    /* vurğulanan kənar */
    --color-border-primary: rgba(0, 0, 0, 0.35);
    /* güclü kənar */
    --font-family: 'Inter', Arial, Helvetica, sans-serif;

    --border-radius-md: 8px;
    /* düymələr, inputlar */
    --border-radius-lg: 12px;
    /* kartlar, modallar */
    --border-radius-xl: 16px;
    /* böyük elementlər */
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.3;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    width: 100%;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--font-family);
    position: relative;
    margin: 0;
    padding: 86px 0 0;
}

#outer-wrap {
    overflow: hidden;
}

.full-width {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}

.container,
.has-sidebar #content-wrap {
    width: 1300px;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    z-index: 1;
}

.main-container {
    padding: 0 40px;
}

@media (max-width: 1300px) {
    .main-container {
        padding: 0;
        max-width: 90%;
        margin: 0 auto;
    }
}

ul,
ol {
    margin: 0 0 20px 30px;
    padding: 0;
}

button {
    padding: 0;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family);
    transition: .15s all;
}

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

*:focus {
    outline: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

p {
    margin: 0 0 15px;
}

a,
:visited {
    color: black;
    text-decoration: none;
    transition: .15s all;
}

iframe {
    border: 0;
    max-width: 100%;
}

#main {
    z-index: 10;
    position: relative;
}

@media (max-width: 960px) {
    #content-wrap {
        overflow: hidden;
    }
}

@media (max-width: 550px) {
    .guest-user #content-wrap {
        padding: 15px;
    }

    .logged-in #content-wrap {
        padding: 0;
    }
}


/* Layout */
.right-sidebar #content-wrap,
.left-sidebar #content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-sidebar #primary {
    width: calc(100% - 360px);
}

.left-sidebar #primary {
    width: calc(100% - 360px);
}

.has-sidebar #sidebar {
    width: 300px;
    padding-bottom: 60px;
}

.right-sidebar #sidebar {
    order: 2;
}

@media (max-width: 960px) {

    .has-sidebar #primary,
    .has-sidebar #sidebar {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    #primary {
        order: 1;
    }

    #sidebar {
        order: 2;
    }
}


/* Header */
#site-header {
    position: fixed;
    z-index: 100;
    background: white;
    top: 0;
    width: 100%;
    left: 0;
    height: 86px;
}

#site-header-inner {
    position: relative;
}

.master-header-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 86px;
}

#site-logo {
    width: 144px;
}

#site-logo img {
    object-fit: contain;
    filter: invert(1);
}

#site-navigation-wrap {
    width: calc(100% - 190px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#site-navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#site-navigation-wrap .master-main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

#site-navigation-wrap .master-main-menu>.menu-item {
    position: relative;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#site-navigation-wrap .master-main-menu>.menu-item>a {
    white-space: nowrap;
    display: block;
    position: relative;
    font-weight: 500;
    transition: .3s all;
}

#site-navigation-wrap .master-main-menu>.menu-item>a:hover {
    opacity: .5;
}

#site-navigation-wrap .master-main-menu>.menu-item-has-children>a:after {
    content: "\e92e";
    font-family: Feather;
    font-size: 17px;
    margin-left: 5px;
    margin-right: -10px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-weight: 600;
    color: #bbb;
    transition: .3s all;
}

#site-navigation-wrap .sub-menu,
#header-aside .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    list-style: none;
    padding: 10px;
    border-bottom: 0;
    z-index: 10;
    min-width: 160px;
    border-radius: var(--border-radius);
    border: 1px solid var(--text-color);
    background: white;
}

#site-navigation-wrap .menu-item-has-children:hover>.sub-menu {
    display: block;
}

#site-navigation-wrap .master-main-menu .sub-menu li {
    margin: 0 0 5px;
    position: relative;
}

#site-navigation-wrap .master-main-menu .sub-menu li:last-child {
    margin-bottom: 0;
}

#site-navigation-wrap .sub-menu a {
    padding: 10px 22px;
    display: block;
    height: auto;
    white-space: nowrap;
    font-weight: 500;
    border-radius: var(--border-radius);
}

#site-navigation-wrap .sub-menu a:hover {
    background: #ddd;
}

#site-navigation-wrap .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    padding: 5px 0;
}

#site-navigation-wrap .sub-menu .menu-item-has-children>a:after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-50%);
}

#site-navigation-wrap .sub-menu .menu-item-has-children>a {
    padding-right: 30px;
    position: relative;
}

#header-aside {
    display: flex;
    justify-content: flex-end;
}

#mobile-sidebar-menu,
.mobile-menu-area {
    display: none;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1300px) {
    #site-navigation-wrap .master-main-menu>.menu-item>a {
        padding: 10px 12px;
    }
}

@media (max-width: 1130px) {
    #site-navigation-wrap .master-main-menu {
        gap: 10px;
    }

    .header-buttons .button {
        padding: 0 15px;
    }
}

@media (max-width: 1000px) {
    #site-navigation-wrap {
        width: calc(100% - 160px);
    }

    #site-navigation-wrap .master-main-menu {
        gap: 0;
    }

    #site-navigation-wrap .master-main-menu>.menu-item>a,
    .header-buttons .button {
        font-size: 14px;
    }

    .header-logout-button a {
        gap: 0;
    }

    .header-logout-button a span {
        font-size: 0;
    }
}

.mobile-header-login-btn {
    display: none;
}

@media (max-width: 850px) {
    #site-navigation-wrap {
        display: none;
    }

    #mobile-sidebar-menu,
    .mobile-menu-area {
        display: block;
    }

    #site-header {
        position: static;
        height: auto;
    }

    #site-header.fixed-site-header {
        position: static;
    }

    body {
        padding-top: 0;
    }

    #site-logo {
        margin: 0;
        display: table;
    }

    .master-header-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mobile-header-login-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: var(--main-color, #ff5722);
        color: #000 !important;
        font-size: 13px;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-header-login-btn i {
        font-size: 15px;
    }
}

@media (max-width: 700px) {

    .header-button>a {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    #site-logo {
        display: none;
    }

    .master-header-area {
        justify-content: flex-end;
    }
}

@keyframes header {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);
    }
}



/* Mobile menu */
#mobile-sidebar-menu {
    width: 20px;
    cursor: pointer;
    position: absolute;
    left: 25px;
}

.mobil-menu-line-icon span {
    width: 20px;
    height: 2px;
    margin-bottom: 3px;
    background: black;
    display: block;
}

.mobil-menu-line-icon span:last-child {
    margin-bottom: 0;
}

.mobile-menu-area {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 90%;
    background: #fff;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    transform: translate3d(100%, 0, 0);
    transition: .3s all;
}

.mobile-menu-area * {
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close {
    color: var(--black-color);
    font-size: 26px;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 30px;
}

.mobile-menu-close-icon {
    cursor: pointer;
}

.mobile-menu-container {
    padding: 0 40px 80px;
    transform: translateX(60px);
    opacity: 0;
    transition: .6s all;
}

.animated-mobile-menu-container {
    transform: translateX(0);
    opacity: 1;
    transition-delay: .1s;
}

.active-mobile-menu {
    transform: none;
}

.mobile-menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-area a {
    font-size: 18px;
    position: relative;
    color: var(--black-color);
    padding: 8px 0;
    display: inline-block;
    font-weight: 500;
    line-height: 1.3;
}

.mobile-menu-area .menu-item-has-children>a:after {
    content: "\e92e";
    font-family: Feather;
    margin-left: 7px;
    font-size: 17px;
}

.mobile-menu-area .sub-menu {
    position: relative;
}

.mobile-menu-area .menu-item-has-children {
    margin-top: 15px;
}

.mobile-menu-area .menu-item-has-children>a {
    color: #999;
    pointer-events: none;
}

.mobile-menu-area a:hover {
    opacity: .4;
}

.mobile-search-area {
    position: relative;
    padding: 0 30px;
    margin-bottom: 40px;
}

#mobile-search {
    position: relative;
}

.mobile-search-area input[type=text] {
    width: 100%;
    border: 0;
    height: 46px;
    font-size: 15px;
    padding: 0 20px;
    background: #191919;
    color: white;
    border-radius: 30px;
}

.mobile-search-area input::-webkit-input-placeholder {
    opacity: 1;
}

.mobile-search-area button {
    position: absolute;
    top: 0;
    right: 2px;
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 600;
}

.master-overlay {
    position: fixed;
    width: 100%;
    height: calc(100% + 80px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
}


/* Page header */
#page-header {
    padding: 15px 0;
    margin: 0 25px;
    border-bottom: 1px solid rgb(0 0 0 / 11%);
    position: fixed;
    top: 0;
    width: calc(100% - 300px);
    background: var(--light-color);
    z-index: 10;
}

.page-header-blocks {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-header-block strong {
    color: var(--main-color);
}

.notify-button {
    display: flex;
    align-items: center;
    border: 1px solid;
    border-radius: var(--border-radius);
    padding: 5px 10px;
    position: relative;
    gap: 5px;
    cursor: pointer;
}

.notify-icon {
    font-size: 15px;
}

.notify-count {
    position: absolute;
    width: 20px;
    height: 20px;
    background: red;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    top: -8px;
    right: -8px;
}

.page-header-logo {
    width: 100px;
}

.page-header-title {
    line-height: 1.3;
}

@media (min-width: 960px) {
    .page-header-logo-block {
        display: none;
    }
}

@media (max-width: 960px) {
    #page-header {
        width: calc(100% - 50px);
    }
}

@media (max-width: 767px) {
    .notify-button-text {
        display: none;
    }

    .notify-button {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 550px) {
    #page-header {
        margin: 0;
        padding: 14px 20px;
        border: 0;
        width: 100%;
    }

    .page-header-title {
        display: none;
    }
}


/* Collapse */
.collapse-mode #site-header {
    width: 80px;
}

.collapse-mode #main {
    width: calc(100% - 80px);
}

.collapse-mode #site-navigation .menu-item .menu-text {
    font-size: 0;
}

.collapse-mode #site-navigation .menu-item {
    margin-bottom: 5px;
}

.collapse-mode #site-navigation .menu-item a i {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .5;
    color: var(--main-color);
    font-size: 20px;
}

.collapse-mode #site-navigation .menu-item a:hover i,
.collapse-mode #site-navigation .current-menu-item a i {
    opacity: 1;
}

.collapse-mode #site-navigation .menu-block {
    margin-bottom: 0;
}

.collapse-mode #site-navigation .menu-heading {
    display: none;
}

.collapse-mode .collapse-tool {
    transform: rotate(180deg);
}

.collapse-mode #site-navigation .menu-item a::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: calc(100% - 15px);
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    font-size: 14px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.collapse-mode #site-navigation .menu-item a:hover::after {
    opacity: 1;
    transform: translate(8px, -50%);
    /* bir az kənara sürüşsün */
}

.collapse-mode #page-header {
    width: calc(100% - 130px);
}



/* Index */
.master-posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

.master-post {
    width: 33.3%;
    padding: 0 15px 30px;
}

.master-post-inner {
    display: block;
}

.master-post-inner img {
    transition: .3s all;
}

.master-post-inner:hover img {
    transform: scale(1.1);
}

.master-post-thumbnail {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.master-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s all;
}

.master-post-thumbnail a:hover .master-post-overlay {
    opacity: .3;
}

.master-post-details {
    padding: 15px 0 0;
}

.master-post-title {
    margin-bottom: 15px;
    color: var(--main-color);
    font-size: 20px;
    line-height: 1.4;
}

.master-post-date {
    position: absolute;
    background: white;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    top: 20px;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}

.master-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    word-break: break-words;
}

.master-post-button a {
    display: table;
}

@media (max-width: 500px) {
    .master-post {
        width: 100%;
    }
}

@media (min-width: 501px) and (max-width: 999px) {
    .master-post {
        width: 50%;
    }
}


/* Footer */
/* ================================================================
   FOOTER
   ================================================================ */

#footer {
    background-color: #111;
    color: #888;
    font-size: 14.5px;
}

.footer-blocks {
    display: flex;
    gap: 0 48px;
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-block {
    flex: 1;
}

.footer-block-brand {
    flex: 1.4;
}

.footer-blocks .footer-block:last-child {
    flex: 1.2;
}

/* Logo & brand */
.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    max-height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-site-name {
    font-size: 20px;
    font-weight: 700;
    color: #e5e5e5;
    letter-spacing: -.3px;
}

.footer-desc {
    line-height: 1.75;
    color: #888;
    margin: 0 0 20px;
}

/* Social icons */
.footer-social .social-networks-area {
    margin-top: 4px;
}

.footer-social .social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social .social-network-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #aaa;
    font-size: 15px;
    transition: background .2s, color .2s, transform .2s;
}

.footer-social .social-network-item a:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Section heading */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

/* Quick links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    text-decoration: none;
    transition: color .2s, gap .2s;
}

.footer-links a i {
    font-size: 14px;
    color: #555;
    flex-shrink: 0;
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
    gap: 12px;
}

.footer-links a:hover i {
    color: var(--main-color);
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--main-color);
    font-size: 15px;
    margin-top: 1px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #555;
    font-weight: 600;
}

.footer-contact-info a {
    color: #aaa;
    text-decoration: none;
    font-size: 14.5px;
    transition: color .2s;
}

.footer-contact-info a:hover {
    color: #fff;
}

/* Search form */
.footer-search-form {
    margin-top: 4px;
}

.footer-search-wrap {
    position: relative;
}

.footer-search-wrap input {
    width: 100%;
    height: 44px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    color: #fff !important;
    font-size: 14px;
    padding: 0 48px 0 16px;
    outline: none;
    transition: border-color .2s, background .2s;
}

.footer-search-wrap input::placeholder {
    color: #4d6070;
}

.footer-search-wrap input:focus {
    border-color: var(--main-color);
    background: rgba(255, 255, 255, .09);
}

.footer-search-wrap button {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #5a7a96;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.footer-search-wrap button:hover {
    color: var(--main-color);
}

/* Footer bottom */
#footer-bottom {
    padding: 22px 0;
}

#footer-bottom,
#footer-bottom a {
    color: #555;
    font-size: 13.5px;
}

#footer-bottom a:hover {
    color: #aaa;
}

.mfb-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-blocks {
        flex-wrap: wrap;
        gap: 40px 48px;
        padding-bottom: 40px;
    }

    .footer-block,
    .footer-block-brand {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (max-width: 640px) {
    .footer-blocks {
        flex-direction: column;
        gap: 36px;
        padding: 48px 0 36px;
    }

    .footer-block,
    .footer-block-brand {
        flex: 0 0 100%;
    }

    .mfb-blocks {
        flex-direction: column;
        text-align: center;
    }
}



/* Scroll to top */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 998;
    cursor: pointer;
    display: none;
    width: var(--form-height);
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 26px;
    text-align: center;
}

#site-scroll-top:hover {
    background: var(--main-color);
}

@media (max-width: 767px) {
    #site-scroll-top {
        right: 20px;
        bottom: 70px;
    }
}


/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.colorfull-social .social-networks a {
    color: white;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    transition: .3s all;
}

.colorfull-social .facebook-social a {
    background: #6f6fd2;
}

.colorfull-social .instagram-social a {
    background: #bb8181;
}

.colorfull-social .youtube-social a {
    background: #e00000;
}

.colorfull-social .whatsapp-social a {
    background: #00da00;
}

.colorfull-social .twitter-social a {
    background: #55adee;
}

.colorfull-social .telegram-social a {
    background: #0088cc;
}

.colorfull-social .linkedin-social a {
    background: #0077b5;
}

.colorfull-social .tiktok-social a {
    background: #333333;
}

.colorfull-social .social-networks a:hover {
    background: #555;
}

.social-network-item-wl {
    width: 100%;
    margin-bottom: 7px;
}

.social-network-item-wl a {
    display: flex;
    align-items: center;
}

.social-network-label {
    padding-left: 12px;
}



/* Search results */
.search-title a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    color: black;
    font-size: 20px;
}

.search-title:last-child a {
    border-bottom: 0;
}

.search-title a:hover {
    color: var(--main-color);
}

.live-search-button {
    margin-top: 30px;
}



/* Social share */
.master-social-share-area {
    margin-bottom: 40px;
}

.master-title {
    border-bottom: 1px solid var(--light-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.master-social-share-area ul {
    padding: 0;
    margin: 0 -5px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.master-social-share-area.share-with-label ul {
    justify-content: space-between;
}

.master-social-share-area:not(.share-with-label) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.master-social-share-area:not(.share-with-label) .master-title {
    border-bottom: 0;
    margin: 0;
    padding: 0 15px 0 0;
}

.master-social-share-area.share-with-label li {
    width: 20%;
}

.master-social-share-area li {
    padding: 0 5px;
    text-align: center;
    transition: .15s all;
}

.master-social-share-area a {
    display: block;
}

.master-social-share-area:not(.simple-share-area) a {
    color: white;
}

.master-social-share-area.simple-share-area a {
    color: black;
}

.master-social-share-area.share-with-label a {
    padding: 5px 15px;
}

.master-social-share-area:not(.share-with-label) a {
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    text-align: center;
}

.share-with-label li .master-label {
    padding-left: 10px;
}

.simple-share-area.share-with-label a {
    border: 1px solid #eee;
}

.master-social-share-area:not(.simple-share-area) .twitter-share a {
    background: #00aced;
}

.master-social-share-area:not(.simple-share-area) .twitter-share a:hover {
    background: #0093cb;
}

.master-social-share-area:not(.simple-share-area) .facebook-share a {
    background: #3b5998;
}

.master-social-share-area:not(.simple-share-area) .facebook-share a:hover {
    background: #324b80;
}

.master-social-share-area:not(.simple-share-area) .telegram-share a {
    background: #0088cc;
}

.master-social-share-area:not(.simple-share-area) .telegram-share a:hover {
    background: #3e659c;
}

.master-social-share-area:not(.simple-share-area) .email-share a {
    background: #e40303;
}

.master-social-share-area:not(.simple-share-area) .email-share a:hover {
    background: #ca0303;
}

.master-social-share-area:not(.simple-share-area) .whatsapp-share a {
    background: #30d244;
}

.master-social-share-area:not(.simple-share-area) .whatsapp-share a:hover {
    background: #25b938;
}

@media (min-width: 960px) {
    .whatsapp-mobile-share {
        display: none;
    }
}

@media (max-width: 959px) {
    .whatsapp-desktop-share {
        display: none;
    }
}

@media (min-width: 960px) and (max-width: 1050px) {
    .master-label {
        display: none;
    }

    .master-social-share-area li .fa {
        margin-right: 0;
    }
}

@media (min-width: 270px) and (max-width: 767px) {
    .master-label {
        display: none;
    }

    .master-social-share-area li .fa {
        margin-right: 0;
    }
}

@media (max-width: 269px) {
    .master-social-share-area li {
        width: 100%;
        margin-bottom: 5px;
    }
}


/* Post navigation */
#post-navigation-wrap {
    background: var(--light-color);
    padding: 20px 0;
}

.post-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.next-previous-post {
    padding: 0 15px;
}

.no-prev-es-post {
    display: table;
    margin-left: auto;
}

.post-navigation a {
    color: black;
    position: relative;
    width: 50%;
}

.next-previous-heading {
    display: table;
    background-color: var(--main-color);
    color: white;
    padding: 3px 20px;
    margin-bottom: 10px;
    transition: .15s all;
}

.post-navigation a:hover .next-previous-heading {
    background: var(--second-color);
}

.next-post .next-previous-heading {
    margin-left: auto;
    margin-right: 0;
}

.next-post {
    text-align: right;
    margin-left: auto;
}

.prev-post-no {
    display: table;
    margin-right: 0;
    margin-left: auto;
}

.next-previous-post>div {
    position: relative;
}

.next-previous-post>div:before {
    position: absolute;
    top: 0;
    font-family: 'Font Awesome 6 Free';
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: white;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
}

.prev-post>div {
    padding-left: 40px;
}

.prev-post>div:before {
    content: '\f104';
    margin-right: 15px;
    left: 0;
}

.next-post>div {
    padding-right: 40px;
}

.next-post>div:before {
    content: '\f105';
    margin-left: 15px;
    right: 0;
}

@media (max-width: 767px) {
    .post-navigation a {
        width: 100%;
    }
}



/* Wordpress default gallery css */
.ms-gallery.ms-gallery-type-false {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.ms-gallery-type-true {
    column-gap: 0;
    margin: 0 -10px;
}

.ms-gallery-type-false .ms-image-9 {
    width: calc(100% / 9);
}

.ms-gallery-type-false .ms-image-8 {
    width: calc(100% / 8);
}

.ms-gallery-type-false .ms-image-7 {
    width: calc(100% / 7);
}

.ms-gallery-type-false .ms-image-6 {
    width: calc(100% / 6);
}

.ms-gallery-type-false .ms-image-5 {
    width: 20%;
}

.ms-gallery-type-false .ms-image-4 {
    width: 25%;
}

.ms-gallery-type-false .ms-image-3 {
    width: 33.3%;
}

.ms-gallery-type-false .ms-image-2 {
    width: 50%;
}

.ms-gallery-type-false .ms-image-1 {
    width: 100%;
}

.ms-image {
    padding: 0 10px 20px;
    margin: 0;
}

.ms-image a {
    display: block;
}

.ms-image img {
    background: #eee;
}

figure.image {
    margin: 0 0 20px;
}

.image figcaption {
    font-style: italic;
    margin-top: 5px;
}

.ms-gallery-tools {
    display: none;
}

.ms-gallery-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: red;
    border-radius: 50%;
}

.ms-gallery-pagination.swiper-pagination {
    margin: 15px -5px 30px;
}

.ms-gallery-nav:before {
    font-family: Feather;
}

.ms-gallery-nav-prev:before {
    content: "\e910";
}

.ms-gallery-nav-next:before {
    content: "\e912";
}

@media (max-width: 340px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }

    .ms-gallery-type-true {
        column-count: 1 !important;
    }

    .ms-image {
        width: 100% !important;
        padding: 0 7.5px 15px;
    }
}

@media (min-width: 341px) and (max-width: 767px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }

    .ms-gallery-type-true {
        column-count: 2 !important;
    }

    .ms-image {
        width: 50% !important;
        padding: 0 7.5px 15px;
    }
}

@media (min-width: 767px) and (max-width: 959px) {
    .ms-gallery-type-true {
        column-count: 3 !important;
    }

    .ms-image {
        width: 33.3% !important;
    }
}



/* Sidebar */
.master-widget:not(:last-child) {
    margin-bottom: 40px;
}

.master-sidebar-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}



/* Sidebar types */
.sidebar-type-item {
    margin-bottom: 10px;
}

.sidebar-type-item a {
    color: black;
    height: 80px;
    display: flex;
    align-items: center;
    background: #eee;
    border-radius: var(--border-radius);
    padding: 0 50px 0 20px;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    transition: .3s all;
}

.sidebar-type-item a:hover {
    transform: translateX(5px);
}

.active-type-item a {
    background: var(--main-color);
    color: white;
    pointer-events: none;
}

.sidebar-type-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


/* Sidebar posts */
.sidebar-post-item {
    margin-bottom: 25px;
}

.sidebar-post-item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: black;
    line-height: 1.4;
}

.sidebar-post-item a:hover {
    color: var(--main-color);
}

.sidebar-post-thumbnail {
    width: 100px;
}

.sidebar-post-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.sidebar-post-details {
    width: calc(100% - 120px);
}

.sidebar-post-title {
    font-weight: 600;
    margin-bottom: 10px;
}



/* Sidebar archives */
.widget-archives {
    margin-top: 7px;
}

.widget-archives a {
    display: block;
    border-bottom: 1px solid var(--light-color);
    padding-bottom: 7px;
    padding-top: 7px;
    color: black;
}

.widget-archives a:hover {
    color: var(--main-color);
}

.widget-archives a:before {
    content: '\f114';
    font-family: FontAwesome;
    margin-right: 10px;
    color: black;
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    color: black;
    padding: 0 15px;
    font-size: 15px;
}

.sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    background: var(--main-color);
    color: white;
}


/* Single post */
.single-post-title {
    margin-bottom: 30px;
}

.single-post-title h1 {
    font-size: 32px;
}

.single-post-thumbnail {
    margin-bottom: 30px;
}

.single-post-thumbnail img {
    background: var(--light-color);
    width: auto;
    max-height: 350px;
}

.single-post-meta {
    margin-top: 15px;
}

.single-post-date,
.single-post-meta a {
    color: #666;
}

.single-post-date,
.single-post-category,
.single-post-author {
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
}

.single-post-date:before {
    content: '\f073';
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: black;
}

.single-post-category:before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.single-post-author:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.single-post-container-main {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.single-content {
    font-size: 16px;
    line-height: 1.7;
}

.single-content img {
    width: auto;
    max-height: 350px;
}

.single-content .ms-gallery img {
    width: 100% !important;
    max-height: inherit !important;
    height: 100% !important;
}

.aligncenter {
    margin: 0 auto;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    text-align: left;
    margin-bottom: 10px;
}

.single-content ul,
.single-content ol {
    text-align: left;
}

.master-embed {
    position: relative;
    padding-top: 56%;
}

.master-embed iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.master-table {
    overflow-x: auto;
    max-width: 100%;
}



/* Designed List */
.designed-list ul {
    list-style: none;
    margin-left: 20px;
}

.designed-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.designed-list ul li:before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 2px;
    left: 0;
    font-weight: 900;
    color: var(--main-color);
    font-size: 13px;
}



/* Single Post Author */
.single-author-area {
    margin-top: 40px;
}

.single-author {
    display: table;
    width: 100%;
}

.single-author-block {
    display: table-cell;
    vertical-align: top;
}

.single-author-first {
    width: 150px;
}

.single-author-second {
    width: calc(100% - 150px);
    padding-left: 25px;
    padding-top: 5px;
}

.single-author img {
    height: 150px;
    width: 150px;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-author-name {
    font-size: 20px;
}

.single-author-profession {
    font-size: 17px;
    margin-bottom: 10px;
}

.single-author-description {
    margin-bottom: 10px;
}

.no-image-author:before {
    content: '\f2be';
    font-family: FontAwesome;
    width: 150px;
    height: 150px;
    background: var(--light-color);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    color: #999;
}

@media (max-width: 550px) {
    .single-author-block {
        display: block;
    }

    .single-author-second {
        width: 100%;
        padding-left: 0px;
        padding-top: 15px;
    }
}




/* Youtube */
.youtube-videos {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}

.youtube-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
    height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.youtube-icon-block {
    position: relative;
    width: 100%;
    cursor: pointer;
    height: 100%;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: rgba(22, 22, 22, 0.65);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    transition: .5s all;
}

.youtube-thumbnail:hover .youtube-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}

.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: white;
    transition: .5s all;
}

.youtube-thumbnail:hover .youtube-play-icon {
    opacity: 1;
}

.youtube-iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 10;
    top: 0;
}

.youtube-heading a {
    font-size: 15px;
    display: block;
    padding: 10px 0;
    line-height: 1.3;
    color: black;
    font-weight: 600;
}

.youtube-videos .next-videos {
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.youtube-loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}

@media (max-width: 960px) {

    .youtube-icon,
    .youtube-play-icon {
        opacity: 1;
    }

    .play-video:before {
        font-size: 22px;
    }
}

@media (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}

@media (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}



/* Instagram */
.instagram-images {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.instagram-image {
    width: 25%;
    padding: 0 10px 20px;
}

.instagram-ratio {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 100%;
}

.instagram-image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .3s all;
    overflow: hidden;
    background-color: var(--light-color);
}

.instagram-image-link:hover .instagram-image-details {
    opacity: 1;
    transition: .3s all;
}

.instagram-image-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: .3s all;
    opacity: 0;
}

.instagram-image-link:hover:before {
    opacity: 1;
}

.instagram-image-detallar {
    color: white;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    opacity: 0;
    transition: .3s all;
}

.instagram-icon {
    margin: 0 3px;
}

.instagram-icon:before {
    font-family: 'FontAwesome';
    margin-right: 7px;
}

.next-images {
    width: 100%;
    padding: 0 15px;
}

.next-image-button {
    display: table;
    margin: 0 auto;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    transition: .15s all;
}

.next-image-button:hover {
    background: var(--second-color);
}

.next-image-button::-moz-selection {
    background: transparent;
}

.next-image-button::selection {
    background: transparent;
}

.instagram-nav-button {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 1;
    font-size: 36px;
    text-shadow: 0 0 15px black;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.instagram-button-prev {
    left: 0;
}

.instagram-button-next {
    right: 0;
}

.instagram-ratio-carousel {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.instagram-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.instagram-carousel,
.instagram-carousel .swiper-wrapper,
.instagram-carousel .swipet-slide {
    height: 100%;
}

.instagram-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.instagram-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    transition: .5s all;
}

.instagram-video:hover .instagram-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}

@media (min-width: 601px) and (max-width: 999px) {
    .instagram-image {
        width: 33.3%;
    }
}

@media (max-width: 600px) {
    .instagram-image {
        width: 50%;
    }
}


/* FAQ */
.master-accordion-title {
    color: black;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 15px 15px 30px;
    cursor: pointer;
    border-bottom: 1px solid var(--light-color);
    position: relative;
    line-height: 1.4;
    user-select: none;
}

.master-accordion-title:before {
    content: "\f067";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 15px;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 17px;
    color: var(--main-color);
}

.master-accordion-title.active:before {
    content: "\f068";
}

.master-accordion-content {
    color: black;
    margin-top: 15px;
    display: none;
}


/* Default input */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    box-shadow: none;
    appearance: none;
    font-family: var(--font-family);
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: black;
    font-size: 15px;
    background: white;
}

textarea {
    box-shadow: none;
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 15px;
    resize: vertical;
    min-height: 90px;
}

input[type=radio] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 4.5px;
    left: 0;
}

input[type=radio]:checked {
    border-color: var(--main-color);
}

input[type=radio]:checked:before {
    content: '';
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type=radio]+label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
}

input[type=checkbox] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 2px;
    left: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 5px;
}

input[type=checkbox]:checked {
    background: var(--main-color);
    border-color: var(--main-color);
}

input[type=checkbox]:checked:before {
    content: "\e92b";
    font-family: Feather;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}

input[type=checkbox]+label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
    margin-bottom: 0;
}

input[type=file]::file-selector-button {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 5px 15px;
}

sup,
sub {
    font-size: 12px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
}

select {
    appearance: none;
    background: transparent;
    background-image: url(/uploads/extra/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 12px;
    background-size: 18px;
    cursor: pointer;
    padding-right: 30px;
    border-radius: var(--border-radius);
}


/* Form */
.grecaptcha-badge {
    display: none;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.form-group .form-element {
    padding: 0 15px 15px;
}

.form-100 {
    width: 100%;
}

.form-85 {
    width: 85%;
}

.form-50 {
    width: 50%;
}

.form-33 {
    width: 33.3%;
}

.form-25 {
    width: 25%;
}

.form-15 {
    width: 15%;
}

.form-element {
    padding-bottom: 15px;
    position: relative;
}

.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
    font-size: 15px;
    color: white;
    opacity: .8;
}

.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}

.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fsf-button {
    border: 1px solid #ddd;
    background: #eee;
    padding: 5px 15px;
    line-height: 1.3;
    margin-right: 10px;
}

.faf-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.faf-items label {
    width: auto;
}

.faf-item {
    padding: 0 5px;
}

.faf-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.faf-item i {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    line-height: 80px;
    text-align: center;
    font-size: 22px;
    background: #f5f5f5;
    cursor: pointer;
}

.form-result:not(:empty) {
    margin-top: 20px;
}

.form-simple-file input,
.form-advanced-file input {
    display: none;
}

.form-choices {
    display: flex;
    flex-wrap: wrap;
}

.form-choices .form-choice {
    padding-right: 30px;
}

.form-choice {
    position: relative;
}

.alert {
    padding: 10px 15px 10px 55px;
    text-align: left;
    min-height: 42px;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.4;
}

.alert-danger {
    color: #8d423b;
    background-color: #ffc8c2;
    border-color: #ffc8c2;
}

.alert-success {
    color: #1d6944;
    background-color: #d4ffd3;
    border-color: #c3ecd8;
}

.alert-info {
    color: #281b80;
    background-color: #e0e0ff;
    border-color: #e0e0ff;
}

.alert:before {
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    left: 5px;
    height: calc(100% - 10px);
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    border-radius: 5px;
    transform: translateY(-50%);
}

.alert-danger:before {
    content: "\f071";
    background: #da6f64;
}

.alert-success:before {
    content: '\f058';
    background: #48c346;
}

.alert-info:before {
    content: "\f05a";
    background: #464fc3;
}

@media (max-width: 650px) {

    .form-50,
    .form-33,
    .form-25 {
        width: 100%;
    }
}


/* Progress bar */
.progress {
    background: #eee;
    border-radius: 5px;
    display: none;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}

.progress-bar {
    height: 5px;
    line-height: 5px;
    background: red;
    font-weight: 600;
    color: white;
    padding: 0 15px;
    width: 0%;
    position: relative;
    max-width: 100%;
}

.progress-bar-text-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 600;
    width: 100%;
}


/* ACF Map */
.acf-map-area {
    position: relative;
}

.acf-map {
    height: 450px;
    background: #eee;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.acf-iframe-map iframe {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
}

.map-loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: #ddd;
}

.map-loading-text {
    padding-top: 40px;
    font-weight: 600;
    font-size: 18px;
}



/* Comments */
.default-comment-form-area {
    display: none;
}

.comment-reply-area {
    margin-bottom: 20px;
}

#comments {
    padding-bottom: 20px;
}

.comment-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.comment-list {
    list-style: none;
    margin: 0;
}

.comment {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}

.comment-author,
.comment-block {
    display: table-cell;
    vertical-align: top;
}

.comment-author {
    width: 70px;
    padding-right: 10px;
}

.comment-author .fa-solid {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 30px;
    color: #999;
}

.comment-author img {
    border: 1px solid #ddd;
    padding: 3px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}

.comment-block {
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: calc(100% - 70px);
}

.comment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
}

.date.float-right {
    color: #a7a7a7;
}

.comment-rating {
    display: inline-flex;
    color: orange;
    font-size: 13px;
}

.comment-text {
    margin-top: 5px;
}

.comment-text p {
    margin-bottom: 5px;
}

.comment-reply {
    text-decoration: underline;
    color: var(--main-color);
    cursor: pointer;
    display: inline-block;
}

.comments .children {
    margin: 0 0 0 20px;
    list-style: none;
}

.comments .children>.comment {
    margin-bottom: 0;
}

.byuser .comment-block {
    background: #f5f5f5;
}

.comment-reply-heading-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.comment-reply-heading,
.comment-reply-cancel {
    padding: 5px 0;
}

.comment-reply-cancel {
    text-decoration: underline;
    color: red;
    cursor: pointer;
    font-size: 14px;
}

.logged-user-comment-author {
    margin-bottom: 10px;
}

.comment-name {
    padding-right: 5px;
}

.default-comment-form {
    width: 100%;
    margin-top: 15px;
}

@-webkit-keyframes wd-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes wd-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .comment-author {
        width: 40px;
        padding-right: 5px;
    }

    .comment-author img {
        width: 35px;
        height: 35px;
    }
}


/* Rating */
.comment-ratings {
    display: flex;
    align-items: center;
    margin: 0 -2px;
}

.comment-ratings input {
    display: none;
}

.comment-rating label {
    padding: 0 2px !important;
}

.comment-rating label:before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    color: var(--light-color);
    font-size: 20px;
}

.active-comment-rating label:before {
    color: orange;
}


/* Gallery */
.master-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.master-image {
    width: 25%;
    padding: 0 10px 20px;
}

.master-image a {
    display: block;
    overflow: hidden;
    position: relative;
}

.master-image img {
    background: var(--light-color);
}

.master-image-overlay {
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s all;
}

.master-image a:hover .master-image-overlay {
    opacity: .3;
}

@media (max-width: 350px) {
    .master-image {
        width: 100%;
    }
}

@media (min-width: 351px) and (max-width: 767px) {
    .master-gallery {
        margin: 0 -5px;
    }

    .master-image {
        width: 50%;
        padding: 0 5px 10px;
    }
}

@media (min-width: 768px) and (max-width: 999px) {
    .master-image {
        width: 33.3%;
    }
}



/* Table */
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: left;
}

th,
td {
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 5px 15px 5px 0;
}



/* Toolbar */
.toolbar-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000000;
}

.toolbar-area a {
    position: absolute;
    color: white;
    border-radius: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    display: block;
}

.toolbar-phone {
    background: #6565ff;
    bottom: 0;
}

.toolbar-whatsapp {
    background: #45c71b;
    bottom: 55px;
}

@media (min-width: 768px) {
    .toolbar-area {
        display: none;
    }
}


/* Loading */
.loading {
    color: transparent !important;
    position: relative;
    pointer-events: none;
}

.loading:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: opacity 0s ease;
    opacity: 1;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
}

.loading:before {
    visibility: hidden;
}

.small-loading-icon:after {
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
}

.big-loading-icon:after {
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
}

.light-loading-icon:after {
    border: 1px solid rgba(255, 255, 255, .3);
    border-left-color: #fff;
}

.dark-loading-icon:after {
    border: 1px solid rgba(0, 0, 0, .3);
    border-left-color: #000;
}

@-webkit-keyframes loading {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading {
    100% {
        transform: rotate(360deg);
    }
}


/* QR code */
.qr-code img {
    width: 150px;
}



/* Swiper js */
.master-slider {
    height: 0;
    overflow: hidden;
}

.master-slider.swiper-container-initialized {
    height: auto;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* Hide admin bar */
.active-admin-bar {
    margin-top: 35px;
}

.admin-bar {
    display: none;
}

.active-admin-bar .admin-bar {
    display: flex;
}

.hide-admin-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}

.active-admin-bar .hide-admin-bar {
    top: 35px;
}


/* Pagination */
.pagination {
    margin: 30px 0 0;
    list-style: none;
}

.page-item {
    display: inline-block;
}

.page-item a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--light-color);
    margin-right: 5px;
    color: black;
}

.page-item.active a,
.page-item a:hover {
    background: var(--main-color);
    color: white;
}


/* Fancybox */
body.compensate-for-scrollbar {
    overflow: unset !important;
}

.fancybox-active .admin-bar {
    z-index: 1;
}


/* Mobile sticky phone */
.mobile-sticky-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}

.mobile-sticky-elements a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}

.mobile-sticky-phone {
    background: #7d8cff;
}

.mobile-sticky-whatsapp {
    background: #25ce25;
}

@media (min-width: 801px) {
    .mobile-sticky-area {
        display: none;
    }
}



/* MailChimp */
#mailchimp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

#mailchimp>div {
    padding: 0 5px;
}

.mailchimp-element input {
    border: 1px solid #ddd;
    height: 40px;
    padding: 0 10px;
}

.mailchimp-button button {
    background: red;
    height: 40px;
    padding: 0 30px;
    font-size: 17px;
    color: white;
    text-transform: uppercase;
}

.mailchimp-result:not(:empty) {
    display: table;
    margin: 10px auto 0;
}

.mailchimp-success {
    position: relative;
    padding-left: 35px;
    font-weight: 600;
}

.mailchimp-success:before {
    content: '\f058';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
}



/* Notify template */
.notify-block-area {
    text-align: center;
    margin: 60px 0;
}

.notify-block-icon-area {
    width: 150px;
    height: 150px;
    background: #00a900;
    display: flex;
    align-items: center;
    margin: 0 auto 30px;
    justify-content: center;
    border-radius: 30px;
    color: white;
    font-size: 100px;
}

.notify-fe-fe-check {
    background: #00a900;
}

.notify-fe-fe-x {
    background: #ff0000;
}

.notify-block-area h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.notify-block-description {
    color: #666;
    margin: 0 auto 25px;
    width: 600px;
    max-width: 100%;
}



/* Callout */
.callout-form-element {
    margin-bottom: 10px;
}

.callout-form-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: var(--form-height);
    font-size: 15px;
    padding: 0 15px;
}

.success-message {
    text-align: center;
    color: #ccc;
    display: none;
}

.success-message:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    display: table;
    margin: 0 auto 15px;
    font-size: 24px;
    color: yellow;
}


/* Callout modal */
#callout-modal-form {
    width: 500px;
    display: none;
}


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.2;
    user-select: none;
    font-weight: 600;
    gap: 15px;
    transition: .15s all;
}

.simple-button {
    height: 35px;
    cursor: pointer;
    padding: 0 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.2;
    user-select: none;
    font-weight: 600;
    white-space: nowrap;
    transition: .15s all;
}

button:disabled {
    background: #eee;
    color: #999;
    border: 1px solid #ddd;
    cursor: not-allowed;
    pointer-events: none;
}

.primary-button {
    background: var(--main-color);
    color: black;
    border: 1px solid var(--main-color);
}

.primary-button:not(.loading) {
    color: black !important;
}

.primary-button:hover {
    background: #fff000;
    color: black;
    border-color: #fff000;
}

.outline-button {
    background: #fff;
    color: black;
    border: 1px solid var(--main-color);
}

.outline-button:hover {
    color: #999;
}

.colored-button {
    background: var(--extra-color);
    color: white;
    border: 1px solid var(--extra-color);
}

.colored-button:hover {
    background: #f75848;
    border-color: #f75848;
}

.white-button {
    border-color: white;
    background: white;
    color: black;
}

.white-button:hover {
    border-color: #222;
    background: #222;
    color: white;
}

.wide-button {
    width: 100%;
}

.icon-right-button:after {
    content: "\e912";
    font-family: Feather;
    margin-left: 10px;
    margin-right: -10px;
    font-size: 14px;
}

.icon-left-button:before {
    content: "\e910";
    font-family: Feather;
    margin-left: -10px;
    margin-right: 10px;
    font-size: 14px;
}

.icon-right-button.loading:after {
    margin-left: -7.5px;
    margin-right: 0;
}



/* Animations */
.animate {
    transition: 1.2s all;
}

.scale-animation {
    transform: scale(0.5);
    opacity: 0;
}

.fade-animation {
    opacity: 0;
}

.left-to-right-animation {
    transform: translateX(-100px);
    opacity: 0;
}

.right-to-left-animation {
    transform: translateX(100px);
    opacity: 0;
}

.top-to-bottom-animation {
    transform: translateY(-100px);
    opacity: 0;
}

.bottom-to-top-animation {
    transform: translateY(100px);
    opacity: 0;
}

.animated {
    opacity: 1;
    transform: none;
}


/* Fixed header */
#site-header.fixed-site-header {
    position: fixed;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    animation-name: sticky;
    animation-duration: .5s;
    box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}

.fixed-site-header .master-header-area {
    padding: 10px 0;
}

.fixed-site-header #site-logo img {
    height: 50px;
}

@keyframes sticky {
    from {
        transform: translateY(-80px);
    }

    to {
        transform: translateY(0);
    }
}


/* Topbar */
#topbar-wrap {
    border-bottom: 1px solid #ddd;
}

.topbar-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
}

.topbar-block {
    padding: 5px 15px;
}

.topbar-elements {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}

.topbar-element {
    padding: 5px 15px;
}



/* Master heading */
.heading-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.heading-block {
    padding: 0 15px 30px;
}

.hb-1 {
    width: 66.6%;
}

.hb-2 {
    width: 33.3%;
}

.heading-area {
    margin-bottom: 40px;
}

.heading-blocks .heading-area {
    margin-bottom: 0;
}

.heading {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--second-color);
}

.description {
    margin-top: 15px;
    width: 600px;
    max-width: 100%;
    color: var(--text-color);
}

.center-heading {
    text-align: center;
}

.center-heading .description {
    margin-left: auto;
    margin-right: auto;
}

.light-heading .heading,
.light-heading .sub-heading {
    color: white;
}

.heading-button-block {
    display: flex;
    justify-content: flex-end;
}

.heading-button {
    font-weight: 600;
    gap: 10px;
    display: flex;
    align-items: center;
    transition: .3s all;
}

.heading-button:hover {
    transform: scale(1.1);
}

.heading-button i {
    color: var(--main-color);
}

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

@media (max-width: 550px) {
    .heading-area {
        margin-bottom: 25px;
    }
}



/* Whatsapp */
.whatsapp-toolbar-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-icon-box {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toolbar-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    padding-right: 20px;
    display: none;
}

.whatsapp-toolbar-text span {
    display: block;
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(92 92 92 / 12%);
    line-height: 1.2;
    text-align: center;
    min-width: 170px;
    font-weight: 500;
    position: relative;
    z-index: -1;
}

.whatsapp-toolbar-text span:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #21ad21;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.whatsapp-toolbar-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #21ad21;
    border-radius: 50%;
    font-size: 32px;
}



/* Language switcher */
.language-list-switcher ul {
    margin: 0 -7px;
    list-style: none;
    display: flex;
}

.language-list-switcher li {
    padding: 0 7px;
}

.language-list-switcher .language-item a {
    display: flex;
    align-items: center;
}

.language-list-switcher .language-item img {
    width: 22px;
    height: 22px;
}

.language-list-switcher .language-label {
    padding-left: 7px;
    font-weight: 600;
    color: black;
}



/* Language dropdown switcher */
.language-dropdown-switcher ul {
    margin: 0 10px 0 0;
    list-style: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.language-dropdown-switcher .ls-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
    border-radius: 8px;
    width: 40px;
    background: white;
    padding: 8px 0;
}

.language-dropdown-switcher img {
    width: 24px;
    height: 24px;
}

.language-dropdown-switcher:hover .ls-sub-menu {
    display: block;
}

.language-dropdown-switcher .ls-current-lang {
    display: flex;
    align-items: center;
    height: 38px;
    border-radius: 8px;
}

.language-dropdown-switcher .ls-current-lang:after {
    content: "\e92e";
    font-family: Feather;
    font-size: 14px;
    margin-left: 5px;
}

.language-dropdown-switcher .language-label {
    display: none;
}

.language-dropdown-switcher .language-item {
    display: flex;
    justify-content: center;
}

.language-dropdown-switcher .language-item a {
    color: black;
}

.language-dropdown-switcher .language-item:not(:last-child) {
    margin-bottom: 5px;
}

.language-dropdown-switcher .language-switcher.language-dropdown-switcher {
    margin-left: 15px;
}



/* Canvas sidebar */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .7;
    display: block;
    z-index: 999;
    visibility: hidden;
}

.active-canvas-overlay {
    visibility: visible;
}

.canvas-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    background: white;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    z-index: 10000;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.active-canvas-sidebar {
    transform: none;
}

.canvas-sidebar-header {
    border-bottom: 1px solid var(--light-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.csh-heading {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 22px;
}

.canvas-sidebar-body {
    padding: 40px 20px;
    overflow-y: auto;
    height: calc(100% - 97px);
}

.csh-close {
    font-size: 15px;
    cursor: pointer;
}

.csh-close:after {
    content: "\ea02";
    font-family: Feather;
    margin-left: 5px;
    transform: translateY(3px);
    display: inline-block;
    font-size: 18px;
}



/* Audio */
audio {
    height: 40px;
    width: 100%;
}

audio::-webkit-media-controls-enclosure {
    border-radius: 5px;
}

audio::-webkit-media-controls-panel {
    background: #ddd;
    height: 40px;
}



/* Swiper */
.relative-slider {
    position: relative;
}

.side-swiper-nav {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.ssn-prev {
    left: -30px;
}

.ssn-next {
    right: -30px;
}

.center-swiper-navigations {
    display: flex;
    justify-content: center;
    margin: 0 -5px;
}

.center-swiper-nav {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}

.swiper-pagination {
    display: flex;
    margin: 30px -5px 0;
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    cursor: pointer;
    background: #ddd;
    transition: .3s all;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
    background: #444;
}

.dots-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.liner-swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    display: block;
}

.center-swiper-pagination {
    justify-content: center;
}

.swiper-slide .master-post {
    width: 100%;
    padding: 0;
}



/* Tabs */
.tabs-heading {
    list-style: none;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tabs-heading li {
    text-align: center;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    line-height: 1.2;
    color: #888;
}

.tabs-heading .active-tab {
    color: black;
}

.tabs-heading .active-tab:before {
    content: '';
    height: 3px;
    width: 100%;
    background: var(--main-color);
    left: 0;
    bottom: -1.5px;
    position: absolute;
}

.tabs-body>div:not(:first-child) {
    display: none;
}



/* Master scroll */
.master-scrolls ::-webkit-scrollbar,
.master-scroll::-webkit-scrollbar {
    width: 3px;
}

.master-scrolls ::-webkit-scrollbar-track,
.master-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.master-scrolls ::-webkit-scrollbar-thumb,
.master-scroll::-webkit-scrollbar-thumb {
    background: #888;
}

.master-scrolls ::-webkit-scrollbar-thumb:hover,
.master-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}



/* FontAwesome */
.fa-solid:before {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
}

.fa-brands:before {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-x-twitter:before {
    content: "\e61b";
}

.fa-linkedin:before {
    content: "\f08c";
}

.fa-telegram:before {
    content: "\f2c6";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-tiktok:before {
    content: "\e07b";
}

.fa-play:before {
    content: "\f04b"
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-arrow-left-long:before {
    content: "\f177";
}



/* Subjects */
.subjects-area {
    padding: 60px 0;
}

.subjects-area .heading {
    font-size: 32px;
    font-weight: 700;
    color: #133a3f;
    position: relative;
    padding-left: 18px;
}

.subjects-area .heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 4px;
    background: var(--main-color);
    border-radius: 4px;
}

.subjects-area .description {
    padding-left: 18px;
    color: #999;
    font-size: 15px;
    margin-top: 8px;
}

.subjects-area .heading-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--main-color);
    border: 1.5px solid var(--main-color);
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 15px;
    height: auto;
    transform: none;
    transition: .2s all;
}

.subjects-area .heading-button:hover {
    background: var(--main-color);
    color: black;
    transform: none;
}

.subjects-area .heading-button i {
    color: inherit;
}

.subjects {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -25px;
}

.subject {
    width: 25%;
    padding: 0 10px 25px;
    display: flex;
}

.subject-block {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.subject-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.subject-thumbnail {
    overflow: hidden;
}

.subject-thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform .4s ease;
}

.subject-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subject-button {
    background: var(--main-color);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
}

.subject-details {
    padding: 18px 18px 68px;
    flex-grow: 1;
}

.subject-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.subject-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    background: white;
}

.subject-author {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #777;
}

.subject-meta {
    color: #bbb;
    font-size: 13px;
    margin-top: 5px;
}

.subject-author-image {
    width: 26px;
}

.subject-author-image img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 50%;
}

.s-sale-price {
    font-weight: 400;
    font-size: 14px;
    color: #bbb;
    text-decoration: line-through;
    transform: translateY(-1px);
}

.subject-author-name {
    font-size: 13px;
}

.circle-avatar {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b3bc0, #6b6bdd);
    border-radius: 50%;
    color: white;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .subjects-area {
        padding: 30px 0;
    }
}



/* Slider */
.slider-area {
    padding: 70px 0;
    text-align: center;
}

.slider-center {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-heading {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
}

.slider-heading span.accent {
    color: var(--main-color);
}

.slider-desc {
    color: #888;
    margin: 0 0 34px;
    font-size: 17px;
    line-height: 1.75;
    max-width: 540px;
}

/* Search form */
.slider-search-form {
    width: 100%;
    max-width: 560px;
}

#search-form {
    display: flex;
    align-items: center;
    background: #110e0e;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 7px 7px 7px 18px;
    transition: border-color .2s, box-shadow .2s;
}

#search-form:focus-within {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(19, 160, 118, 0.15);
}

#search-form input {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.search-form-input {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form-input i {
    font-size: 18px;
    color: #555;
    flex-shrink: 0;
}

.search-form-input input {
    font-size: 15px;
    color: #e5e5e5;
    width: 100%;
}

.search-form-input input::placeholder {
    color: #555;
}

.search-form-button .button {
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    height: 44px;
    padding: 0 22px;
}

.search-subjects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 0;
}

.search-subject a {
    display: block;
    background: rgba(19, 160, 118, 0.1);
    color: var(--main-color);
    font-weight: 500;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    transition: .2s all;
}

.search-subject a:hover {
    background: var(--main-color);
    color: #fff;
}

/* Slider stats */
.slider-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.slider-stat-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 0 28px;
}

.slider-stat-item:first-child {
    padding-left: 0;
}

.slider-stat-item:last-child {
    padding-right: 0;
}

.slider-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.slider-stat-label {
    font-size: 14px;
    color: #666;
}

.slider-stat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Features */
.home-features-area {
    background: var(--second-color);
    padding: 38px 0;
    position: relative;
    overflow: hidden;
}

.home-features-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
    position: relative;
    z-index: 1;
}

.feature {
    width: 25%;
    padding: 0 16px;
    color: white;
}

.feature-icon-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-items: center;
}

.feature-icon-wrap {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.feature-icon {
    width: 28px;
    opacity: 0.9;
}

.feature-text-block {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    width: auto;
}

.feature-subtitle {
    font-size: 13px;
    opacity: 0.55;
    margin-top: 5px;
    font-weight: 400;
    line-height: 1.5;
}



/* Single subject */
.subject-header-area {
    background: #0b0b0b;
    color: #e5e5e5;
    padding: 36px 0 24px;
    position: relative;
    z-index: 1;
}

.subject-header-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.shb-1 {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.shb-2 {
    width: 380px;
    flex-shrink: 0;
}

.single-subject-name {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.single-subject-description {
    margin: 0 0 18px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.55;
    max-width: 720px;
}

.single-subject-author-block a {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: #e5e5e5;
}

.single-subject-author-image {
    width: 50px;
    flex-shrink: 0;
}

.single-subject-author-image .circle-avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.single-subject-author-image img {
    height: 50px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.single-subject-author-name {
    font-weight: 600;
    color: #fff;
}

.single-subject-author-label {
    font-size: 13px;
    color: #777;
}

.subject-header-main-block {
    background: #141414;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
}

.subject-header-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.subject-header-details {
    padding: 22px;
}

.subject-header-details-text {
    color: #888;
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.subject-header-price {
    display: flex;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 18px;
    align-items: baseline;
    line-height: 1.2;
    gap: 12px;
}

.subject-header-price .s-sale-price {
    font-weight: 500;
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
}

.subject-header-price .s-price {
    color: var(--main-color);
}



/* Courses */
.course-area {
    padding: 50px 0 70px;
}

.course-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course-block-1 {
    width: calc(100% - 450px);
}

.course-block-2 {
    width: 400px;
    position: fixed;
    right: calc((100vw - 1300px) / 2);
}

.course-heading {
    font-weight: 600;
    color: var(--second-color);
    font-size: 22px;
    line-height: 1.3;
}

.course-list {
    border-bottom: 1px solid #ddd;
}

.course-accordion-title {
    background: white;
    border: 1px solid #ddd;
    border-bottom: 0;
    padding: 17px 20px 17px 55px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    user-select: none;
}

.ca-name {
    font-weight: 500;
    flex-grow: 1;
    line-height: 1.3;
}

.ca-meta {
    font-size: 14px;
    color: var(--text-color);
}

.course-accordion-title:before {
    content: "\e92e";
    font-family: 'Feather';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    transition: .3s all;
}

.course-accordion-title.active:before {
    transform: translateY(-50%) rotate(180deg);
}

.course-accordion-content {
    display: none;
    border: 1px solid #ddd;
    border-bottom: 0;
    padding: 15px 30px;
    background: #fcfaf7;
}

.course-list-item:not(:last-child) {
    margin-bottom: 13px;
}

.course-list-item {
    font-size: 15px;
    color: var(--second-color);
    position: relative;
    padding-left: 30px;
    line-height: 1.4;
}

.course-list-item:before {
    content: "\e9f7";
    font-family: 'Feather';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.course-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    margin-top: 5px;
    color: var(--text-color);
    font-size: 15px;
}

.course-meta {
    position: relative;
}

.course-meta:not(:last-child):before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text-color);
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%);
    border-radius: 50%;
}



/* Active course */
.active-course-body #footer {
    width: calc(100% - 400px);
}

/* Course progress bar (inline, next to complete button) */
.video-footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.course-progress-inline {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 110px;
}

.course-progress-track {
    height: 5px;
    background: #e0e0e0;
    border-radius: 99px;
    overflow: hidden;
}

.course-progress-fill {
    height: 100%;
    background: var(--primary-color, #2cb67d);
    border-radius: 99px;
    transition: width .4s ease;
}

.course-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#course-progress-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color, #2cb67d);
}

#course-progress-count {
    font-size: 11px;
    color: var(--text-color);
}

.active-course-blocks {
    display: flex;
    flex-wrap: wrap;
}

.acb-1 {
    width: calc(100% - 400px);
}

.acb-2 {
    width: 400px;
    position: fixed;
    top: 86px;
    right: 0;
    z-index: 100;
    height: calc(100svh - 86px);
    overflow-y: scroll;
    background: var(--light-color);
}

.video video {
    width: 100%;
    display: flex;
    aspect-ratio: 16/9;
}

.video video.video-playing {
    aspect-ratio: unset;
}

.active-course-area .course-accordion-title {
    background: var(--light-color);
}

.active-course-area .course-list-item {
    cursor: pointer;
}

.active-course-area .course-list-item:hover {
    text-decoration: underline;
}

/* Course list item checkbox */
.active-course-area .course-list-item {
    padding-left: 42px;
}

.active-course-area .course-list-item:before {
    display: none;
}

.cli-checkbox {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--text-color);
    line-height: 1;
}

.cli-watched .cli-checkbox {
    color: var(--primary-color, #2cb67d);
}

.active-course-area .course-list-item.cli-watched {
    color: var(--primary-color, #2cb67d);
}

.active-course-area .course-list-item.cli-active-item {
    font-weight: 600;
}

/* Video footer */
.video-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.current-video-title {
    font-weight: 600;
    font-size: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cvt-name {
    font-weight: 600;
    font-size: 15px;
}

.current-video-teacher {
    font-size: 12px;
    font-weight: 400;
}

.current-video-teacher a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color, #4e73df);
    text-decoration: none;
}

.current-video-teacher a:hover {
    text-decoration: underline;
}

.current-video-teacher .fe {
    font-size: 13px;
}

.complete-video-btn {
    flex-shrink: 0;
}

.complete-video-btn.btn-completed {
    background: var(--primary-color, #2cb67d) !important;
    border-color: var(--primary-color, #2cb67d) !important;
    opacity: 0.7;
    pointer-events: none;
}

/* Coupon area */
.coupon-area {
    margin-bottom: 14px;
}

.coupon-input-wrap {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: var(--border-radius, 8px);
    padding: 10px 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    transition: border-color .2s;
}

.coupon-input:focus {
    border-color: var(--primary-color, #2cb67d);
}

.coupon-input:disabled {
    background: #f5f5f5;
    color: #999;
}

.coupon-apply-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.coupon-result {
    margin-top: 8px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.coupon-success {
    color: var(--primary-color, #2cb67d);
    font-weight: 500;
}

.coupon-success .fe {
    margin-right: 4px;
}

.coupon-error {
    color: #e55;
}

.coupon-final-price {
    color: var(--second-color);
    font-size: 13px;
}


/* Auth popup */
.auth-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-popup {
    background: #212121;
    border-radius: var(--border-radius, 10px);
    padding: 40px 35px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.auth-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1;
    padding: 4px;
}

.auth-popup-icon {
    font-size: 48px;
    color: var(--primary-color, #2cb67d);
    margin-bottom: 16px;
    line-height: 1;
}

.auth-popup-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.auth-popup-desc {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.auth-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-popup-buttons .wide-button {
    justify-content: center;
}


/* Cool alert */
#alert:empty {
    display: none;
}

#alert:not(:empty) {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    background: #ffbaba;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-weight: 600;
    border: 1px solid #ed7777;
    overflow: hidden;
}

#alert:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #da5959;
    width: 0;
    display: block;
    left: 0;
    transition: width 2.5s linear;
}

#alert.active:before {
    width: 100%;
}


/* ===== Front Page Responsive ===== */
@media (max-width: 960px) {
    .feature {
        width: 50%;
        padding-bottom: 30px;
    }

    .subject {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .slider-area {
        padding: 60px 0 70px;
    }

    .slider-heading {
        font-size: 28px;
    }

    .slider-desc {
        font-size: 15px;
    }

    .slider-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .slider-stat-sep {
        display: none;
    }

    .slider-stat-item {
        padding: 0 12px;
    }

    .feature {
        width: 100%;
    }

    .subject {
        width: 100%;
    }

    .subjects-area .heading {
        font-size: 24px;
    }

    .subjects-area .heading-button {
        display: none;
    }
}

/* ===== Mənim Qruplarım Səhifəsi ===== */

.mq-page-area {
    padding: 60px 0;
}

/* Page Header */
.mq-page-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mq-page-header-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--main-color), #0d8060);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(19, 160, 118, 0.3);
}

.mq-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #133a3f;
    margin: 0 0 4px;
}

.mq-page-subtitle {
    font-size: 15px;
    color: #999;
}

/* Sections */
.mq-section {
    margin-bottom: 40px;
}

.mq-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #133a3f;
    margin-bottom: 18px;
}

.mq-section-heading i {
    color: var(--main-color);
    font-size: 18px;
}

.mq-count-badge {
    background: var(--main-color);
    color: black;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    line-height: 1.6;
}

.mq-badge-new {
    background: #e8463a;
}

/* Live pulse dot */
.live-pulse-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: #e53e3e;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: livePulse 1.6s ease-in-out infinite;
}

.live-pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(229, 62, 62, 0.3);
    border-radius: 50%;
    animation: livePulseRing 1.6s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes livePulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .mq-page-area {
        padding: 30px 0;
    }
}



/* Live course cards */
.mq-live-courses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mq-live-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    border-radius: 14px;
    padding: 18px 22px;
    border: 1.5px solid rgba(229, 62, 62, 0.15);
    box-shadow: 0 2px 12px rgba(229, 62, 62, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    color: inherit;
}

.mq-live-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(229, 62, 62, 0.14);
    border-color: rgba(229, 62, 62, 0.35);
    color: inherit;
}

.mq-live-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.mq-live-info {
    flex-grow: 1;
}

.mq-live-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.mq-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.mq-live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #e53e3e;
    border-radius: 50%;
    display: inline-block;
}

.mq-live-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    white-space: nowrap;
    transition: opacity .2s;
}

.mq-live-card:hover .mq-live-action {
    opacity: 0.88;
}

/* Subjects list */
.mq-subjects-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mq-subject-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 14px;
    padding: 20px 24px;
    border: 1.5px solid transparent;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    color: inherit;
    text-decoration: none;
}

.mq-subject-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 160, 118, 0.3);
    color: inherit;
}

.mq-subject-num {
    font-size: 22px;
    font-weight: 800;
    color: rgba(19, 160, 118, 0.22);
    min-width: 42px;
    line-height: 1;
    letter-spacing: -1px;
}

.mq-subject-body {
    flex-grow: 1;
}

.mq-subject-name {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mq-subject-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.mq-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.mq-meta i {
    font-size: 13px;
    color: #ccc;
}

.mq-meta-group {
    color: #666;
}

.mq-meta-group i {
    color: var(--main-color);
    opacity: 0.7;
}

.mq-meta-date {
    color: #d97706;
}

.mq-meta-date i {
    color: #d97706;
    opacity: 0.8;
}

.mq-subject-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    transition: background .2s, color .2s;
}

.mq-subject-card:hover .mq-subject-arrow {
    background: var(--main-color);
}

/* Empty state */
.mq-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.mq-empty-icon {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ccc;
    margin-bottom: 20px;
}

.mq-empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.mq-empty-desc {
    font-size: 15px;
    color: #999;
    max-width: 380px;
    line-height: 1.6;
}

.mq-button {
    margin-top: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .mq-page-area {
        padding: 40px 0 60px;
    }

    .mq-page-header {
        gap: 14px;
        margin-bottom: 30px;
    }

    .mq-page-title {
        font-size: 22px;
    }

    .mq-live-card {
        flex-wrap: wrap;
        gap: 14px;
    }

    .mq-live-action {
        width: 100%;
        justify-content: center;
    }

    .mq-subject-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .mq-subject-num {
        display: none;
    }

    .mq-subject-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mq-page-header-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .mq-meta-date {
        width: 100%;
    }
}

/* ===== Dərsler səhifəsi (group-based video view) ===== */

/* Sidebar header */
.dl-sidebar-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid #e8e6e1;
    background: var(--second-color);
    color: white;
}

.dl-sidebar-subject {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.dl-sidebar-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    opacity: 0.65;
}

.dl-sidebar-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Back button in video footer */
.dl-back-btn {
    height: 38px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 8px;
    gap: 8px;
}

/* Exam tag in ca-meta */
.dl-exam-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(229, 62, 62, 0.12);
    color: #e53e3e;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
}

/* Exam link inside accordion */
.dl-exam-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.07);
    border: 1.5px solid rgba(229, 62, 62, 0.2);
    border-radius: 10px;
    padding: 11px 16px;
    transition: .2s all;
    margin-bottom: 4px;
}

.dl-exam-link:hover {
    background: rgba(229, 62, 62, 0.13);
    border-color: rgba(229, 62, 62, 0.4);
    color: #e53e3e;
}

.dl-exam-link .fe-arrow-right {
    margin-left: auto;
}

/* Files block inside accordion */
.dl-files-block {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #ddd;
}

.dl-files-label {
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dl-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background .15s;
    margin-bottom: 4px;
}

.dl-file-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #333;
}

.dl-file-icon {
    width: 22px;
    height: auto;
    flex-shrink: 0;
}

.dl-file-item .fe-download {
    margin-left: auto;
    color: #bbb;
    font-size: 14px;
}

/* Empty states */
.dl-empty-blocks {
    font-size: 13px;
    color: #bbb;
    padding: 6px 0;
    font-style: italic;
}

.dl-sidebar-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    color: #bbb;
    font-size: 14px;
    text-align: center;
}

.dl-sidebar-empty i {
    font-size: 32px;
}

/* No video placeholder */
.dl-no-video {
    aspect-ratio: 16/9;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #555;
}

.dl-no-video i {
    font-size: 42px;
}

.dl-no-video span {
    font-size: 14px;
}


/* ===== Dərsler — locked / done / action icons ===== */

/* Locked accordion */
.dl-locked>.course-accordion-title {
    cursor: default !important;
    opacity: 0.55;
}

.dl-locked>.course-accordion-title::before {
    display: none;
}

.dl-lock-icon {
    font-size: 13px;
    color: #aaa;
    margin-right: 6px;
    flex-shrink: 0;
}

.dl-done-icon {
    font-size: 14px;
    color: var(--main-color);
    margin-right: 6px;
    flex-shrink: 0;
}

/* Unlock date badge */
.dl-unlock-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
    white-space: nowrap;
}

.dl-unlock-date i {
    font-size: 12px;
}

/* ca-right: flex container for meta + icons */
.ca-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    width: 100%;
    margin-top: 3px;
}

/* Action icon buttons (exam, files) in accordion title */
.ca-action-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ca-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background .15s, color .15s;
    cursor: pointer;
    text-decoration: none;
}

.ca-exam-btn {
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.08);
}

.ca-exam-btn:hover {
    background: rgba(229, 62, 62, 0.18);
    color: #e53e3e;
}

.ca-files-btn {
    color: var(--main-color);
    background: rgba(19, 160, 118, 0.08);
}

.ca-files-btn:hover {
    background: rgba(19, 160, 118, 0.18);
    color: var(--main-color);
}

/* Sidebar progress pill */
.dl-sidebar-progress-pill {
    background: rgba(19, 160, 118, 0.25);
    color: #a0f0d8;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    margin-left: auto;
}

/* Exam row separator inside accordion */
.dl-exam-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e0ddd8;
}


/* ===== Mənim Qruplarım — İmtahanlar bölməsi ===== */

.mq-section-link {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity .15s;
}

.mq-section-link:hover {
    opacity: 0.75;
    color: var(--main-color);
}

/* Exam grid */
.mq-exam-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mq-exam-grid .mq-exam-card {
    flex: 1 1 300px;
}

.mq-exam-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1.5px solid transparent;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mq-exam-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.mq-exam-passed {
    border-color: rgba(19, 160, 118, 0.25);
    background: linear-gradient(to bottom right, #fff, #f0faf6);
}

.mq-exam-failed {
    border-color: rgba(229, 62, 62, 0.18);
    background: linear-gradient(to bottom right, #fff, #fff8f8);
}

/* Card top row */
.mq-exam-card-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mq-exam-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--second-color), #1a5060);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.mq-exam-passed .mq-exam-icon-box {
    background: linear-gradient(135deg, var(--main-color), #0d8060);
}

.mq-exam-failed .mq-exam-icon-box {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.mq-exam-info {
    flex-grow: 1;
    min-width: 0;
}

.mq-exam-subject {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mq-exam-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mq-exam-group {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Last result row */
.mq-exam-last-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f7f5;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #666;
}

.mq-exam-status-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-passed {
    background: var(--main-color);
}

.dot-failed {
    background: #e53e3e;
}

.mq-exam-status-text {
    line-height: 1.3;
}

/* Action buttons */
.mq-exam-actions {
    display: flex;
    gap: 8px;
}

.mq-exam-start-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--main-color);
    color: black;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: opacity .15s;
    white-space: nowrap;
}

.mq-exam-start-btn:hover {
    opacity: 0.85;
}

.mq-exam-result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #f4f4f2;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background .15s;
    white-space: nowrap;
}

.mq-exam-result-btn:hover {
    background: #e8e8e5;
    color: #333;
}

@media (max-width: 600px) {
    .mq-exam-grid .mq-exam-card {
        flex: 0 0 100%;
    }

    .mq-section-link {
        display: none;
    }
}



/* Author */
.author-area {
    padding: 60px 0;
}

.author-profile-avatar .circle-avatar {
    width: 70px;
    height: 70px;
    font-size: 26px;
}

.author-panel {
    margin-bottom: 30px;
}


/* Search */
.all-search-area {
    padding: 60px 0;
}

@media (max-width: 960px) {
    .subject-header-blocks {
        gap: 30px;
    }

    .shb-1,
    .shb-2 {
        width: 100%;
        flex: 0 0 100%;
    }

    .single-subject-name {
        font-size: 30px;
    }

    .course-block-1 {
        width: 100%;
    }

    .course-block-2 {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   NETFLIX-STYLE KURS UI (active-course-body)
   ═══════════════════════════════════════════════════════ */

/* Dark page */
body.active-course-body #site-header {
    background: #000 !important;
    border-bottom: 1px solid #222 !important;
}

body.active-course-body #footer,
body.active-course-body .footer-area,
body.active-course-body .footer-bottom-area {
    background: #000 !important;
    border-top: 1px solid #222 !important;
    color: #888 !important;
}

body.active-course-body #footer a {
    color: #aaa !important;
}

/* Eski sidebar, footer width override-ları ləğv et */
body.active-course-body #footer {
    width: 100% !important;
}

body.active-course-body .acb-2 {
    display: none;
}

.single-course-area {
    padding: 60px 0;
}

/* ── NF Wrap ── */
.nf-wrap {
    min-height: 60vh;
}

/* ── Player ── */
.nf-player-wrap {
    background: #000;
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.nf-player-wrap.nf-player-open {
    max-height: 900px;
}

.nf-video-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.nf-video-container video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    background: #000;
}

.nf-player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: #111;
    border-bottom: 1px solid #222;
    min-height: 52px;
}

.nf-minimize-btn,
.nf-back-header-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px 8px;
    font-size: 18px;
    line-height: 1;
    transition: color .2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nf-minimize-btn:hover,
.nf-back-header-btn:hover {
    color: #fff;
}

.nf-player-title {
    flex: 1;
    font-size: 14px;
    color: #e5e5e5;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nf-player-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Progress overrides for dark bg */
.nf-player-wrap .course-progress-track {
    background: #333;
}

.nf-player-wrap .course-progress-label {
    color: #aaa;
}

.nf-complete-btn {
    background: var(--primary-color, #2cb67d);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: opacity .2s;
}

.nf-complete-btn:hover {
    opacity: .85;
}

.nf-complete-btn.btn-completed {
    opacity: .4;
    pointer-events: none;
}

/* ── Course Header ── */
.nf-course-header {
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid #222;
}

.nf-back-btn {
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    transition: color .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nf-back-btn:hover {
    color: #fff;
}

.nf-course-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    min-width: 0;
}

.nf-teacher-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    flex-shrink: 0;
}

.nf-teacher-link:hover {
    color: #ccc;
}

.nf-course-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: #666;
    flex-shrink: 0;
}

.nf-progress-pill {
    background: var(--primary-color, #2cb67d);
    color: #fff;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
}

/* ── Seasons ── */
.nf-seasons {
    padding-bottom: 60px;
}

.nf-season {
    padding: 32px 40px;
}

.nf-season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.nf-season-title {
    font-size: 18px;
    color: #e5e5e5;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    line-height: 1.3;
}

.nf-season-num {
    color: #555;
    font-size: 12px;
    font-weight: 500;
    background: #2a2a2a;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.nf-season-locked .nf-season-title {
    color: #555;
}

.nf-lock-icon {
    color: #f0a500;
    font-size: 14px;
}

.nf-done-icon {
    color: var(--primary-color, #2cb67d);
    font-size: 15px;
}

.nf-season-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nf-season-count {
    font-size: 13px;
    color: #555;
}

.nf-unlock-date {
    font-size: 13px;
    color: #f0a500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nf-season-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nf-exam-tag-btn,
.nf-files-tag-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    height: 34px;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    font-family: var(--font-family);
    line-height: 1;
}

.nf-exam-tag-btn:hover,
.nf-files-tag-btn:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.nf-exam-tag-btn {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: #fff;
    box-shadow: 0 4px 14px rgba(229, 62, 62, .4);
}

.nf-exam-tag-btn:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(229, 62, 62, .55);
}

.nf-files-tag-btn {
    background: linear-gradient(135deg, #2cb67d, #1e9162);
    color: #fff;
    box-shadow: 0 4px 14px rgba(44, 182, 125, .35);
}

.nf-files-tag-btn:hover {
    box-shadow: 0 6px 20px rgba(44, 182, 125, .5);
}

.nf-exam-season-tag {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    padding: 7px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(229, 62, 62, .4);
}

/* ── Cards Row ── */
.nf-cards-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    padding: 50px;
    margin: -50px;
}

.nf-cards-row::-webkit-scrollbar {
    height: 4px;
}

.nf-cards-row::-webkit-scrollbar-track {
    background: transparent;
}

.nf-cards-row::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 2px;
}

/* ── Card ── */
.nf-card {
    flex-shrink: 0;
    width: 220px;
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, outline .1s;
    position: relative;
    outline: 2px solid transparent;
}

.nf-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .8);
    z-index: 2;
}

.nf-card.nf-card-active {
    outline: 2px solid var(--primary-color, #2cb67d);
}

.nf-card-thumb {
    position: relative;
    aspect-ratio: 180/252;
    overflow: hidden;
    background: #2a2a2a;
}

.nf-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s;
}

.nf-card:hover .nf-card-thumb img {
    opacity: .6;
}

.nf-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a3a3a;
    font-size: 38px;
    transition: color .2s;
}

.nf-card:hover .nf-card-placeholder {
    color: #555;
}

.nf-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
    background: rgba(0, 0, 0, .25);
}

.nf-card:hover .nf-play-overlay {
    opacity: 1;
}

.nf-play-circle {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .92);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.nf-watched-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-color, #2cb67d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
}

.nf-card-footer {
    padding: 10px 12px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.nf-card-num {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    line-height: 1;
    flex-shrink: 0;
    min-width: 28px;
    font-family: 'Poppins', sans-serif;
}

.nf-card-name {
    font-size: 13px;
    color: #bbb;
    line-height: 1.4;
    margin-top: 5px;
}

/* Locked season cards */
.nf-locked-row .nf-card {
    pointer-events: none;
    filter: blur(2px);
    opacity: .3;
}

/* ── Exam card ── */
.nf-exam-card-link {
    flex-shrink: 0;
    text-decoration: none;
    display: block;
    width: 220px;
}

.nf-exam-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1f1f1f;
    border: 1px dashed #333;
    border-radius: 8px;
    color: #888;
    padding: 24px 20px;
    min-height: 124px;
    text-align: center;
    font-size: 13px;
    transition: background .2s, color .2s, border-color .2s;
}

.nf-exam-card-link:hover .nf-exam-card-inner {
    background: #2a2a2a;
    color: #fff;
    border-color: #555;
}

.nf-exam-card-inner i {
    font-size: 22px;
}

/* ── Files block ── */
.nf-files-block {
    margin: 14px 0 0;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 16px 20px;
}

.nf-files-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nf-files-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nf-file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #252525;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    color: #bbb;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.nf-file-item:hover {
    background: #2f2f2f;
    color: #fff;
}

.nf-file-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Empty states ── */
.nf-empty-season,
.nf-empty-course {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    padding: 16px 0;
}

.nf-empty-course {
    padding: 60px 40px;
    flex-direction: column;
    font-size: 16px;
}

.nf-empty-course i {
    font-size: 40px;
}

/* ── Admin block cover field ── */
.db-cover {
    padding: 6px 0 2px;
}

.db-cover-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nf-course-header {
        padding: 16px 20px 12px;
    }

    .nf-season {
        padding: 24px 20px;
    }

    .nf-course-title {
        font-size: 16px;
    }

    .nf-season-title {
        font-size: 15px;
    }

    .nf-card {
        width: 160px;
    }

    .nf-card-num {
        font-size: 20px;
    }

    .nf-player-header {
        padding: 8px 14px;
    }

    .nf-course-meta {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nf-course-header {
        padding: 12px 14px 10px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nf-course-header .nf-back-btn,
    .nf-course-header .nf-course-title,
    .nf-course-header .nf-course-meta {
        width: 100%;
    }

    .nf-course-meta {
        flex-wrap: wrap;
    }
}



/* ═══════════════════════════════════════════════════════
   GLOBAL DARK THEME (Netflix-style)
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variable overrides ── */
:root {
    --light-color: #141414;
    --color-background-primary: #110e0e;
    --color-background-secondary: #252525;
    --color-background-tertiary: #2e2e2e;
    --color-text-primary: #e5e5e5;
    --color-text-secondary: #aaa;
    --color-text-tertiary: #777;
    --color-border-tertiary: rgba(255, 255, 255, 0.08);
    --color-border-secondary: rgba(255, 255, 255, 0.14);
    --color-border-primary: rgba(255, 255, 255, 0.22);
    --border-color: #383838;
    --text-color: #aaa;
    /* Chat / Notify variables */
    --card-bg: #110e0e;
    --body-bg: #141414;
    --text-muted: #888;
    --primary-light: rgba(78, 115, 223, 0.15);
    --primary-lightest: rgba(78, 115, 223, 0.1);
}

/* ── Base ── */
a,
:visited {
    color: #e5e5e5;
}

/* ── Site Header ── */
#site-header {
    background: #0a0a0a !important;
    border-bottom: 1px solid #222;
}

#site-navigation-wrap .master-main-menu>.menu-item>a {
    color: #e5e5e5;
}

#site-navigation-wrap .master-main-menu>.menu-item>a:hover {
    color: #fff;
}

#site-navigation-wrap .sub-menu,
#header-aside .sub-menu {
    background: #1c1c1c;
    border-color: #333;
}

#site-navigation-wrap .sub-menu a {
    color: #e5e5e5;
}

#site-navigation-wrap .sub-menu a:hover {
    background: #2a2a2a;
    color: #fff;
}

/* ── Mobile Menu ── */
.mobile-menu-area {
    background: #111;
}

.mobile-menu-area a,
.mobile-menu-close {
    color: #e5e5e5;
}

.mobile-menu-area .menu-item-has-children>a {
    color: #888;
}

.mobil-menu-line-icon span {
    background: #e5e5e5;
}

/* ── Page header (sidebar variant) ── */
#page-header {
    background: #141414;
    border-bottom-color: #2a2a2a;
}

/* ── Form inputs ── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    background: #110e0e;
    color: #e5e5e5;
    border-color: #383838;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    color: #666;
}

input[type=radio] {
    background: #110e0e;
}

input[type=checkbox] {
    background: #110e0e;
}

input[type=file]::file-selector-button {
    background: #2a2a2a;
    border-color: #383838;
    color: #e5e5e5;
}

/* ── Progress bar ── */
.course-progress-track {
    background: #333;
}

/* ── Subject cards (listing page) ── */
.subject-block {
    background: #110e0e;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.subject-block:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.subject-details h3 {
    color: #e5e5e5;
}

.subject-bottom {
    background: #110e0e;
    border-top-color: #2e2e2e;
}

.subject-author {
    color: #888;
}

.subject-meta {
    color: #666;
}


.course-accordion-content {
    background: #161616;
    border-color: #2e2e2e;
}

.course-list {
    border-bottom-color: #2e2e2e;
}

.course-list-item {
    color: #e5e5e5;
}

.course-heading {
    color: #e5e5e5;
}

/* ── Active course side panel ── */
.acb-2 {
    background: #141414;
}

/* ── Sidebar type items ── */
.sidebar-type-item a {
    background: #222;
    color: #e5e5e5;
}

.sidebar-post-item a {
    color: #e5e5e5;
}

.widget-archives a {
    color: #e5e5e5;
    border-bottom-color: #2a2a2a;
}

.widget-archives a:before {
    color: #e5e5e5;
}

.sidebar-search input {
    background: #110e0e;
    border-color: #383838;
    color: #e5e5e5;
}

/* ── Post listing ── */
.master-post-date {
    background: #110e0e;
    color: #e5e5e5;
}

.master-post-excerpt {
    color: #aaa;
}

/* ── Post navigation ── */
#post-navigation-wrap {
    background: #141414;
}

.post-navigation a {
    color: #e5e5e5;
}

/* ── Single post meta ── */
.single-post-date,
.single-post-meta a {
    color: #aaa;
}

.single-post-date:before {
    color: #aaa;
}

/* ── FAQ accordion ── */
.master-accordion-title {
    color: #e5e5e5;
    border-bottom-color: #2a2a2a;
}

.master-accordion-content {
    color: #e5e5e5;
}

/* ── Search results ── */
.search-title a {
    color: #e5e5e5;
    border-bottom-color: #333;
}

/* ── Comments ── */
.comment-count-heading {
    border-bottom-color: #333;
}

/* ── Language switcher ── */
.language-dropdown-switcher .ls-sub-menu {
    background: #1c1c1c;
}

.language-list-switcher .language-label {
    color: #e5e5e5;
}

/* ── WhatsApp tooltip ── */
.whatsapp-toolbar-text span {
    background: #110e0e;
    color: #e5e5e5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* ── "Mənim Qruplarım" account cards ── */
.mq-page-title {
    color: #e5e5e5;
}

.mq-page-subtitle {
    color: #888;
}

.mq-section-heading {
    color: #e5e5e5;
}

.mq-page-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mq-live-card {
    background: #110e0e;
}

.mq-live-name {
    color: #e5e5e5;
}

.mq-subject-card {
    background: #110e0e;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.mq-subject-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #e5e5e5;
}

.mq-subject-name {
    color: #e5e5e5;
}

.mq-meta {
    color: #888;
}

.mq-meta i {
    color: #555;
}

/* Exam / MIQ page cards */
.mq-exam-card {
    background: #110e0e !important;
    border-color: #2e2e2e !important;
    color: #e5e5e5 !important;
}

/* ── Headings ── */
.heading {
    color: #e5e5e5;
}

.subjects-area .heading {
    color: #e5e5e5;
}

.mq-section-heading {
    color: #e5e5e5;
}

/* ── "No author" avatar placeholder ── */
.no-image-author:before {
    background: #222;
    border-color: #333;
}

/* ── Scroll-to-top button ── */
#site-scroll-top {
    background: rgba(255, 255, 255, 0.1);
}

/* ── Master post title ── */
.master-post-title {
    color: var(--main-color);
}

/* ── Buttons ── */
.outline-button {
    background: #222;
    color: #e5e5e5;
    border-color: var(--main-color);
}

.outline-button:hover {
    color: #fff;
}

button:disabled {
    background: #2a2a2a;
    color: #555;
    border-color: #383838;
}

/* ── Forms / file upload ── */
.form-simple-file label {
    border-color: #383838;
}

.fsf-button {
    background: #2a2a2a;
    border-color: #383838;
    color: #e5e5e5;
}

.faf-item i {
    background: #222;
    border-color: #383838;
    color: #888;
}

/* ── "Mənim Qruplarım" empty states ── */
.mq-empty-state {
    background: #110e0e;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.mq-empty-icon {
    background: #2a2a2a;
    color: #555;
}

.mq-empty-title {
    color: #e5e5e5;
}

.mq-empty-desc {
    color: #888;
}


/* ── Old lesson view (dl-* sidebar) ── */
.dl-file-item {
    color: #aaa;
}

.dl-file-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #e5e5e5;
}

.dl-file-item .fe-download {
    color: #555;
}

.dl-files-block {
    border-top-color: #333;
}

/* ── Sidebar (site sidebar) ── */
#sidebar .master-sidebar-title {
    color: #e5e5e5;
}

/* ── Author page ── */
.author-area {
    color: #e5e5e5;
}

/* ── body.active-course-body is now globally dark, keep specifics ── */
body.active-course-body #footer {
    width: 100% !important;
}


/* ════════════════════════════════════════
   MOBILE BOTTOM NAV
   ════════════════════════════════════════ */

.mob-bottom-nav {
    display: none;
}

@media (max-width: 850px) {

    .mob-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #0e0e0e;
        border-top: 1px solid #222;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, .4);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mob-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 10px 0 12px;
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
        transition: color .15s;
    }

    .mob-nav-item i {
        font-size: 22px;
        line-height: 1;
    }

    .mob-nav-item span {
        line-height: 1;
        opacity: 0.5;
    }

    .mob-nav-item.mob-nav-active,
    .mob-nav-item:hover {
        color: var(--main-color);
    }

    /* Push page content above the nav bar */
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    /* Plyr fullscreen-də mobile nav-ı gizlət (control düymələri tam görünsün) */
    body.plyr-fs-active .mob-bottom-nav,
    body:has(.plyr--fullscreen-fallback) .mob-bottom-nav,
    body:has(.plyr--fullscreen-active) .mob-bottom-nav {
        display: none;
    }
}













/* ===== Header search (icon → animated expand) ===== */
.header-aside {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}

.header-search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, color .15s, transform .25s, opacity .2s;
    padding: 0;
    line-height: 1;
}

.header-search-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.header-search-toggle i {
    font-size: 20px;
    line-height: 1;
}

.header-search-form {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    height: 40px;
    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: width .35s cubic-bezier(.4, 0, .2, 1), opacity .25s, border-color .2s, box-shadow .2s;
}

.header-search.is-open .header-search-form {
    width: 320px;
    opacity: 1;
    pointer-events: auto;
    border-color: var(--main-color);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.header-search.is-open .header-search-toggle {
    transform: scale(.85);
    opacity: 0;
    pointer-events: none;
}

.header-search-form input {
    flex: 1;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0 8px 0 18px;
    font-size: 14px;
    color: #e5e5e5;
    outline: none;
    min-width: 0;
}

.header-search-form input::placeholder {
    color: #666;
}

.header-search-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    color: #888;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    margin-right: 3px;
    flex-shrink: 0;
    transition: color .15s, background .15s;
}

.header-search-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1000px) {
    .header-search {
        margin-right: 4px;
    }

    .header-search.is-open .header-search-form {
        width: 260px;
    }
}

@media (max-width: 850px) {
    .header-search {
        display: none;
    }
}

/* ===== Netflix-style hero banner ===== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0b0b0b;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-banner-noimg {
    background: linear-gradient(135deg, #1a1a1a 0%, #0b0b0b 60%, var(--second-color) 100%);
}

.hero-banner-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.hero-banner-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #0b0b0b 100%);
    pointer-events: none;
}

.hero-banner-content {
    max-width: 600px;
    color: #fff;
    padding: 80px 0;
}

.hero-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-banner-eyebrow i {
    font-size: 14px;
}

.hero-banner-title {
    font-size: clamp(32px, 4.4vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 0 0 18px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-banner-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 22px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.hero-banner-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 0 0 28px;
}

.hero-banner-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}

.hero-banner-author-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

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

.hero-banner-author-img .circle-avatar {
    width: 100%;
    height: 100%;
    font-size: 12px;
}

.hero-banner-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    backdrop-filter: blur(6px);
}

.hero-banner-price:empty {
    display: none;
}

.hero-banner-price .s-sale-price {
    text-decoration: line-through;
    opacity: 0.55;
    font-weight: 500;
    font-size: 14px;
}

.hero-banner-price .s-price {
    color: var(--main-color);
}

.hero-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn-play,
.hero-btn-info {
    height: 52px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    color: black;
}

.hero-btn-play i {
    font-size: 18px;
}

.hero-btn-info {
    background: rgba(180, 180, 180, 0.3) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    backdrop-filter: blur(6px);
}

.hero-btn-info:hover {
    background: rgba(180, 180, 180, 0.5) !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    .hero-banner {
        min-height: 520px;
    }

    .hero-banner-fade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.95) 100%);
    }

    .hero-banner-content {
        max-width: 100%;
        padding: 60px 0 40px;
    }
}

@media (max-width: 600px) {
    .hero-banner {
        min-height: 460px;
    }

    .hero-banner-desc {
        font-size: 15px;
    }

    .hero-btn-play,
    .hero-btn-info {
        height: 46px;
        padding: 0 20px;
        font-size: 14px;
        color: black;
    }
}

/* ===== Ders Preview (non-enrolled / guest) Netflix-style cards ===== */
.ders-preview-area {
    background: #0b0b0b;
    color: #e5e5e5;
    padding: 50px 0;
}

.ders-preview-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.ders-preview-heading {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.ders-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #888;
    font-size: 14px;
}

.ders-preview-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ders-preview-meta i {
    font-size: 14px;
    color: var(--main-color);
}

.ders-preview-seasons {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dp-season {
    padding: 0;
}

.dp-season-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dp-season-title {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.dp-season-count {
    font-size: 13px;
    color: #666;
    background: #1f1f1f;
    padding: 4px 10px;
    border-radius: 99px;
}

.dp-cards-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 24px;
    margin: -24px;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.dp-cards-row::-webkit-scrollbar {
    height: 4px;
}

.dp-cards-row::-webkit-scrollbar-track {
    background: transparent;
}

.dp-cards-row::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 2px;
}

.dp-card {
    flex-shrink: 0;
    width: 220px;
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    outline: none;
    user-select: none;
    transition: transform .2s, box-shadow .2s;
}

.dp-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .8);
    z-index: 2;
}

.dp-card-thumb {
    position: relative;
    aspect-ratio: 180/252;
    overflow: hidden;
    background: #2a2a2a;
}

.dp-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s;
}

.dp-card:hover .dp-card-thumb img {
    opacity: .6;
}

.dp-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a3a3a;
    font-size: 38px;
}

.dp-empty {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 6px;
}

.enroll-btn-pulse {
    animation: enrollBtnPulse 1.6s ease;
}

@keyframes enrollBtnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 233, 12, 0);
    }

    20% {
        box-shadow: 0 0 0 8px rgba(247, 233, 12, .55);
    }

    60% {
        box-shadow: 0 0 0 14px rgba(247, 233, 12, 0);
    }
}

@media (max-width: 600px) {
    .ders-preview-area {
        padding: 36px 0 50px;
    }

    .ders-preview-heading {
        font-size: 22px;
    }

    .dp-season {
        padding: 16px 14px;
    }

    .dp-card {
        width: 160px;
    }
}

/* ===== Ders tabs (Dərslər / Şərhlər) ===== */
[data-tab-content][hidden] {
    display: none !important;
}

.ders-tabs-nav-wrap {
    background: #0b0b0b;
    border-bottom: 1px solid #1a1a1a;
    padding: 0;
    z-index: 5;
}

.ders-tabs-nav {
    display: flex;
    gap: 4px;
    padding: 0 40px;
}

.ders-tabs-nav-wrap-light .ders-tabs-nav {
    padding: 0;
}

.ders-tab-btn {
    background: transparent;
    color: #888;
    border: 0;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color .15s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.ders-tab-btn:hover {
    color: #ddd;
}

.ders-tab-btn i {
    font-size: 15px;
}

.ders-tab-btn.active {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}

@media (max-width: 600px) {
    .ders-tabs-nav {
        padding: 0 14px;
        gap: 0;
    }

    .ders-tab-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ===== Ders comments ===== */
.ders-comments-area {
    background: #0b0b0b;
    color: #e5e5e5;
    padding: 30px 0 60px;
}

.ders-comments-head {
    margin-bottom: 20px;
}

.ders-comments-heading {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ders-comments-heading i {
    color: var(--main-color);
}

.ders-comments-count {
    background: #1f1f1f;
    color: #aaa;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 99px;
    font-weight: 600;
}

.ders-comment-form {
    background: #141414;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.ders-comment-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    color: #e5e5e5;
    font-size: 15px;
    line-height: 1.5;
    resize: vertical;
    min-height: 70px;
    outline: none;
    padding: 4px 4px 12px;
    font-family: inherit;
}

.ders-comment-form textarea::placeholder {
    color: #555;
}

.ders-comment-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid #1f1f1f;
    padding-top: 12px;
}

.ders-comment-form-note {
    color: #666;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ders-comment-form-bottom .button {
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 8px;
}

.ders-comment-form-result {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    min-height: 0;
}

.ders-comment-form-result.is-success {
    color: var(--main-color);
}

.ders-comment-form-result.is-error {
    color: #e53e3e;
}

.ders-comments-locked {
    background: #141414;
    border: 1px dashed #2a2a2a;
    border-radius: 12px;
    padding: 18px;
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.ders-comments-locked i {
    color: var(--main-color);
    font-size: 16px;
}

.ders-comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ders-comment {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ders-comment-avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

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

.ders-comment-avatar .circle-avatar {
    width: 100%;
    height: 100%;
    font-size: 13px;
}

.ders-comment-body {
    flex: 1;
    min-width: 0;
    background: #141414;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 12px 14px;
}

.ders-comment-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.ders-comment-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.ders-comment-date {
    color: #666;
    font-size: 12px;
}

.ders-comment-text {
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.55;
    word-wrap: break-word;
}

.ders-comments-empty {
    background: #141414;
    border: 1px dashed #2a2a2a;
    border-radius: 12px;
    padding: 26px;
    text-align: center;
    color: #666;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ders-comments-empty i {
    font-size: 22px;
    color: #444;
}

/* ********************** */
/* ********************** */
/* ********************** */
/* ********************** */
/* ********************** */
/* ********************** */
/* ********************** */
/* ********************** */