﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: #ffe6c8;
    color: #000000;
}

::-webkit-selection {
    background-color: #ffe6c8;
    color: #000000;
}

.loader-con {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-img {
    width: 250px;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif !important;
    background-color: #fff9f1;
}

.success-toast {
    background-color: #28a745;
    color: white;
}

.warning-toast {
    background-color: #ffc107;
    color: black;
}

.danger-toast {
    background-color: #dc3545;
    color: white;
}

.info-toast {
    background-color: #17a2b8;
    color: white;
}

.side-navbar {
    width: 80px;
    height: 100%;
    position: fixed;
    background-color: #6b2408;
    transition: 0.5s;
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / 1%) !important;
    z-index: 999;
}

    .side-navbar.active-nav {
        width: 300px;
    }

        .side-navbar.active-nav .close-menu, .side-navbar .open-menu {
            display: none;
        }

        .side-navbar.active-nav .open-menu {
            display: block;
        }

    .side-navbar .sidebar-ul .nav-link span {
        display: none;
    }

    .side-navbar.active-nav .sidebar-ul .nav-link span {
        display: inline-block;
    }

    .side-navbar.active-nav .sidebar-ul li {
        color: rgb(255, 255, 255);
        cursor: pointer;
        outline: 0px;
        margin: 0px;
        text-decoration: none;
        border-radius: 0px;
        padding: 15px 10px 15px 40px;
        text-align: left;
        margin-bottom: 1px;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #792b0c;
    }

    .side-navbar.active-nav .sidebar-footer {
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding: 10px 30px;
        width: 100%;
        background: #6b2408;
    }

    .side-navbar .sidebar-footer {
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding: 10px 0px;
        width: 80px;
        background: #6b2408;
        text-align: center;
    }

    .side-navbar .sidebar-ul li {
        color: rgb(255, 255, 255);
        cursor: pointer;
        outline: 0px;
        margin: 0px;
        text-decoration: none;
        border-radius: 0px;
        padding: 15px 10px 15px 20px;
        text-align: left;
        margin-bottom: 1px;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #792b0c;
    }

.nav-link:active,
.nav-link:focus,
.nav-link:hover {
    background-color: #00000000;
}

.my-container {
    transition: 0.4s;
    margin-left: 80px;
    position:relative;
}

.side-navbar.active-nav {
    width: 300px;
}

.active-nav {
    margin-left: 0;
}

/* for main section */
.active-cont {
    margin-left: 300px;
}

#menu-btn {
    color: #000000;
    margin-left: 0px;
    position: relative;
    top: 6px;
}

    #menu-btn i {
        font-size: 20px;
        position: relative;
        top: -1px;
    }

.profile-dropdown {
    background: white !important;
    box-shadow: 0 0.2rem 2rem 2px rgb(0 0 0 / 2%) !important;
    border: 1px solid #e4e4e4 !important;
    border-radius: 8px !important;
}

.sidebar-ul {
    padding: 0px 0px 5px 0px;
    overflow-y: auto;
    height: calc(100vh - 160px);
    display: block;
}

    .sidebar-ul li {
        color: rgb(255, 255, 255);
        cursor: pointer;
        outline: 0px;
        margin: 0px;
        text-decoration: none;
        border-radius: 0px;
        padding: 15px 10px 15px 40px;
        text-align: left;
        margin-bottom: 1px;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #792b0c;
    }

        .sidebar-ul li:hover {
            color: #ffffff;
            border-bottom: 1px solid #792b0c !important;
            background: #802f0f;
        }

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

span.bd-item {
    font-size: 18px;
    display: inline-block;
    padding: 0px 0px 0px 5px;
    color: #747474;
    font-weight: 500;
}

.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    color: white;
}

    .sidebar h2 {
        text-align: center;
        color: #fff;
    }

    .sidebar ul {
        list-style-type: none;
        padding: 0;
    }

        .sidebar ul li {
            padding: 15px;
            position: relative;
        }

            .sidebar ul li a {
                color: white;
                text-decoration: none;
                display: block;
            }

            .sidebar ul li:hover {
                background-color: #575757;
            }

.dropdown-content,
.submenu {
    display: none;
    padding-left: 20px;
    list-style: none;
}


.has-submenu .submenu li {
    padding: 5px 0;
}


.dropdown.active .dropdown-content,
.has-submenu.active .submenu {
    display: block;
}



.dropdown-title {
    color: #1aabf5;
    font-weight: 500;
    display: table;
    background: #112d5c;
    position: relative;
    z-index: 999;
    padding-right: 5px;
}


.drop-icon {
    color: rgb(255 255 255);
    font-size: 14px;
}

.side-icon {
    width: 20px;
    margin-right: 5px;
}

.img-set {
    position: relative;
    top: -2px;
}

.dropdown-content li a {
    font-size: 17px !important;
    color: #cfe0ff !important;
    font-weight: 400 !important;
}

.sidebar-footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 10px 30px;
    width: 300px;
    background: #6b2408;
}

.version-text {
    font-size: 15px;
    text-align: center;
    color: rgb(171, 171, 171);
    opacity: 0.7;
}

/*.dropdown-img::-webkit-scrollbar {
    width: 10px;
}*/

/* Track */
/*.dropdown-img::-webkit-scrollbar-track {
    background: #d1d1d1;
}*/

/* Handle */
/*.dropdown-img::-webkit-scrollbar-thumb {
    background: #808080 !important;
}*/

    /* Handle on hover */
    /*.dropdown-img::-webkit-scrollbar-thumb:hover {
        background: #555;
    }*/

@media (max-width:767px) {
    .topbar-title-con {
        margin-left: 40px;
    }

    .cust-int, .sortby-text, .btn-search {
        font-size: 1.1rem !important;
    }

    #menu-btn {
        color: #000000;
        margin-left: 0px;
        position: absolute;
        z-index: 999 !important;
        left: 300px !important;
        transition: 0.5s;
        background: white;
        padding: 10px 10px 5px 10px;
        top: 15px;
    }

    .article-body-con {
        font-size: 18px !important;
    }

    .sec-title {
        font-size: 22px !important;
    }

    .apexcharts-text tspan {
        font-size: 0.9rem !important;
    }

    span.bd-item {
        padding: 0px 0px 0px 5px;
    }

    .active-cont {
        margin-left: 0px !important;
    }

    #menu-btn.menu-btn-cls {
        left: 0px !important;
    }

    .page-title {
        margin-left: 5px !important;
    }
}
.media-text{
    font-size:16px !important;
}




.header-sec {
    padding: 15px 0px;
    /*    box-shadow: 0 2px 4px 0px rgb(244 204 174) !important;*/
    outline: 1px solid rgb(244 204 174);
}

.btn-pin {
    background: transparent;
    border: 0px;
    position: relative;
    top: -4px;
    display: none;
}

    .btn-pin img {
        width: 20px;
    }

.dropdown-img li:hover .btn-pin {
    display: block;
}

.dropdown-img li:hover a {
    color: white;
}

.credit-count {
    border: 2px solid #ff790d;
    padding: 5px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}




.sidebar-icon {
    width: 25px;
    margin-right: 8px;
}

li.nav-link.active {
    background: rgb(255 121 13);
}

.social-media-ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: block;
}

    .social-media-ul li {
        width: 20%;
        padding: 10px;
        float: left;
    }

@media (max-width:1200px) {

    .social-media-ul li {
        width: 25%;
        padding: 10px;
        float: left;
    }
}

@media (max-width:998px) {

    .social-media-ul li {
        width: 33.3%;
        padding: 10px;
        float: left;
    }
}

@media (max-width:767px) {

    .social-media-ul li {
        width: 50%;
        padding: 10px;
        float: left;
    }

    .sidebar-ul li {
        font-size: 17px !important;
    }
}

@media (max-width:500px) {

    .social-media-ul li {
        width: 100%;
        padding: 10px;
        float: left;
    }

    .sidebar-icon {
        width: 20px !important;
    }
}

.social-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 35px 10px 30px 10px;
    background: white;
    border-radius: 25px;
    border: 1px solid #facca5;
    border-bottom: 4px solid #facca5;
    min-height: 225px;
}

.social-icon {
    width: 80px;
    margin-bottom: 15px;
}

span.social-title {
    text-transform: uppercase;
    color: #9e2c00;
    font-size: 1.2rem;
    font-weight: 700;
}

.top-logo {
    width: 450px;
    max-width: 100%;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

/* middle sec css */

.middle-sec {
    height: calc(100vh - 86px);
    overflow: auto;
    background: url("../images/bg.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 20px 20px;
}

    .middle-sec.nobg-sec {
        background: none;
    }

.left-collapse {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: start;
    left: 0px;
    /* border-left: 2px solid #a7a7a7; */
}

#menu-btn.collapse-btn-left {
    display: none !important;
}

.collapse-btn-left {
    background: #e4e4e4;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    color: #868689 !important;
    padding: 5px;
    height: 47px;
    z-index: 9999;
    top: 0px !important;
    display: flex !important;
    align-items: center;
    border-radius: 14px 0px 0px 14px;
    cursor: pointer;
    transform: rotate(180deg);
}

#menu-btn.collapse-btn-left i {
    font-size: 17px !important;
    top: 0px !important;
}

#menu-btn i {
    font-size: 20px;
    position: relative;
    top: -1px;
}
.left-collapse #menu-btn.collapse-btn-left.dis-flex {
    display: flex !important;
}

/* width */
.sidebar-ul::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.sidebar-ul::-webkit-scrollbar-track {
    background: transparent !important;
}

/* Handle */
.sidebar-ul::-webkit-scrollbar-thumb {
    background: #c44a19 !important;
    border-radius: 20px;
    visibility: hidden;
}

    /* Handle on hover */
    .sidebar-ul::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.sidebar-ul:hover::-webkit-scrollbar-thumb {
    visibility: visible !important;
}

.mid-rt-sec {
    padding: 20px;
}

.gen-content-sec {
    height: calc(100vh - 225px);
    position: relative;
    background-color: #e9ecf3;
    ;
}

@media (max-width:992px) {
    .middle-sec {
        height: calc(100vh - 118px);
        overflow: auto;
    }
}


/* Dashboard */

.wel-sub-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #8a8a8a !important;
}
.daterange-con {
    position: relative;
}
.daterange-con i{
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 21px;
    color: #6b2408;
}
.cust-daterange {
    padding-left: 37px;
    width: 250px;
}

@media (max-width:767px) {
    .wel-sub-text, .wel-right-sub-text {
        font-size: 1.1rem !important;
    }

    .wel-main-text {
        font-size: 1.3rem;
    }

    .btn-contact {
        font-size: 1.1rem !important;
    }
}

.wel-para {
    font-size: 1.2rem;
}

.wel-area {
    background: #ffffff !important;
    padding: 20px 40px;
    min-height: calc(100% - 50px);
    box-shadow: 4px 4px 9px 3px rgb(248 226 197 / 46%) !important;
    height:100%;
}

.wel-area-right {
    padding: 20px;
    min-height: calc(100% - 32px);
    box-shadow: 4px 4px 9px 3px rgb(248 226 197 / 46%) !important;
    height: 100%;
}

.wel-area-right.training {
    min-height: auto !important;
    border-radius: 0px !important;
    height: auto !important;
}

.wel-main-text {
    font-weight: 600;
    color: #742b0d !important;
}

.wel-right-sub-text {
    font-size: 1.3rem;
    color: #91908a;
    font-weight: 500;
}

.btn-watch-video {
    background: #f57905;
    color: white;
    width: 100%;
}

    .btn-watch-video:hover {
        color: #f57905 !important;
        border: 1px solid #f57905 !important;
        background: white;
    }

.remove-img {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-contact {
    background: #f57905;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

    .btn-contact:hover {
        color: #f57905 !important;
        background: white !important;
        border: 1px solid #f57905 !important;
    }

.apexcharts-toolbar {
    display: none !important;
}

.sec-title {
    font-size: 25px;
    font-weight: 500;
    color: #484848;
}

.apexcharts-text tspan {
    font-size: 1.2rem;
    color: #484848;
}

.article-sec {
    border-radius: 15px !important;
    background: #ffffff !important;
    border: 1px solid #f5790545;
    cursor: pointer;
    position: relative;
    height:100%;
}

.article-body {
    padding: 10px 10px;
}

.article-body-con {
    font-size: 18px;
}

.article-status-posted {
    padding: 4px 8px;
    background: #008ffb !important;
    border: 1px solid #008ffb !important;
    color: white !important;
    width: 80px;
    cursor: auto !important;
    position: absolute;
    left: 5px;
    top: 4px;
    opacity: 0.6;
    font-size: 14px;
    border-radius: 50px;
}

.article-status-draft {
    padding: 4px 10px;
    background: #26e7a6 !important;
    border: 1px solid #26e7a6 !important;
    color: black !important;
    width: 80px;
    cursor: auto !important;
    position: absolute;
    left: 5px;
    top: 6px;
    opacity: 0.6;
    font-size: 14px;
    border-radius: 50px;
}

.article-status-written {
    padding: 4px 10px;
    background: #2a7aff !important;
    border: 1px solid #2a7aff !important;
    color: white !important;
    width: 80px;
    cursor: auto !important;
    margin-right: 5px;
    position: absolute;
    left: 5px;
    top: 4px;
    opacity: 0.6;
    font-size: 14px;
    border-radius: 50px;
}

    .btn-art-draft:hover {
        background: transparent;
        border: 1px solid #732c00;
        color: #732c00;
    }

.btn-art-del {
    padding: 5px 8px;
    background: #dc3545;
    border: 1px solid #dc3545;
    color: white;
    position: absolute;
    right: 4px;
    display: flex;
    top: 4px;
    /* border-radius: 0px 0px 0px 0px; */
    align-items: center;
}

    .btn-art-del:hover {
        background: #d61333;
    }

.art-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 72px;
}

.btn-search {
    border-radius: 8px;
    padding: 6px 30px;
    background: #ff790d;
    color: white;
    font-size: 1.3rem;
    text-wrap: wrap;
    display: flex;
    gap: 8px;
    align-items: center;
}

    .btn-search:hover {
        background: #dc690a;
        color: white;
    }

.cust-int {
    font-size: 1.3rem;
    min-width: 150px;
}

.sortby-text {
    font-size: 1.3rem;
    color: #404040;
}

.mid-footer-sec {
    text-align: center;
    border-top: 1px solid rgb(244 204 174) !important;
    padding: 5px;
    font-size: 1rem;
    background: rgb(244 204 174) !important;
}
.article-container {
    padding: 20px 20px 0px 20px;
    margin-top: 15px;
    overflow: auto;
    width: 100%;
    background: #fff;
    font-size: 1rem;
}
.article-con {
    height: calc(100vh - 280px);
    overflow-y:auto;
}

.cust-daterange {
    font-size: 1.3rem;
}

.flatpickr-day.selected, .flatpickr-day.startRange {
    background: #ff790d !important;
    border-color: #ff790d !important;
}

.flatpickr-day.inRange {
    border-radius: 0;
    -webkit-box-shadow: -5px 0 0 #ffe6c8, 5px 0 0 #ffe6c8;
    box-shadow: -5px 0 0 #ffe6c8, 5px 0 0 #ffe6c8 !important;
}

.flatpickr-day.inRange {
    border-color: #ffe6c8 !important;
    background: #ffe6c8 !important;
}

.flatpickr-clear-button-con {
    display: flex;
    justify-content: flex-end;
    padding: 10px 10px 10px 10px;
    border-top: 1px solid #bfbfbf;
}

.flatpickr-clear-button {
    padding: 5px 20px;
    background: rgb(254 114 0);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: flex-end;
    margin: 0px 0px 0px 0px;
}

    .flatpickr-clear-button:hover {
        background: #b95300;
    }

#flatpickrInput {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.wrapper-dropdown {
    position: relative;
    display: inline-block;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.8);
    text-align: left;
    line-height: 45px;
    color: #444;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .wrapper-dropdown.active::before {
        border-width: 0 6px 6px 6px;
    }

    .wrapper-dropdown .dropdown {
        position: absolute;
        top: 50px;
        right: 0;
        /* left: 0; */

        margin: 0;
        padding: 0px 0px 10px 0px;
        list-style: none;
        border-radius: inherit;
        box-shadow: inherit;
        background: inherit;
        -webkit-transition: .5s ease;
        -moz-transition: .5s ease;
        -ms-transition: .5s ease;
        transition: .5s ease;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        opacity: 0;
        visibility: hidden;
        width: 250px;
        background: white !important;
        line-height: 36px;
    }

        .wrapper-dropdown .dropdown li {
            padding: 0 15px;
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            overflow: hidden;
            -webkit-transition: .5s ease;
            -moz-transition: .5s ease;
            -ms-transition: .5s ease;
            transition: .5s ease;
            color: #000000;
        }

            .wrapper-dropdown .dropdown li:last-child {
                border-bottom: none;
            }

            .wrapper-dropdown .dropdown li:hover {
                background: rgba(197, 239, 247, .55);
                color: black;
            }

    .wrapper-dropdown.active .dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        box-shadow: 0 10px 10px rgba(98, 98, 98, 0.15) !important;
    }

.btn-sort .dropdown li:not(:first-child) {
    padding-left: 30px;
    line-height: 40px;
}

.btn-sort .dropdown li:first-child {
    pointer-events: none; /* Disables clicks/hover */
    color: #999; /* Gray text */
    background-color: transparent !important; /* Prevent highlight */
    cursor: default;
    position: relative;
    margin-top: 10px;
}

    .btn-sort .dropdown li:first-child:after {
        content: "";
        display: block;
        height: 1px;
        width: 40%;
        /* margin: 10px; */
        background: #e9e9e9;
        position: absolute;
        top: 18px;
        left: 77px;
        right: 0px;
        width: 64%;
    }

.btn-sort .dropdown li.active {
    background: #ff790d;
    color: white;
}

.btn-sort .dropdown li:hover {
    background: rgba(197, 239, 247, .55);
    color: black;
}

.article-search-con {
    position: sticky !important;
    top: 0px;
    z-index: 99;
    display: flex;
    gap: 10px;
}

.cust-form-search {
    font-size: 1.2rem;
    height: 50px;
    padding-right: 40px;
}

i.search-icon {
    position: absolute;
    right: 13px;
    top: 13px;
    font-size: 24px;
    color: #ff7200;
}

.wrapper-dropdown {
    position: relative;
    display: inline-block;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.8);
    text-align: left;
    line-height: 45px;
    color: #444;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-sort {
    background: #ff7200;
    width: 50px;
    border-radius: 8px !important;
    border: 0px solid !important;
}

    .btn-sort:hover {
        background: #b95300;
        color: white;
    }

.btn-language .dropdown li:first-child {
    pointer-events: none;
    color: #999;
    background-color: transparent !important;
    cursor: default;
    position: relative;
    padding-top: 10px;
    background: white !important;
    position: relative;
    z-index: 9999;
    position: sticky;
    top: 0px;
}

.btn-language .dropdown {
    height: 350px;
    overflow-y: auto;
}

    .btn-language .dropdown li:first-child:after {
        content: "";
        display: block;
        height: 1px;
        width: 40%;
        background: #e9e9e9;
        position: absolute;
        top: 25px;
        left: 94px;
        right: 0px;
        width: 58%;
    }

.btn-language {
    background: #ff7200;
    width: 50px;
    border-radius: 8px !important;
    border: 0px solid !important;
}

    .btn-language .dropdown li.active {
        background: #ff790d;
        color: white;
    }
    .btn-language .dropdown li:hover {
        background: rgba(197, 239, 247, .55);
        color: black;
    }

    .btn-language:hover, .btn-language.btn.active, .btn-sort.btn.active {
        background: #ff790d;
        color: white;
    }

/* table section css */
.table-container {
    width: 100%;
    background: #fff;
    border-radius: 0px !important;
/*    box-shadow: 4px 4px 9px 1px rgb(237 188 121 / 36%) !important;*/
    font-size: 1rem;
/*    border: 1px solid #f5c48d;*/
}
    .table-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        font-size: 1.1rem;
        padding: 16px 16px 0px 16px;
    }

#results {
    padding: 6px 12px;
    border: 1px solid #e5c27c;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 1.1rem;
}

.search-box {
    display: flex;
    gap: 8px;
}

    .search-box input {
        padding: 6px 30px 6px 12px;
        border-radius: 4px;
        font-size: 1.3rem;
    }

    .search-box button {
        padding: 6px 12px;
        border: none;
        background-color: #f7c57d;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
    }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

    table th, table td {
        padding: 12px;
        text-align: left;
        /* border-bottom: 1px solid #f5d1a4; */
        border-bottom: 1px solid #e5e8f0;
    }

    table th {
        background-color: #ffffff;
        color: #6b2408;
        font-weight: 600;
        font-size: 1.2rem;
        padding: 12px 12px 8px 12px;
    }

    table tbody tr:nth-child(odd) {
        /* background-color: #fff7e0; */
        background-color: #fff0e3;
        border-color: #fff0e3 !important;
    }

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 16px 16px;
    border-top: 1px solid #e1c1b2;
    color: #7a3736;
    flex-wrap: wrap;
    gap: 10px;
}

.page-controls button {
    padding: 6px 12px;
    border: none;
    margin: 0 0px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    background-color: transparent;
    color: #684b47;
    font-weight: 500;
}

.page-controls .btn-pre, .page-controls .btn-nxt {
    background-color: transparent !important;
}

    .page-controls .btn-pre:hover, .page-controls .btn-nxt:hover {
        background-color: #f5a54d;
    }

.page-controls .btn-page.active {
    background-color: #fee4bc;
}


.page-controls button:hover {
    background-color: #f5a54d;
}

.seh-icon {
    position: absolute;
    top: 14px;
    right: 12px;
}

.btn-arrow {
    padding: 0px;
    line-height: 0px;
    margin: 0px;
}

.btn-down-arrow {
    position: relative;
    top: -6px;
    padding: 0px;
    line-height: 0px;
    margin: 0px;
}

.arrow-icon {
    color: gray;
}

    .arrow-icon.active {
        color: #a1380e;
    }

    .arrow-icon:hover {
        color: #a1380e !important;
    }

.table-con {
    max-height: calc(100vh - 267px);
    overflow-y: auto;
    min-height: calc(100vh - 267px);
    border-top: 1px solid #e1c1b2;
}
    .table-con.table-con-art {
        max-height: (100vh - 352px);
        overflow-y: auto;
        min-height: calc(100vh - 352px);
        border-top: 1px solid #e1c1b2;
    }
.table-conn {
    max-height: calc(100vh - 267px);
    overflow-y: auto;
    min-height: calc(100vh - 598px);
    border-top: 1px solid #525252;
}

.table-con.ai-table {
    max-height: calc(100vh - 267px);
    min-height: calc(100vh - 351px);
}
table thead {
    position: sticky;
    top: 0px;
    background: white;
    z-index: 99;
}



table th .table-th-title {
    white-space: nowrap;
    margin-right: 15px;
}

@media (max-width:767px) {
    table {
        font-size: 1rem !important;
    }

    .table-header {
        font-size: 1rem !important;
    }

    #results {
        font-size: 1rem !important;
    }

    .search-box input {
        font-size: 1rem !important;
    }

    table th {
        font-size: 1.1rem !important;
    }
}

.btn-action {
    padding: 5px 15px;
    background: #ff790d;
    color: white;
    width: 50px;
}

    .btn-action:hover {
        background: #d5660b;
        color: white;
    }

.table-title {
    padding: 20px 0px 0px 40px;
}

.btn-add {
    color: white;
    background: #ff790d;
}

    .btn-add:hover {
        color: white;
        background: #da680a;
    }

.btn-default {
    color: white;
    background: #ff790d;
    display: flex; 
    align-items: center;
    gap: 4px;
}

    .btn-default:hover {
        color: white;
        background: #da680a;
    }

.button-container {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.article-table tbody tr td:nth-child(2), .article-table thead tr th:nth-child(2) {
    width: 250px;
}

.article-table tbody tr td:nth-child(1), .article-table thead tr th:nth-child(1) {
    width: 100px;
}

.article-table tbody tr td:nth-child(5), .article-table thead tr th:nth-child(5) {
    width: 250px;
}
.table-con.table-con-blog {
    max-height: calc(100vh - 272px);
    overflow-y: auto;
    min-height: calc(100vh - 272px);
    border-top: 1px solid #e1c1b2;
}
.btn-succ {
    background: #28a745;
    border: 1px solid #28a745;
    width: 150px;
    color: white;
    font-size: 1.2rem;
}

.btn-succ:hover {
    background: #248b3b;
    border: 1px solid #248b3b;
    color: white;
}

.btn-edit {
    padding: 5px 15px;
    background: #16b900;
    color: white;
    width: 50px;
}

.btn-delete {
    padding: 5px 15px;
    background: #c80000;
    color: white;
    width: 50px;
}


.btn-edit:hover {
    background: #118902;
    color: white;
}

.btn-delete:hover {
    background: #9c0000;
    color: white;
}

.modal-header {
    background: #6f2609;
    color: white;
    padding: 8px 15px !important;
}

.cust-int-modal {
    border: 1px solid #ffbd72;
}

.int-con {
    margin-bottom: 10px;
}

.btn-cls {
    background: #6b2408;
    border: 1px solid #6b2408;
    width: 120px;
    color: white;
}

    .btn-cls:hover {
        background: #4c1905;
    }

.btn-save {
    background: #ff7200;
    border: 1px solid #ff7200;
    width: 120px;
    color: white;
}

    .btn-save:hover {
        background: #b95300;
    }

.form-control:focus {
    border-color: #ff7200 !important;
}

.modal-footer {
    border: 0px;
    padding: 0px 10px 10px 10px;
}

.btn-cls-top {
    position: absolute;
    top: 4px;
    right: 10px;
}

.paltform-sec:hover {
    background: #ff8a1d6f;
    cursor: pointer;
}

.paltform-sec.selected {
    background: #ff8a1d6f;
    cursor: pointer;
}

@media (max-width:992px) {
    .platform-title {
        font-size: 18px;
    }
}

.btn-buy {
    color: white;
    background: #ff790d;
    font-size: 20px;
    padding: 5px 20px;
}

    .btn-buy:hover {
        color: white;
        background: #cd6109;
    }

@media (max-width:767px) {

    .btn-buy {
        font-size: 18px;
    }
}

/*Help*/
.link-cust{
            color: #dd6311;
            font-weight: 600;
         }
         .page-title{
            color: #984209;
            font-weight: 600;
         }
         .videobox {
    position: relative;
    margin: 0 0 30px;
}
.responsive-video {
   position: relative;
    padding-bottom: 56%;
    overflow: hidden;
    border: #fd9323 solid 7px;
    border-radius: 12px;
}
.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}
.fw-700{
   font-weight: 700 !important;
}

.form-body {
    padding: 0px 0px 40px 0px;
    border-radius: 0px 0px 15px 15px;
}

.form-title {
    font-size: 23px;
    font-weight: 500;
    color: #6b2408;
    display: table;
    position: relative;
    z-index: 99;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
}

.cust-int-modal {
    border: 1px solid #ffbd72;
    border-radius: 0px;
    border: 10px 20px;
}

.int-con {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .int-con label {
        font-size: 1.2rem;
        margin-bottom: 0px;
        width: 250px;
        flex-shrink: 0;
        font-weight: 600;
    }

.cust-int-modal {
    font-size: 1.2rem;
}

.btn-cls {
    background: #6b2408;
    border: 1px solid #6b2408;
    width: 120px;
    color: white;
}

    .btn-cls:hover {
        background: #4c1905;
        color: white;
    }

.btn-save {
    background: #ff7200;
    border: 1px solid #ff7200;
    width: 150px;
    color: white;
    font-size: 1.2rem;
    white-space: nowrap;
}

.btn-back {
    background: #6b2408;
    border: 1px solid #6b2408;
    width: 150px;
    color: white;
    font-size: 1.2rem;
}

.btn-save:hover {
    background: #b95300;
    color: white;
}

.btn-back:hover {
    background: #4c1905;
    color: white;
}

.form-control:focus {
    border-color: #ff7200 !important;
}

.modal-footer {
    border: 0px;
    padding: 0px 10px 10px 10px;
}

@media(max-width:767px) {
    .btn-save, .btn-back {
        font-size: 1rem;
        width: 110px;
    }

    .int-con {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .form-body {
        padding: 0px 10px 50px 10px;
    }

    .btn-bottom {
        right: 20px !important;
    }

    .int-con label, .cust-int-modal {
        font-size: 1rem !important;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .step-inner {
        width: 40px !important;
        height: 40px !important;
    }

    .pro-text {
        font-size: 1rem !important;
    }

    .form-area {
        padding: 10px 15px !important;
    }

    .step {
        padding: 5px !important;
    }

    .pro-bar {
        top: 25px !important;
    }
}

/*Blogs Forms*/

.form-area {
    background: #ffffff !important;
    padding: 20px 20px !important;
    min-height: calc(100vh - 126px);
    border-radius: 0px !important;
    /*    box-shadow: 0px 4px 9px 3px rgb(233 209 177 / 46%) !important;*/
    /*    border: 1px solid #f9d5b1;*/
}

.form-title-border {
    height: 1px;
    width: 100%;
    background: #ff7200;
    position: absolute;
    bottom: 2px;
}

.btn-bottom {
    position: absolute;
    bottom: 20px;
    right: 30px;
    left: 30px;
}

.progress-sec {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    margin-bottom: 20px;
}

.pro-bar {
    position: absolute;
    height: 4px;
    background: black;
    width: 100%;
}

.step {
    padding: 10px;
    background: #fff9f1;
    position: relative;
}

.step-inner {
    border: 1px solid #f3f3f3;
    width: 60px;
    height: 60px;
    background: #e4e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
    border-radius: 50%;
    font-size: 1.3rem;
}

.pro-bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #c9c9c9;
    top: 40px;
}

.pro-fill {
    height: 3px;
    background: #6b2408;
}

.step-inner.fill {
    background: #6b2408;
}

.pro-text {
    text-align: center;
    font-size: 1.3rem;
}

/*Platform*/

.paltform-sec {
    text-align: center;
    border: 1px solid #ffe8d2;
    border-radius: 25px;
    padding: 30px 10px 30px 10px;
    min-height: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 4px 5px 2px -2px rgb(246 207 169) !important;
}

.paltform-img {
    width: 130px;
    max-width: 100%;
}

.platform-title {
    margin-top: 30px;
    font-size: 20px;
}

.modal-title {
    font-weight: 600 !important;
    color: #4c1905;
}

.modal-border {
    height: 5px;
    border-radius: 50px;
    width: 80px;
    margin: 0px auto;
    background-color: #ff7200;
    margin-bottom: 25px;
}

.btn-cls-top {
    position: absolute;
    top: 4px;
    right: 10px;
}

@media (max-width:992px) {
    .platform-title {
        font-size: 18px;
    }
}

.bd {
    margin: 0px 3px;
}

.platform-row {
    width: 1400px;
    max-width: 100%;
}

.paltform-sec:hover {
    background: rgba(255, 166, 110, 0.597) !important;
    cursor: pointer;
}

.blog-con {
    padding: 10px;
    border: 2px solid #1010102e;
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
}

.blog-con:hover {
    background: #c1c1c12e;
    border: 2px solid #1010102e;
}

.blog-con.active{
    background: #c1c1c12e !important;
    border: 2px solid #1010102e !important;
}

.blog-page-con {
    height: calc(100vh - 88px);
    position: relative;
}

/*Add Tumblr Blog*/

.cust-check {
    padding: 10px;
}

.form-check-input:checked {
    background-color: #ff790d;
    border-color: #ff790d;
}

.form-check-input:focus {
    box-shadow: none !important;
}

.table-blog thead tr th:nth-child(3),
.table-blog tr td:nth-child(3) {
    width: 150px;
    text-align: center !important;
}

.table-blog thead tr th:nth-child(1),
.table-blog tr td:nth-child(1) {
    width: 50px;
}

.table-blog thead tr th:nth-child(2),
.table-blog tr td:nth-child(2) {
    min-width: 250px;
}

.table-blog thead tr th:nth-child(1) .cust-check {
    border: 2px solid #ff790d;
}


@media (max-height:767px) {
    .table-con.table-con-blog {
        min-height: 500px;
        max-height: 500px;
    }
}

.table-container.table-blog-container {
    margin-bottom: 50px;
}

/*Credit*/

.credit-con {
    border: 1px solid #ff790d;
    font-size: 20px;
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 8px 0px 0px 8px;
    margin-bottom: 0px;
}

.btn-buy {
    color: white;
    background: #ff790d;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 0px 8px 8px 0px;
}

@media (max-width:767px) {
    .credit-con {
        border: 1px solid #ff790d;
        font-size: 17px;
        padding: 8px 10px !important;
    }

    .btn-buy {
        color: white;
        background: #ff790d;
        font-size: 17px;
    }
}
.table-con.table-con-credit {
    min-height: calc(100vh - 365px) !important;
    max-height: calc(100vh - 330px);
}

.nodata-con-credit {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: calc(100vh - 186px);
}

/*text Model*/
.modal-header {
    background: #6b2408;
    padding: 10px 20px;
}


.modal-footer {
    padding: 5px 0px;
    margin-top: 10px;
}

.btn-no {
    background: #ff7000;
    color: white;
    width: 100px;
    font-size: 1.2rem;
    padding-left: 15px;
    padding-right: 15px;
}

    .btn-no:hover {
        background: #d65d00;
        color: white;
    }

.btn-yes {
    background: #ff7000;
    color: white;
    width: 50px;
    font-size: 1.2rem;
    padding-left: 15px;
    padding-right: 15px;
}

    .btn-yes:hover {
        background: #d65d00;
        color: white;
    }

.btn-use {
    background: #ff7000;
    color: white;
    width: 80px;
    font-size: 1.2rem;
    padding-left: 15px;
    padding-right: 15px;
}

    .btn-use:hover {
        background: #d65d00;
        color: white;
    }

button.btn:active {
    border-color: transparent !important;
    box-shadow: none !important;
}

.modal-para{
    font-size: large;
}

/*Settings*/

.setting-heading-con {
    border-bottom: 1px solid #a0a0a0;
    text-align: center;
    margin-bottom: 40px;
}

.setting-heading {
    top: -12px;
    display: inline-block;
    background: rgb(255, 255, 255);
    padding: 0px 5px;
    position: relative;
    top: 14px;
    font-size: 1.1rem;
    color: #888888;
}

.nav-pills .nav-link {
    font-size: 1.3rem;
    border-radius: 0;
    color: white;
    background: #6b2408;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        background: #ff790d;
    }

.cust-pill li {
    width: 50%;
}

.cust-pill .nav-link {
    width: 100%;
    padding: 14px;
}

.setting-con {
    background: #ffffff !important;
    padding: 0px 0px;
    min-height: calc(100vh - 165px);
/*    box-shadow: 0px 4px 9px 3px rgb(233 209 177 / 46%) !important;*/
/*    border: 1px solid #f1c89e;*/
    border-radius: 0px !important;
    overflow: hidden;
}

.set-con {
    padding: 20px 40px;
    display: flex;
    align-items: start;
    gap: 80px;
}

.profile-img {
    width: 160px;
    border-radius: 50%;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 10px 0px 5px 0px;
}

.btn-acc {
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    background: #F34E5E;
    background: linear-gradient(90deg, rgb(255 120 0) 0%, rgb(255 166 1) 100%);
}

    .btn-acc:hover {
        background: linear-gradient(90deg, rgb(231 108 0) 0%, rgb(237 154 0) 100%);
        color: white;
    }

    .btn-acc img {
        position: relative;
        top: -2px;
    }

.set-right-con {
    flex: 1;
}

.set-left-con {
    text-align: center;
}

.btn-theme {
    background: #ff790d;
    color: white;
    font-size: 1.2rem;
    padding-left: 15px;
    padding-right: 15px;
}
    .btn-theme:hover {
        background: #e46d0c;
        color: white;
    }

.btn-edit-name {
    background: #43423e;
    color: #cacaca;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    font-size: 1.3rem;
    position: absolute;
    right: -5px;
    top: 22px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-edit-name i {
        position: relative;
        left: 3px;
        color: #cacaca !important;
    }

    .btn-edit-name:hover {
        background: #302f2d;
    }

@media (max-width:1250px) {
    .set-right-con .int-con {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width:992px) {
    .set-con {
        padding: 20px 40px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .set-right-con {
        width: 100%;
    }
}

@media (max-width:767px) {
    .set-con {
        padding: 20px 10px !important;
    }

    .nav-pills .nav-link, .btn-acc, .profile-name {
        font-size: 1.1rem;
    }

    .cust-pill li {
        width: 100%;
    }
}

/*No Data Screen*/

.nodata-con {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: calc(100vh - 128px);
}

.nodata-img {
    width: 250px;
    max-width: 100%;
}

.btn-addempty {
    background: #ff7200;
    border: 1px solid #ff7200;
    width: 250px;
    color: white;
    font-size: 1.5rem;
    padding: 10px 0px;
}

    .btn-addempty:hover {
        background: #d56000;
        color: white !important;
    }

@media (max-width:767px) {
    .btn-add {
        background: #ff7200;
        font-size: 1.3rem !important;
        width: 230px !important;
    }
}

body {
    font-family: "Inter", sans-serif !important;
}

.login-sec {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-left {
    width: 45%;
    background: url("../images/bg-left.png");
    background-size: cover;
}

.login-right {
    width: 53%;
    padding: 20px;
}

.login-main {
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.login-error {
    height: calc(100vh - 135px);
}

.input-icon {
    position: absolute;
    top: 16px;
    right: 17px;
    width: 25px;
}

.text-small {
    font-size: 0.9rem;
}

.login-input {
    padding: 15px 48px 15px 15px;
    background: #fff5ec;
    border-radius: 9px;
    border: 1px solid #ffaf72;
    font-size: 18px;
    color: rgb(29, 29, 29);
}

.form-control:focus {
    border: 1px solid rgb(201, 201, 201);
    background: transparent;
    color: rgb(29, 29, 29) !important;
    box-shadow: none !important;
}

::placeholder {
    color: #816053 !important;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #816053 !important;
}

.btn-login {
    color: #ffffff;
    border: 0px solid;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px;
    background: rgb(255 113 1);
    border-radius: 8px;
}

    .btn-login:hover {
        background: rgb(209, 91, 0);
        color: #ffffff;
    }

.bg-login {
    background: url("../images/bg-1.jpg");
    background-size: cover;
    background-position: top center;
}

@media (max-width:992px) {
    .login-left {
        width: 100% !important;
        display: none !important;
    }

    .login-right {
        width: 100% !important;
        padding: 20px;
    }
}

.login-mid {
    width: 1%;
}

.divider-login {
    width: 1px;
    background: rgb(9 79 110);
    background: linear-gradient(180deg, rgb(19 19 69) 0%, rgb(9 79 110) 50%, rgb(19 19 69) 100%);
    height: 100%;
}

.rem-chk {
    position: relative;
    top: 2px;
    border-color: #ffa525;
}

.fw-600 {
    font-weight: 600;
}

.login-heading {
    font-size: 25px;
    color: #6e2505 !important;
    font-weight: 500;
    margin: 20px;
}

.login-heading-top {
    font-size: 22px;
    color: #fc620e !important;
    font-weight: 500;
    margin: 20px;
}

.login-main a {
    color: #539eed;
    text-decoration: underline;
    font-weight: 500;
}

.form-check-input:checked {
    background-color: #ff7101 !important;
    border-color: #ff7101 !important;
}

.form-check-input:focus {
    border-color: #de6203 !important;
    outline: 0;
    box-shadow: none !important;
}

@media (max-width:767px) {
    .login-heading {
        font-size: 22px;
    }

    .login-heading-top {
        font-size: 20px;
    }

    .btn-login {
        font-size: 1.1rem !important;
    }
}

.btn.btn-login.disabled, .btn.btn-login:disabled {
    color: white;
    pointer-events: none;
    background-color: rgb(255 113 1);
    border-color: transparent;
    opacity: 1;
}
.setting-con .btn-theme {
    height: 43px;
}


/*Stock image Model*/

.masonry img {
    width: 100%;
}

.unsplash-con {
    max-height: calc(100vh - 350px) !important;
    overflow-y: auto;
}

.pexels-con {
    max-height: calc(100vh - 350px) !important;
    overflow-y: auto;
}

.masonry {
    column-count: 3;
    column-gap: 8px;
    overflow: auto;
}

.mItem {
    position: relative;
}

    .mItem img {
        border-radius: 8px;
    }

.masonry .mItem {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
}

.result-title {
    font-weight: 500;
    font-size: 1rem;
    margin-top: 5px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2rem;
}

@media (max-width: 1199px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .masonry {
        column-count: 1;
    }
}


.active-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d6d6ff6b;
    border: 4px solid #7285ff;
    border-radius: 0.5rem;
}

.img-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    border-radius: 0.5rem;
}

    .img-over:hover {
        background: #d6d6ff6b;
        border: 4px solid #7285ff;
    }

/*Fadein*/

.image-placeholder {
    background-color: #e0e0e0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.image-container {
    position: relative;
    overflow: hidden;
}

    .image-container img {
        display: none; /* Hide the image by default */
        object-fit: cover; /* Ensure the image covers the container */
    }

        .image-container img.loaded {
            display: block; /* Show the image when it's loaded */
            animation: fadeIn 0.5s ease-in;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Image generate with AI popup*/

.form-check-input:checked {
    background-color: #6b2408;
    border-color: #6b2408;
}

.cust-check {
    padding: 10px;
}

textarea {
    font-size: 1.2rem !important;
}

@media (max-width:767px) {
    textarea {
        font-size: 1.1rem !important;
    }
}

.load-wraper {
    position: relative;
    width: 100%;
    background-color: rgb(211 211 211 / 65%);
    z-index: 44;
    overflow: hidden;
    border-radius: 5px;
    height: 300px;
}

.activity {
    position: absolute;
    left: -45%;
    height: 100%;
    width: 45%;
    background-image: linear-gradient(to left, rgba(251,251,251, .05), rgba(251,251,251, .3), rgba(251,251,251, .6), rgba(251,251,251, .3), rgba(251,251,251, .05));
    background-image: -moz-linear-gradient(to left, rgba(251,251,251, .05), rgba(251,251,251, .3), rgba(251,251,251, .6), rgba(251,251,251, .3), rgba(251,251,251, .05));
    background-image: -webkit-linear-gradient(to left, rgba(251,251,251, .05), rgba(251,251,251, .3), rgba(251,251,251, .6), rgba(251,251,251, .3), rgba(251,251,251, .05));
    animation: loading 1s infinite;
    z-index: 45;
}

@keyframes loading {
    0% {
        left: -45%;
    }

    100% {
        left: 100%;
    }
}

/*Image Operation*/
.drop-indicator {
    transition: all 0.1s ease;
    pointer-events: none;
}

img.dragging {
    opacity: 0.6;
    cursor: move;
}

[contenteditable] img {
    cursor: move;
    max-width: 100%;
    height: auto;
}

/*Img Resizer and Alignment*/

.image-alignment-controls {
    display: flex;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px;
    gap: 4px;
}

.alignment-button:hover {
    background: #f0f0f0;
}

.resize-handle {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    background: white;
    border: 1px solid #007bff;
    z-index: 1000;
}

    .resize-handle:hover {
        background: #007bff;
    }

[contenteditable] img {
    max-width: 100%;
    height: auto;
}

/*Writer Wizard*/

.step-con {
    background: #fff9f1;
    display: flex;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    color: #6d6b6a;
    border: 1px solid #fbcda5;
    font-size: 1.2rem;
    width: 25%;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width:1350px) {
    .step-con {
        width: calc(47% - 22px);
    }

    .step-sec {
        flex-wrap: wrap;
    }

    .step-con {
        font-size: 1rem !important;
    }
}

@media (max-width: 650px) {
    .step-con {
        width: calc(97% - 33px) !important;
    }
}

@media (max-width:767px) {
}

@media (max-width: 998px) {
    .step-con {
        width: calc(46% - 22px);
    }
}

.chk-con {
    color: white;
    width: 50px;
    height: 50px;
    background: #ff790d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    border-radius: 50px;
    flex-shrink: 0;
}

.step-no {
    color: #ff790d;
    margin-bottom: 8px;
    font-weight: 400;
}

.step-des {
    font-weight: 400;
}



.step-con.active {
    background: #ff790d;
    color: #ffffff;
    border: 1px solid #ff790d;
}

    .step-con.active .chk-con {
        color: #ff790d;
        background: #ffffff;
    }

    .step-con.active .step-no {
        color: #ffffff;
    }

    .step-con.active .step-des {
        font-weight: 500;
    }

.dash-sec {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 23px;
    flex-shrink: 0;
    justify-content: center;
}

    .dash-sec.active {
        color: #ff790d;
    }

.para-con {
    font-size: 1.2rem;
}

.fw-400 {
    font-weight: 400 !important;
}

.cust-radio {
    padding: 10px;
}

    .cust-radio:focus {
        border-color: aliceblue;
        outline: 0;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, .25);
    }

    .cust-radio:checked {
        background-color: #ff790d !important;
        border-color: #ff790d !important;
    }

.int-ar {
    width: 350px;
    max-width: 100%;
}

.step-txt {
    max-width: 100%;
    width: 180px;
}

.wizam-sec {
    padding-bottom: 71px !important;
}

.label-des {
    color: #6d6b6a;
}

.empty-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 335px);
}

/*Toc Review*/
.fw-500 {
    font-weight: 500 !important;
}

.cust-radio {
    padding: 9px;
}

    .cust-radio:checked {
        background-color: #ff7200 !important;
        border-color: #ff7200 !important;
    }

    .cust-radio:focus {
        box-shadow: none !important;
    }

.radio-con {
    margin-bottom: 5px;
    padding: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 7px;
    position: relative;
    padding-right: 50px;
}

.radio-con-scratch {
    margin-bottom: 5px;
    border: 1px solid #d1d1d1;
    border-radius: 7px;
    position: relative;
    cursor: pointer !important;
}

.cust-textarea {
    min-height: calc(100vh - 565px) !important;
}

.scratch-textarea {
    min-height: calc(100vh - 767px) !important;
}

.radio-con.active {
    background: #ffa66e52;
    border: 1px solid #ffa66eb5;
}

.radio-con-scratch:hover {
    background: #ffa66e52;
    border: 1px solid #ffa66eb5;
}

.btn-pen {
    position: absolute;
    right: 6px;
    top: 3px;
    font-size: 20px;
    color: #ff7200;
}

    .btn-pen:hover {
        position: absolute;
        right: 6px;
        top: 3px;
        font-size: 20px;
        color: #ff7200;
    }

.editable-sec {
    background: transparent;
    border: 0px solid !important;
    font-size: 1.2rem;
    padding: 0px;
}

    /*Editor*/
    .writer-area {
        background: white;
    }

.btn-tool {
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    border-radius: 5px;
    padding: 0px;
    margin-right: 0px;
    line-height: 0px;
    height: 35px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-tool:hover {
        border: 1px solid #ffcb9e;
        background: #feefda;
    }

    .btn-tool.active {
        border: 1px solid #ffcb9e;
        background: #feefda;
    }

    .btn-tool img {
        width: 24px;
        position: relative;
        top: -2px;
    }

.writer-toolbar {
    padding: 8px 10px 5px 10px;
    border-bottom: 1px solid #fcd8bb;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    justify-content: center;
}

.saving-txt {
    font-size: 1.1rem;
    position: absolute;
    right: 10px;
    font-weight: 600;
    color: #959595;
    display: flex;
    gap: 8px;
    top: 4px;
}



.context-menu {
    background: #ffe6c8;
    border-radius: 5px;
    display: inline-flex;
    gap: 5px;
    padding: 8px 10px;
    box-shadow: 1px 5px 9px 0px rgb(0 0 0 / 8%) !important;
}

.btn-context {
    background: #ff821e;
    flex-wrap: nowrap;
    display: flex;
    gap: 10px;
    color: white;
    padding: 4px 10px;
    font-size: 14px;
    align-items: center;
}

    .btn-context:hover {
        background: #e2741a;
        color: white;
    }

    .btn-context img {
        width: 16px;
    }

@media (max-width:767px) {
    .btn-context span {
        display: none;
    }
}

.tool-divider {
    width: 2px;
    border-radius: 50px;
    background: #8f8f8f;
}

.writer-toolbar .form-select {
    width: 250px;
    background-color: #f2f2f2;
    color: #959595;
    height: 35px;
    padding: 5px 10px;
    line-height: 12px;
}

    .writer-toolbar .form-select:hover {
        border: 1px solid #ffcb9e;
        /* background-color: #feefda; */
    }

    .writer-toolbar .form-select.active {
        border: 1px solid #ffcb9e;
        /* background-color: #feefda; */
    }

span.getImage-options {
    color: #9e2c00;
    font-size: 1.2rem;
    font-weight: 700;
}

.getImage-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 35px 10px 30px 10px;
    background: white;
    border-radius: 25px;
    border: 1px solid #facca5;
    border-bottom: 4px solid #facca5;
    min-height: 225px;
}

    .getImage-btn:hover {
        background: rgba(255, 166, 110, 0.597) !important;
        cursor: pointer;
    }

.form-select:focus {
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0rem rgb(254 239 218) !important;
}

.middle-sec.writer-sec {
    height: calc(100vh - 35px);
}

.toolbar-section {
    display: inline-flex;
    gap: 5px;
}
button.alignment-button {
    border: 1px solid #f2f2f2 !important;
    background: #f2f2f2 !important;
    border-radius: 5px !important;
    padding: 0px;
    margin-right: 0px;
    line-height: 0px;
    height: 35px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    button.alignment-button.active {
        border: 1px solid #ffcb9e !important;
        background: #feefda !important;
    }
    button.alignment-button:hover {
        border: 1px solid #ffcb9e !important;
        background: #feefda !important;
    }


.textarea-ht {
    height: calc(100vh - 254px);
}
.textarea-ht-model {
    height: 100px;
    max-height: 300px;
}

.textarea-website {
    height: calc(100vh - 585px);
}
.textarea-website-2 {
    height: calc(100vh - 270px);
}
.textarea-comparison {
    height: calc(100vh - 359px);
}

.textarea-con {
    height: calc(100vh - 225px);
    overflow-y: auto;
    padding: 0px 10px;
}

.int-con label:focus-visible {
    outline: 0px solid !important;
    border: 0px solid !important;
}

.btn-chooseImg {
    background: #ff790d;
    color: white;
    width: 159px;
}


label.modal-label {
    font-size: 1.2rem;
    font-weight: 500;
}


button.btn.btn-left {
    background: #ff7200;
    color: white;
}
    button.btn.btn-left:hover, button.btn.right:hover {
        background: #cf5e02;
        color: white;
    }

button.btn.btn-right {
    background: #ff7200;
    color: white;
}

.btn-350 {
    width: 350px !important;
}
.mw-100{
    max-width:100%;
}
ul.error-ul {
    padding-left: 50px;
    font-weight: 500;
}

    ul.error-ul li {
        margin-bottom: 5px;
    }

.btn-bottom-error {
    position: absolute;
    bottom: 35px;
    right: 30px;
    left: 30px;
}










/*Right Sidebar*/

.writer-area {
    background: white;
    margin-right: 251px;
    transition: 0.5s;
}

.right-sidebar {
    width: 250px;
    height: 100vh;
    background: #fff9f1;
    color: white;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.5s;
    padding: 10px;
}

.btn-tool {
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    border-radius: 5px;
    padding: 0px;
    margin-right: 0px;
    line-height: 0px;
    height: 35px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-tool:hover {
        border: 1px solid #ffcb9e;
        background: #feefda;
    }

    .btn-tool.active {
        border: 1px solid #ffcb9e;
        background: #feefda;
    }

    .btn-tool img {
        width: 24px;
        position: relative;
        top: -2px;
    }

.writer-body {
    padding: 10px 20px;
    height: calc(100vh - 49px);
    overflow: auto;
}

.context-menu {
    background: #ffe6c8;
    border-radius: 5px;
    display: inline-flex;
    gap: 5px;
    padding: 8px 10px;
    box-shadow: 1px 5px 9px 0px rgb(0 0 0 / 8%) !important;
}

.btn-context {
    background: #ff821e;
    flex-wrap: nowrap;
    display: flex;
    gap: 10px;
    color: white;
    padding: 4px 10px;
    font-size: 14px;
    align-items: center;
}

    .btn-context:hover {
        background: #e2741a;
        color: white;
    }

    .btn-context img {
        width: 16px;
    }

@media (max-width:767px) {
    .btn-context span {
        display: none;
    }
}

.tool-divider {
    width: 2px;
    border-radius: 50px;
    background: #8f8f8f;
}

.writer-toolbar .form-select {
    width: 250px;
    background-color: #f2f2f2;
    color: #959595;
    height: 35px;
    padding: 5px 10px;
    line-height: 12px;
}

    .writer-toolbar .form-select:hover {
        border: 1px solid #ffcb9e;
        /* background-color: #feefda; */
    }

    .writer-toolbar .form-select.active {
        border: 1px solid #ffcb9e;
        /* background-color: #feefda; */
    }

.form-select:focus {
    border: 1px solid #ff7200 !important;
    background: transparent;
    color: rgb(29, 29, 29) !important;
    box-shadow: none !important;
}

.right-collapse {
    position: absolute;
    top: 0;
    display: flex;
    align-items: start;
    left: -20px;
}

#collapseBtn {
    display: none !important;
    transition: opacity 0.3s ease-in-out;
}

.collapse-btn {
    background: #e4e4e4;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    color: #868686;
    padding: 5px;
    height: 47px;
    display: flex !important;
    align-items: center;
    border-radius: 14px 0px 0px 14px;
    cursor: pointer;
}

#collapseIcon {
    transition: transform 0.3s ease;
}

.right-sidebar:hover #collapseBtn {
    display: flex !important;
}

.collapse-con {
    height: calc(100vh - 82px);
    overflow-y: auto;
}

.accordion-button:not(.collapsed) {
    background: #ffe6c8;
}

    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-icon) !important;
    }

.accordion-button::after {
    font-size: 10px;
    background-size: 17px;
    position: relative;
    top: 2px;
}

.accordion-body {
    padding: 10px 12px !important;
}

.info-label {
    color: #4e4e4e;
    font-size: 17px;
}

.acc-width {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal; /* Ensure text can wrap */
}

.middle-sec.writer-sec {
    height: calc(100vh);
}

.writer-body h1 {
    font-weight: 700;
}


.saving-txt {
    font-size: 1.1rem;
    position: absolute;
    right: 10px;
    font-weight: 600;
    color: #959595;
    display: flex;
    gap: 8px;
    top: 8px;
}


.left-sidebar-col {
    position: absolute !important;
    left: 0px !important;
    top: 8px !important;
    z-index: 9999 !important;
    display: flex;
    align-items: center;
}

    .left-sidebar-col:hover {
        background: #f2f2f2;
    }

.right-sidebar-col {
    position: absolute !important;
    right: 0px !important;
    top: 8px !important;
    z-index: 9999 !important;
    display: flex;
    align-items: center;
}

    .right-sidebar-col:hover {
        background: #f2f2f2;
    }

.accordion-button:not(.collapsed) {
    background: #ffe6c8;
    color: #000000;
}

    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-icon) !important;
    }

.accordion-button:focus {
    box-shadow: none !important;
}


.fw-500 {
    font-weight: 500 !important;
}

.accordion-body {
    padding: 10px 12px !important;
}

.cust-select {
    width: 100%;
    background-color: #f2f2f2;
    color: #959595;
    height: 35px;
    padding: 5px 10px;
    line-height: 12px;
}

.w-full {
    margin-right: 0px !important;
}
.inactive {
    transform: translateX(100%);
}
.right-collapse #collapseBtn.dis-flex {
    display: flex !important;
}
.rotate-180 {
    transform: rotate(180deg);
}
.accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: #3d3d3d !important;
}
.divider-sec {
    height: 1px;
    background: #ffe6c8;
    margin-bottom: 1rem;
}

.info-con {
    border-bottom: 1px solid #e8e8e8;
}

    .info-con .info-label:first-child {
        word-break: break-all;
        width:50%;
    }

    .info-con .info-label:last-child {
        word-break: break-all;
        width: 50%;
    }

.form-check-input:checked {
    background-color: #ff790d;
    border-color: #ff790d;
}

.status-con-draft {
    padding: 4px 10px;
    background: #26e7a6 !important;
    border: 1px solid #26e7a6 !important;
    color: white !important;
    cursor: auto !important;
    opacity: 0.6;
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
}

.status-con-publish {
    padding: 4px 10px;
    background: #26a0fc !important;
    border: 1px solid #26a0fc !important;
    color: white !important;
    cursor: auto !important;
    opacity: 0.6;
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
}

/*Editor*/

.wait-msg-toc {
    position: relative;
    top: -55px;
}

.wait-msg-article {
    position: relative;
    top: -116px;
}

.pro-con {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.wait-screen img{
    width:600px !important;
    max-width:100%;
}

.modal-textarae{
    height:calc(50vh - 150px);
}
.modal-textarae-full{
    height:calc(100vh - 300px);
}

.td-status-draft {
    background: #26e7a6;
    color: white;
    font-weight: 500;
    text-align: center;
    display: inline-flex;
    padding: 3px 20px;
    border-radius: 50px;
}
.td-status-publish {
    background: #008ffb !important;
    color: white;
    font-weight: 500;
    text-align: center;
    display: inline-flex;
    padding: 3px 20px;
    border-radius: 50px;
}

.icon-secc {
    color: #16b900;
    font-size: 35px;
}



/*Admin*/
.table-con.table-admin {
    max-height: calc(100vh - 330px);
    overflow-y: auto;
    min-height: calc(100vh - 320px);
    border-top: 1px solid #e1c1b2;
}
.dropdown-toggle.admin-user::after {
    display: none !important;
}
.admin-user{
    font-weight:600;
}
.credit-sec {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.light {
    background: #fff;
    color: #D43370;
}

.tdnn {
    margin: 0 auto;
    font-size: 11%;
    position: relative;
    height: 16em;
    width: 35em;
    border-radius: 16em;
    transition: all 500ms ease-in-out;
    background: #4f4c4c;
    overflow: hidden;
    cursor:pointer;
    /* outline: 1px solid #3a3a3a; */
}

.day {
    background: #f1f2f6;
    border: 1px solid #c7c9cb;
}

.moon {
    position: absolute;
    display: block;
    border-radius: 50%;
    transition: all 400ms ease-in-out;
    top: 3em;
    left: 22em;
    transform: rotate(-75deg);
    width: 10em;
    height: 10em;
    background: #4f4c4c;
    box-shadow: 3em 2.5em 0 0em #D9FBFF inset, #ffffff -7em -18em 0 -4.5em, #ffffff -4em -11em 0 -4.5em, #ffffff 0em -15em 0 -4em, #ffffff 0em -10em 0 -4.1em, #ffffff -8em -8em 0 -4.5em, #ffffff 5em 2em 0 -4.5em, #ffffff -8em -13em 0 -4.5em, #ffffff -4em -9em 0 -4.5em;
}

.sun {
    top: 4em;
    left: 5em;
    transform: rotate(0deg);
    width: 7em;
    height: 7em;
    background: #fff;
    box-shadow: 3em 3em 0 5em #b1b1b1 inset, 0 -5em 0 -2.7em #b1b1b1, 3.5em -3.5em 0 -3em #b1b1b1, 5em 0 0 -2.7em #b1b1b1, 3.5em 3.5em 0 -3em #b1b1b1, 0 5em 0 -2.7em #b1b1b1, -3.5em 3.5em 0 -3em #b1b1b1, -5em 0 0 -2.7em #b1b1b1, -3.5em -3.5em 0 -3em #b1b1b1;
}

.acc-type {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 5px;
    white-space: nowrap;
    color: #ffffff;
    background: #fda001;
    font-size: 18px;
}

.top-level-img {
    width: 23px !important;
    position: relative;
    top: -3px;
    margin-right: 8px;
}

.w-ad {
    width: 180px;
    text-align: center;
    justify-content: center;
}

.text-lg {
    font-size: 1.2rem; /* 20% larger than default */
}