:root {
    --black: #121416;
    --white: #fff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
    overflow-x: hidden;
    line-height: normal;
}

*:focus {
    color: inherit;
    outline: inherit;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    text-decoration: none;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    line-height: normal;
    word-break: break-word;
}

a {
    text-decoration: none;
    font-size: 16px;
    line-height: normal;
    word-break: break-word;
}

.ct-btn {
    padding: 14px 25px;
    color: var(--white);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    background-color: var(--black);
}

.ct-outline-btn {
    padding: 14px 25px;
    color: var(--black);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 16px;
    border: 2px solid #121416 !important;
    background: var(--white);
}

.ct-outline-btn:hover,
.ct-btn:hover {
    background-color: var(--black);
    color: var(--white) !important;
}

.w-fit {
    width: fit-content;
}

.error-text {
    word-break: break-all;
    max-width: 70px;
}

.loader-active {
    position: relative;
}

.select-picker-disabled {
    background-color: #e9ecef !important;
    opacity: 1 !important;
}

.select-picker-disabled .dropdown {
    opacity: 1 !important;
}

.auth-input-position .filter-option-inner .filter-option-inner-inner {
    font-weight: 500;
}

.loader-active span {
    display: none;
}

.loader-active::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border: 3px solid transparent;
    border-left-color: #fff;
    border-top-color: #fff;
    animation: spin 0.6s infinite linear, grow 0.3s forwards ease-out;
    margin-left: -13px;
}

@keyframes spin {
    to {
        transform: rotate(359deg);
    }
}

.dashboard-container .dashboard-menu-list ul li a .down-image img {
    width: 20px;
}

.sub-menu-container {
    margin-left: 45px;
}

.sub-menu-container li a {
    background-color: transparent !important;
    padding: 9px !important;
    color: #4d4b4b !important;
    font-size: 15px !important;
}

.sub-menu-container li a:hover {
    color: var(--black) !important;
}

.sub-menu-container li a::before,
.sub-menu-container li a::after {
    display: none;
}


/*====================== Header-css =================================== */

.navbar-container {
    z-index: 9999;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 0 10px rgb(207 207 207 / 50%);
}

.navbar-container .navbar-collapse {
    flex-grow: unset !important;
}

.navbar-container .navbar-nav .nav-item .nav-link {
    margin: 0 15px;
    padding: 15px 10px;
    position: relative;
    color: #111112;
    font-size: 18px;
    font-weight: 400;
}

.navbar-container .navbar-nav .nav-item .nav-link:hover,
.navbar-container .navbar-nav .nav-item .nav-link.active {
    color: #7caf44;
}

.navbar-container .navbar-toggler {
    font-size: 25px;
    padding: 0;
}

.navbar-container .navbar-toggler:focus {
    outline: 0;
    border: 0;
    box-shadow: none;
}

.select-menu {
    border-radius: 12px;
    border: 1px solid #bebdbd;
    background: #f5f5f5;
    padding: 9px 22px 9px 37px;
    appearance: none;
    min-width: 140px;
    text-align: left;
    color: #4d4b4b;
    font-size: 16px;
    font-weight: 400;
    background-image: url("../img/arrow-down.png");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 90%;
    min-height: 40px;
}

.navbar-container .selectmenu-icon {
    position: absolute;
    left: 10px;
    top: 9px;
}

.dashboard-right-container .selectmenu-icon {
    position: absolute;
    left: 10px;
    top: 9px;
}


/* ======================== login-page-css ===================================== */

.auth-login-container-bg {
    background-image: url("../img/login-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.auth-logo-image {
    text-align: center;
    margin-bottom: 20px;
}

.auth-login-container {
    height: 100vh;
    overflow: auto;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.auth-login-container .auth-login-main {
    border-radius: 30px;
    border-top: 4px solid var(--black) !important;
    background: #fff;
    box-shadow: 0px 0px 31px 0px rgba(15, 42, 69, 0.1);
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.32);
}

label {
    color: #4d4b4b;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    width: fit-content;
}

.form-control {
    padding: 15px;
    border-radius: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    padding-left: 42px !important;
    border-radius: 16px;
    border: 1px solid #a7a7a7;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--black);
}

.auth-input-position {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 18px;
    top: 16px;
}

.form-check-input:checked {
    background-color: var(--black) !important;
    border-color: var(--black);
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-label {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    top: 6px;
}

.show-to-users-label {
    top: 3px !important;
}

.auth-eye-icon {
    position: absolute;
    right: 25px;
    top: 17px;
    cursor: pointer;
}

.password-input {
    padding-right: 70px;
}

.forget-password a {
    color: #111112;
    font-size: 14px;
    font-weight: 400;
}

.eye-close {
    display: none;
}

.auth-login-container .signup-text p {
    color: #4d4b4b;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
}

.auth-login-container .signup-text p a {
    text-decoration: underline;
    font-size: 12px;
    font-weight: 400;
}

.auth-login-container .auth-login-width {
    max-width: 700px;
    margin: auto;
}

.auth-login-container .auth-login-height {
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
}


/*====================== dashboard-css =====================================  */

.dashboard-container {
    display: flex;
    height: 100vh;
    background: rgba(241, 241, 241, 1);
}

.dashboard-container .dashboard-left-container {
    border-right: 1px solid #d4d4d4;
    background: #fff;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.5s;
    width: 280px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    overflow-x: hidden;
    z-index: 888;
}

.sidebar-active .dashboard-right-container .dashboard-header {
    padding-left: 20px;
}

.dashboard-container .dashboard-logo a {
    display: flex;
    justify-content: center;
}

.dashboard-container .dashboard-logo img {
    height: auto;
    width: 150px;
}

.dashboard-container .dashboard-menu-list {
    padding: 30px 0 0 0;
}

.dashboard-container .dashboard-menu-list .dashboard-height {
    height: calc(100dvh - 114px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.dashboard-container .dashboard-menu-list .dashboard-height::-webkit-scrollbar-thumb {
    background: transparent;
}

.dashboard-container .dashboard-menu-list .dashboard-height:hover::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}

.dashboard-container .dashboard-menu-list ul li a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px 9px 14px 15px;
    color: #4d4b4b;
    font-size: 16px;
    font-weight: 500;
}

.dashboard-container .dashboard-menu-list ul li a[aria-expanded="true"] .down-image img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}


/* .dashboard-container .dashboard-menu-list ul li a span {
    white-space: nowrap;
} */

.dashboard-container .dashboard-menu-list ul li a:hover {
    color: var(--black);
}

.dashboard-container .dashboard-menu-list ul li.active a:hover img {
    filter: none;
    -webkit-filter: none;
}

.dashboard-container .dashboard-menu-list ul li.active .normal-img,
.dashboard-container .dashboard-menu-list ul li .active-img {
    display: none;
}

.dashboard-container .dashboard-menu-list ul li.active .active-img {
    display: block;
}

.dashboard-container .dashboard-menu-list ul li.active .sub-item-active .normal-img-sub {
    display: none !important;
}

.dashboard-container .dashboard-menu-list ul li.active .sub-item-active .active-img-sub {
    display: block !important;
}

.dashboard-container .dashboard-menu-list ul li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.dashboard-container .dashboard-menu-list ul li.active a {
    color: #121416;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 9;
}

.dashboard-container .dashboard-menu-list ul li.active a::after {
    border-radius: 8px;
    opacity: 0.06;
    background: var(--black);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.dashboard-container .dashboard-menu-list ul li.active a::before {
    width: 4px;
    height: 25px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    background: var(--black);
}

.dashboard-right-container .dashboard-header {
    padding: 13px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 444;
    left: 0;
    padding-left: 300px;
}

.dashboard-right-container .dashboard-header .menu-icon {
    width: 20px;
    height: auto;
    cursor: pointer;
}

.dashboard-right-container .dashboard-header .dop-img img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu {
    padding: 24px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.14);
    min-width: 260px;
    right: 0 !important;
    left: -10px !important;
    margin-top: 10px !important;
    border-bottom: 4px solid #7caf44;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    white-space: normal;
    gap: 10px;
    color: #111112;
    font-size: 16px;
    font-weight: 400;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item.logout {
    color: red;
    padding-bottom: 0 !important;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item img {
    width: 20px;
    height: auto;
}

.dashboard-right-container .dashboard-header h2 {
    color: #121416;
    font-size: 24px;
    font-weight: 700;
}

.dashboard-container .close-icon {
    display: none;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu {
    padding: 24px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.14);
    min-width: 260px;
    right: 0 !important;
    left: -10px !important;
    margin-top: 10px !important;
    border-bottom: 4px solid var(--black);
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    white-space: normal;
    gap: 10px;
    color: #111112;
    font-size: 16px;
    font-weight: 400;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item.logout {
    color: red;
    padding-bottom: 0 !important;
}

.dashboard-right-container .dashboard-header .dropdown .dropdown-menu .dropdown-item img {
    width: 20px;
    height: auto;
}

.dashboard-right-container .profile-image-flex {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.dashboard-right-container .profile-image-flex h3 {
    color: #111112;
    font-size: 14px;
    font-weight: 600;
}

.dashboard-right-container .profile-image-flex p {
    color: #111112;
    font-size: 13px;
    font-weight: 400;
}

.dashboard-right-container .notification-img {
    width: 44px;
    height: 44px;
    background-color: rgba(18, 20, 22, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.notification-img-icon {
    width: 10px;
    height: 10px;
    background: #71d561;
    border: 1px solid var(--white);
    position: absolute;
    border-radius: 50%;
    right: 12px;
    top: 11px;
}

.sidebar-active .dashboard-left-container {
    width: 0;
}

.dashboard-left-container .dashboard-left-container-padding {
    padding: 16px 8px 16px 16px;
}


/*====================== dashboard-body-css =====================================  */

.dashboard-body-content {
    margin-top: 80px;
    padding: 30px;
}

.dashboard-breadcrumb-section {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-breadcrumb-section h2 {
    color: #111112;
    font-size: 22px;
    font-weight: 600;
}

.dashboard-breadcrumb-section p {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
}

.dashboard-breadcrumb-section p a {
    font-weight: 400;
    color: #595959;
    font-size: 18px;
}

.dashboard-container .dashboard-right-container {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: auto;
    flex: 1;
}

.card {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: var(--white);
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.card-title h2 {
    border-radius: 0px 16px 16px 0px;
    background: linear-gradient(90deg, rgba(140, 209, 147, 0.24) 0.14%, rgba(140, 209, 147, 0.05) 62.84%, rgba(140, 209, 147, 0) 70.01%);
    color: #0a0b0a;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 30px;
    width: fit-content;
    position: relative;
}

.card-title h2::before {
    border-radius: 0px 2px 2px 0px;
    background: linear-gradient(4deg, #46896f -23.96%, rgba(70, 137, 111, 0.5) 119.7%);
    position: absolute;
    content: "";
    width: 4px;
    height: 22px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.card-body {
    padding: 30px;
}

.form-control.text-area {
    height: 100px;
    padding-left: 15px !important;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

.submit-container {
    margin-top: 40px;
}

.submit-container .ct-outline-btn {
    max-width: 178px;
    width: 100%;
    text-align: center;
}

.submit-container .ct-btn {
    max-width: 178px;
    width: 100%;
    text-align: center;
    min-height: 50px;
}

.inventory-mgt-flex h2 {
    color: #0a0b0a;
    font-size: 16px;
    font-weight: 400;
    vertical-align: middle;
    white-space: nowrap;
    border: 0;
    min-width: 230px;
}

.inventory-mgt-flex label {
    color: #0a0b0a;
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
    position: relative;
    top: 3px;
    margin-left: 10px;
    white-space: nowrap;
}

.manage-offers-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.manage-search-container {
    width: 100%;
    max-width: 700px;
}

.manage-search-container .form-control {
    padding: 13px 13px 13px 50px;
    width: 100%;
    color: #000;
    border-radius: 12px;
    border: 1px solid #a7a7a7;
    background: #fff;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.18);
}

.manage-offers-flex h2 {
    color: #111112;
    font-size: 22px;
    font-weight: 600;
}

.manage-search-container .search-icon {
    position: absolute;
    left: 13px;
    top: 14px;
}

.manage-search-container .ct-btn {
    max-width: 178px;
    width: 100%;
    margin-left: auto;
}

.max-width-fit-con {
    max-width: fit-content !important;
}

.admin-tab-container .nav .nav-item .nav-link {
    border-bottom: 2px solid #858585;
}

.admin-tab-container .nav .nav-item .nav-link {
    color: #858585;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: 170px;
}

.admin-tab-container .nav .nav-item .nav-link.active {
    background-color: transparent;
    border-bottom: 2px solid #121416;
    color: #121416;
    font-weight: 600;
}

.ct-dashboard-table-container .card .table thead th {
    background: #f5f5f5;
    color: #121416;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 0;
    padding: 15px;
    white-space: nowrap;
    text-align: left;
}

.ct-dashboard-table-container .card .table thead th:first-child {
    border-radius: 12px 0 0 12px;
    -webkit-border-radius: 12px 0 0 12px;
    -moz-border-radius: 12px 0 0 12px;
    -ms-border-radius: 12px 0 0 12px;
    -o-border-radius: 12px 0 0 12px;
}

.ct-dashboard-table-container .card .table thead th:last-child {
    border-radius: 0 12px 12px 0;
    -webkit-border-radius: 0 12px 12px 0;
    -moz-border-radius: 0 12px 12px 0;
    -ms-border-radius: 0 12px 12px 0;
    -o-border-radius: 0 12px 12px 0;
}

.ct-dashboard-table-container .card .table tbody tr td {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 0;
    padding: 15px;
    white-space: nowrap;
    border: 0 !important;
    text-align: left !important;
    vertical-align: middle;
}

.ct-dashboard-table-container .card .table tbody tr:last-child {
    border-bottom: 0 !important;
}

.ct-dashboard-table-container .card .table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 22px !important;
    height: auto !important;
}

.cursor-pointer {
    cursor: pointer;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 10px;
    flex-wrap: wrap;
}

.pagination-container .dt-paging .dt-paging-button {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.14) !important;
    background: #f2f2f2 !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4b4b !important;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 0 !important;
    border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
}

div.dt-container .dt-paging button.dt-paging-button.current,
div.dt-container .dt-paging button.dt-paging-button.current:hover {
    background: var(--black) !important;
    color: var(--white) !important;
}

.dt-info {
    color: #6b6b6b !important;
    font-size: 16px;
    font-weight: 600;
}

div.dt-container .dt-paging button.dt-paging-button:hover {
    color: #4d4b4b !important;
}

.ct-dashboard-table-container .card .table tbody tr td.ellipsis-text {
    max-width: 200px !important;
}

div.dt-container .dt-paging .dt-paging-button.first,
div.dt-container .dt-paging .dt-paging-button.previous,
div.dt-container .dt-paging .dt-paging-button.last,
div.dt-container .dt-paging .dt-paging-button.next {
    background-color: transparent !important;
    border: 0 !important;
    font-size: 20px !important;
}

.dt-paging nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ellipsis-text {
    text-overflow: ellipsis;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
}

.profile-image {
    position: relative;
}

.profile-image .profile-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-image-position {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.input-file-main {
    flex: 1;
    width: 100%;
}

.form-menu {
    background-image: url("../img/arrow-down.png");
    background-size: 20px;
    background-position: 96%;
    background-repeat: no-repeat;
    color: #4d4b4b;
}

.verified-btn {
    color: #10608c !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline !important;
}

.table-badge {
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 600;
    width: 85px;
    text-align: center;
}

.table-badge.active {
    color: #00a32e;
    border: 1px solid #00a32e;
    background: #d3f2dc;
    border-radius: 8px;
}

.table-badge.pending {
    color: #be9811;
    border: 1px solid #be9811;
    background: #f5eed4;
    border-radius: 8px;
}

.table-badge.inactive {
    color: red;
    border: 1px solid red;
    background: #fad7d7;
    border-radius: 8px;
}

.table-badge.live {
    color: #d63384;
    /* Bootstrap Pink */
    border: 1px solid #d63384;
    background: #fce4ec;
    /* Light pink background */
    border-radius: 8px;
}

.table-badge.paid {
    color: #6f42c1;
    /* Bootstrap Purple */
    border: 1px solid #6f42c1;
    background: #e5d9f2;
    /* Light purple background */
    border-radius: 8px;
}

.form-check-toggle .form-check-input {
    width: 44px;
    height: 24px;
    cursor: pointer;
    background-color: rgba(183, 183, 183, 0.5);
    border: 0;
}

.form-check-toggle .form-check-label {
    color: #0a0b0a;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 15px;
}

.profile-image-shop .profile-image {
    overflow: hidden;
}

.profile-image-shop .profile-image-position {
    bottom: -1px;
    display: flex;
    gap: 5px;
    align-items: center;
    /* background-color: var(--black); */
    /* Comment for Future Use */
    top: unset;
    cursor: pointer;
}

.form-control::placeholder {
    color: #4d4b4b;
}

textarea {
    resize: none;
    height: 111px;
}

textarea.caption-textarea {
    padding-left: 15px !important;
}

.profile-image-shop .profile-image-position p {
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
}

.add-icon {
    border-radius: 16px;
    border: 1px solid #a7a7a7;
    background: rgba(18, 20, 22, 0.08);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.date-form {
    padding-left: 15px !important;
    color: #4d4b4b !important;
}

.add-expertise-btn {
    border-radius: 16px;
    border: 1px solid #a7a7a7;
    background: var(--white);
    padding: 14px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    color: #4d4b4b;
    font-size: 16px;
    font-weight: 400;
}

.ct-file-container {
    border-radius: 16px;
    border: 1px dashed rgba(22, 22, 22, 0.48);
    background: var(--white);
    padding: 40px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.ct-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    cursor: pointer;
    text-align: center;
}

.badge-text {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(18, 20, 22, 0.04);
    padding: 9px;
    position: relative;
    color: #0a0b0a;
    font-size: 14px;
    font-weight: 400;
}

.badge-text .close-icon-shop {
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
}

.ct-file-shop-container {
    padding: 25px 16px;
    text-align: center;
    max-width: 130px;
    width: 100%;
}

.ct-file-shop-container p {
    color: #1e1f21;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
}

.ct-file-image {
    position: relative;
}

.ct-file-image .ct-file-images,
.video-cover-box {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
}

.play-button-box {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.12);
}

.play-button-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.full-upload-image-box {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.full-upload-image-box .ct-file-image {
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-upload-image-box .ct-file-image video {
    max-width: 100% !important;
    width: 100% !important;
    max-height: fit-content !important;
    object-fit: cover;
}

.full-upload-image-box .ct-file-images {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-position: top center;
}

.default-up-input.image_zone {
    position: absolute;
    z-index: 88;
    top: 20px;
    right: 20px;
}

.default-up-input.image_zone .inner-up-input {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.default-up-input .upload-pen {
    width: 24px;
    height: 24px;
    margin: 0;
    display: none;
    pointer-events: none;
}

.default-up-input.image_zone .file-input {
    width: fit-content;
    left: -100px;
}

.default-up-input.image_zone .upload-pen {
    display: block;
}

.ct-file-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.file-container-upload {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
    width: 100%;
    flex: 1;
}

.modal .modal-content {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    padding: 50px;
    z-index: 9;
}

.delete-modal .modal-content::before {
    content: "";
    width: 100%;
    height: 111px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(203, 113, 113, 0.22) 0%, rgba(203, 113, 113, 0.08) 45.38%, rgba(203, 113, 113, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.delete-modal .modal-body {
    text-align: center;
}

.modal .modal-body img {
    margin-bottom: 30px;
}

.modal .modal-body h2 {
    color: #121416;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-select {
    padding-right: 30px;
}

.ct-manage-shop-container {
    height: calc(100vh - 235px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    text-align: center;
    margin: auto;
    padding: 30px;
}

.ct-manage-shop-container h2 {
    color: #121416;
    font-size: 20px;
    font-weight: 700;
}

.ct-manage-shop-container p {
    color: #0a0b0a;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 50px;
}

.ct-manage-shop-container .ct-btn {
    font-size: 16px;
    max-width: 238px;
    width: 100%;
}

.reset-modal .modal-content {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    padding: 40px 50px;
    z-index: 9;
}

.reset-modal .modal-body {
    text-align: center;
}

.reset-modal .modal-body img {
    margin-bottom: 30px;
}

.reset-modal .modal-body h2 {
    color: #121416;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reset-modal .modal-body p {
    color: #0a0b0a;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
}

.generate-btn .generate-span {
    border-radius: 16px;
    background: #e8e8e8;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 400;
}

.user-pwd .password-input {
    padding-right: 120px;
}

.user-pwd .auth-eye-icon {
    position: absolute;
    right: 20px;
    top: 12px;
    cursor: pointer;
}

.down-icon {
    position: absolute;
    right: 14px;
    top: 14px;
}

.select-down {
    max-width: 220px;
}

.manage-search-container-artist {
    width: 100%;
    max-width: 900px;
}

.manage-search-container-artist .form-control {
    padding-right: 42px;
}

.table-profile img {
    width: 28px;
    height: 28px;
    border-radius: 28px;
}

.table-select-menu {
    border-radius: 8px;
    padding: 3px 23px 3px 5px;
    min-width: 87px;
    appearance: none;
    font-size: 12px;
    font-weight: 400;
    background-image: url("../img/dashboard/select-arrow.png");
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 90%;
}

.table-select-menu option {
    background-color: #fff;
    color: #000;
}

.table-select-menu.active {
    border: 1px solid #00a32e;
    background-color: #d3f2dc;
    color: #00a32e;
}

.table-select-menu.suspended {
    border: 1px solid #997d1b;
    color: #997d1b;
    background-color: rgba(220, 172, 0, 0.2);
}

.table-select-menu.banned {
    color: #f22626;
    border: 1px solid #f22626;
    background-color: #fad7d7;
}

.table-select-menu.inactive {
    color: #ff8d00;
    border: 1px solid #ff8d00;
    background-color: #fff0dd;
}

table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order {
    right: 1px !important;
}

.ct-manage-shop-container-card {
    overflow: auto;
}

.filter-label {
    font-size: 18px;
    color: #121416;
}

.post-image-container {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: var(--white);
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1);
    padding: 5px;
    height: 100%;
}

.post-image-container .post-image-title h2 {
    background-color: rgba(6, 122, 39, 0.1);
    color: #0a0b0a;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 12px;
    position: relative;
}

.post-image-container .post-image-title h2::before {
    content: "";
    width: 4px;
    height: 22px;
    border-radius: 0px 2px 2px 0px;
    background: linear-gradient(4deg, #46896f -23.96%, rgba(70, 137, 111, 0.5) 119.7%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.post-image-container .post-image-body {
    padding: 30px;
}

.post-image-body.promo-usages-history {
    padding-bottom: 0 !important;
}

.post-image-container .post-image-body img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
}

.post-image-container .post-image-flex {
    display: flex;
    gap: 12px;
}

.post-image-container .post-image-flex h2 {
    color: #858585;
    font-size: 16px;
    font-weight: 600;
    width: 170px;
}

.post-image-container .user-management-personal-box .post-image-flex h2 {
    width: 100px;
}

.post-image-container .post-image-flex p {
    color: #0a0b0a;
    font-size: 16px;
    font-weight: 400;
    flex: 1;
    line-height: 24px;
}

.paid-deposit-text {
    color: #278fca;
    font-size: 16px;
    font-weight: 600;
}

.post-image-container .target-list {
    flex: 1;
}

.post-image-container .target-list h6 {
    color: #1d60cb;
    font-size: 16px;
    font-weight: 400;
}

.no-show {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.18);
    padding: 5px 15px;
    color: #121416;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-left: 8px;
}

.reference-flex {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
}

.reference-flex .ref-img img {
    height: 115px;
}

.ct-discover-table-container .thumbnail-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.ct-discover-table-container table tr td {
    vertical-align: middle;
}

.ct-dashboard-table-container.ct-discover-table-container .table tbody tr td.ellipsis-text {
    max-width: 250px !important;
}

.discover-add-post-image-container {
    border-radius: 16px;
    border: 1px dashed rgba(22, 22, 22, 0.48);
    background: #f9f9f9;
    min-height: 645px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.discover-add-post-image-container.show-discover-add-post {
    min-height: 200px;
    margin-top: 30px;
}

.discover-add-post-image-container img {
    margin: 0 auto 20px;
    width: 78px;
    height: auto;
}

.discover-add-post-image-container p {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
}

.pl-15 {
    padding-left: 15px !important;
}

.post-form {
    max-width: 189px;
}

.dashboard-users-flex {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.dashboard-users-flex .dashboard-flex-content {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.18);
    padding: 4px;
    position: relative;
}

.dashboard-users-flex .dashboard-flex-content h2 {
    border-radius: 12px;
    background-color: rgba(255, 212, 163, 0.3);
    color: #4d4b4b;
    font-size: 18px;
    font-weight: 600;
    padding: 9px 20px;
    position: relative;
}

.dashboard-users-flex .dashboard-flex-content h2::before {
    width: 4px;
    height: 19px;
    border-radius: 0px 2px 2px 0px;
    background: #ce8c3a;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.dashboard-users-flex .dashboard-flex-body {
    padding: 22px 18px;
}

.dashboard-users-flex .dashboard-flex-body p {
    color: #0a0b0a;
    font-size: 26px;
    font-weight: 600;
}

.dashboard-users-flex .dashboard-image {
    position: absolute;
    right: 20px;
    bottom: 11px;
}

.dashboard-users-flex .dashboard-image img {
    width: 100%;
    height: auto;
}

.dashboard-users-flex .artist-content h2 {
    background-color: rgba(165, 219, 232, 0.3);
}

.dashboard-users-flex .artist-content h2::before {
    background: #3b8192;
}

.dashboard-users-flex .booking-content h2 {
    background-color: rgba(222, 225, 133, 0.3);
}

.dashboard-users-flex .booking-content h2::before {
    background: #7b7e23;
}

.dashboard-users-flex .revenue-content h2 {
    background-color: rgba(209, 240, 196, 0.37);
}

.dashboard-users-flex .revenue-content h2::before {
    background: #4c8932;
}

.dashboard-users-flex .subscriptions-content h2 {
    background-color: rgba(251, 200, 200, 0.3);
}

.dashboard-users-flex .subscriptions-content h2::before {
    background: #a54040;
}

.revenue-chart-content {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: var(--white);
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1);
    padding: 4px;
    height: 100%;
}

.revenue-chart-title {
    border-radius: 12px;
    background: #f5f5f5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.revenue-chart-title-label h2::before {
    width: 4px;
    height: 15px;
    content: "";
    border-radius: 0px 2px 2px 0px;
    background: var(--33, linear-gradient(4deg, #46896f -23.96%, rgba(70, 137, 111, 0.5) 119.7%));
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.revenue-chart-content h2 {
    color: #121416;
    font-size: 18px;
    font-weight: 600;
}

.revenue-chart-title .form-control {
    padding: 6px 32px 6px 11px !important;
    border-radius: 8px;
    border: 1px solid #d0d4da;
    background: #fff;
    background-image: url("../img/dashboard/dashboard-arrow.png");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 95%;
    min-width: 127px;
}

.revenue-card-body {
    padding: 25px;
}

.revenue-card-body table thead tr th {
    padding: 10px 20px;
    background: #e7e7e7;
    color: #121416;
    font-size: 14px;
    font-weight: 600;
    border: 0;
    white-space: nowrap;
}

.revenue-card-body table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.21);
}

.revenue-card-body table tbody tr:last-child {
    border-bottom: 0;
}

.revenue-card-body table tbody tr td {
    padding: 12px 20px;
    color: #121416;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    white-space: nowrap;
}

.revenue-card-body table thead tr th:first-child {
    border-radius: 0px 0px 0 12px;
    -webkit-border-radius: 0px 0px 0 12px;
    -moz-border-radius: 0px 0px 0 12px;
    -ms-border-radius: 0px 0px 0 12px;
    -o-border-radius: 0px 0px 0 12px;
}

.revenue-card-body table thead tr th:last-child {
    border-radius: 0px 0px 12px 0;
    -webkit-border-radius: 0px 0px 12px 0;
    -moz-border-radius: 0px 0px 12px 0;
    -ms-border-radius: 0px 0px 12px 0;
    -o-border-radius: 0px 0px 12px 0;
}

.revenue-chart-title-corner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.view-btn a {
    border-radius: 12px;
    background: #e7e7e7;
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    color: #0a0b0a;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11px;
}

.text-blue {
    color: #1d60cb !important;
    font-size: 16px;
    font-weight: 400 !important;
}

.text-black {
    color: #121416 !important;
}

.decline-btn {
    border-radius: 8px;
    border: 1px solid #da0505 !important;
    padding: 2px 10px;
    color: #da0505;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.decline-btn:hover {
    background-color: #da0505;
    color: var(--white);
}

.approve-btn {
    border-radius: 8px;
    border: 1px solid #076633 !important;
    padding: 2px 10px;
    color: #076633;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.approve-btn:hover {
    background-color: #076633;
    color: var(--white);
}

.table-profile-icon {
    background-color: #a7afc8;
    width: 28px;
    height: 28px;
    color: #425089;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.approval-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.approval-flex h2 {
    color: #0a0b0a;
    font-size: 22px;
    font-weight: 600;
}

.approval-flex a {
    color: #4d4b4b;
    font-size: 18px;
    font-weight: 600;
}

#revenueChart {
    width: 100% !important;
}

table.dataTable thead>tr>th.dt-orderable-asc:hover,
table.dataTable thead>tr>th.dt-orderable-desc:hover,
table.dataTable thead>tr>td.dt-orderable-asc:hover,
table.dataTable thead>tr>td.dt-orderable-desc:hover {
    outline: 0 !important;
}

.auth-input-position .select2-container {
    width: 100% !important;
}


/* Custom styling for Select2 to match your design */

.auth-input-position .select2-container--default .select2-selection--multiple {
    border: 1px solid #a7a7a7;
    border-radius: 16px;
    min-height: 55px;
    padding: 8px;
    padding-left: 50px;
}

.auth-input-position .select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(18, 20, 22, 0.04);
    padding: 6px 12px 6px 9px;
    font-size: 14px;
    position: relative;
    margin-right: 15px;
}

.auth-input-position .select2-container .select2-search--inline .select2-search__field {
    margin-top: 10px;
}

.auth-input-position .select2-container--default .select2-selection--multiple .select2-selection__clear {
    display: none !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: var(--black) !important;
}

.auth-input-position .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #000000;
    margin-right: 5px;
    position: absolute;
    width: 19px;
    height: 20px;
    border: 1px solid #fff;
    background: #d3d3d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    right: -15px;
    top: -4px;
    z-index: 999;
    font-size: 15px;
    line-height: 18px;
}

.auth-input-position .select2-container--default .select2-results__option--highlighted {
    background-color: #f0f7ff;
    color: #333;
}

.auth-input-position .select2-dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hours-flex {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.white-nowrap {
    white-space: nowrap;
}

.date-width {
    flex: 1;
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.inventory-mgt-flex .form-check-input {
    width: 20px;
    height: 20px;
}

.invertory-child-flex {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    flex: 1;
}

.inventory-mgt-flex:last-child {
    border-bottom: 0;
}

.inventory-mgt-flex {
    border-bottom: 1px solid rgba(0, 0, 0, 0.21);
    padding: 15px 10px;
    flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}


/* setting-profile-css */

.setting-profile-flex {
    display: grid;
    grid-template-columns: 365px auto;
    gap: 30px;
}

.setting-profile-flex .table tbody tr td {
    white-space: normal !important;
}

.setting-profile-box {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: #fff;
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.setting-profile-bg {
    position: relative;
    z-index: 99;
    text-align: center;
}


/* .setting-profile-bg-position {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
} */

.setting-profile-flex .setting-profile-bg .profile-img {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    margin-top: -60px;
}

.setting-profile-flex .setting-profile-box h2 {
    color: #0a0b0a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.setting-profile-flex .setting-profile-box p {
    color: #4d4b4b;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.setting-profile-flex .setting-profile-tab {
    padding: 20px;
}

.max-w-100 {
    max-width: 100% !important;
}

.setting-profile-flex .setting-profile-tab .nav-link.active {
    background: linear-gradient(90deg, rgba(140, 209, 147, 0.24) 0.22%, rgba(140, 209, 147, 0.05) 76.88%, rgba(140, 209, 147, 0) 85.64%);
    font-weight: 700;
    color: #121416 !important;
}

.setting-profile-flex .setting-profile-bg-position img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-position: top;
}

.setting-profile-flex .setting-profile-tab .nav-link.active::before {
    content: "";
    width: 4px;
    height: 22px;
    border-radius: 0px 2px 2px 0px;
    background: linear-gradient(4deg, #46896f -23.96%, rgba(70, 137, 111, 0.5) 119.7%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.setting-profile-flex .setting-profile-tab .nav-link {
    color: #4d4b4b !important;
    font-size: 18px;
    padding: 14px 20px;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: left;
}

.setting-profile-flex .setting-profile-right-flex {
    flex: 1;
    width: 100%;
}

.setting-profile-flex .setting-profile-width {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: var(--white);
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1);
    max-width: 775px;
    width: 100%;
}

.setting-profile-flex .setting-profile-title h2 {
    color: #0a0b0a;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
}

.setting-profile-flex .setting-profile-title h2:before {
    border-radius: 0px 2px 2px 0px;
    background: linear-gradient(4deg, #46896f -23.96%, rgba(70, 137, 111, 0.5) 119.7%);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 22px;
}

.setting-profile-flex .setting-profile-card-header {
    padding: 30px 0;
}

.setting-profile-flex .setting-profile-card-body {
    padding: 10px 30px 30px;
}

.setting-profile-flex .setting-profile-tab .nav-link.text-danger {
    color: #f22626 !important;
}

.setting-profile-right-flex .setting-profile-card-body-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.setting-profile-right-flex .setting-profile-card-body-main .setting-profile-tab {
    max-width: 230px;
    border-right: 1px solid #c6c6c6;
    width: 100%;
}

.setting-profile-right-flex .setting-email-flex {
    flex: 1;
}

.ck.ck-toolbar {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    background: transparent !important;
}

textarea.textarea-model {
    padding-left: 15px !important;
}

.model-close-b {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    cursor: pointer;
}

.mark-check-img {
    width: 18px;
    height: auto;
    object-fit: contain;
    margin: 0px 2px 0px 0;
}

.none-mark {
    opacity: 0.5;
    cursor: no-drop;
    pointer-events: none;
}

.user-management-password {
    right: 16px;
    top: 0px;
    z-index: 2;
    height: 54px;
}

.user-management-input {
    padding-right: 145px !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(57, 57, 57, 0.6) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: #000000 !important;
    border-color: #000000 !important;
}

.multi-select-input {
    padding: 0;
    color: var(--black);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    padding-left: 42px !important;
    border-radius: 16px;
    border: 1px solid #a7a7a7;
}

.multi-select-input .dropdown {
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 12px !important;
}

.multi-select-input .dropdown-toggle {
    border-radius: 12px !important;
    padding: 15px 50px 15px 0 !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: inherit !important;
    border: 0 !important;
}

.multi-select-input .dropdown-menu {
    border: 1px solid #a7a7a7;
}

.multi-select-input .dropdown-item.disabled,
.multi-select-input .dropdown-item:disabled {
    color: #000000;
}

.multi-select-input .bootstrap-select .dropdown-toggle:focus,
.multi-select-input .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
    box-shadow: inherit !important;
}

.multi-select-input .dropdown-toggle::after {
    display: none !important;
}

.tag-people-select .dropdown-menu {
    width: 100%;
    max-width: 100%;
}

.tag-people-select .dropdown-menu .form-control {
    padding-left: 15px !important;
}

.tag-people-select {
    padding-left: 0 !important;
}

.tag-people-select .dropdown-toggle {
    padding-left: 48px !important;
}

.tag-people-select .inner .dropdown-menu li {
    padding: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-block-div .comment-item {
    padding: 20px 0;
    border-top: 1px solid rgba(167, 167, 167, 0.32);
}

.post-block-div .comment-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.post-view-more-btn {
    color: #0A0B0A;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.post-block-div .post-user {
    width: 40px;
    height: 40px;
}

.post-user .post-img {
    object-fit: cover;
}

.post-block-div .post-text,
.post-block-div .post-title {
    color: #0a0b0a;
    font-size: 16px;
    line-height: 24px;
}

.post-block-div .post-title {
    margin-bottom: 1px;
    font-weight: 600;
}

.post-block-div .post-text {
    font-weight: 400;
    margin-bottom: 12px;
}

.post-block-div .time-post {
    color: #858585;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.post-block-div .post-tag {
    border-radius: 8px;
    background: rgba(187, 187, 187, 0.16);
    padding: 4px 8px;
    color: #515151;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    cursor: pointer;
}

.post-block-div .post-tag-img {
    width: 12px;
    height: 12px;
}


/*====================== Media-css =====================================  */

@media screen and (max-height: 700px) {
    .auth-login-container {
        align-items: flex-start;
    }
}

@media screen and (min-width: 576px) {
    .modal .modal-dialog {
        max-width: 460px;
    }
    .reset-modal .modal-dialog {
        max-width: 460px;
    }
}

@media screen and (max-width: 1500px) {
    .manage-search-container-artist {
        width: 100%;
        max-width: 700px;
    }
    .dashboard-users-flex {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .setting-profile-right-flex .setting-profile-card-body-main .setting-profile-tab {
        max-width: 100%;
        border-right: 0;
        width: 100%;
        border-bottom: 1px solid #dfdfdf;
    }
}

@media screen and (max-width: 1200px) {
    .sidebar-active-responsive .dashboard-left-container {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        -moz-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
        -o-transform: translateX(0) !important;
    }
    .dashboard-container .dashboard-logo {
        display: flex;
    }
    .dashboard-right-container .dashboard-header {
        padding-left: 20px;
    }
    .dashboard-left-container {
        position: fixed;
        top: 0;
        z-index: 9999;
        transform: translateX(-120%) !important;
        -webkit-transform: translateX(-120%) !important;
        -moz-transform: translateX(-120%) !important;
        -ms-transform: translateX(-120%) !important;
        -o-transform: translateX(-120%) !important;
    }
    .dashboard-container .close-icon {
        position: absolute;
        right: 13px;
        display: block;
        top: 27px;
    }
    .manage-search-container-artist {
        width: 100%;
        max-width: 700px;
    }
    .manage-search-container {
        width: 100%;
        max-width: 720px;
    }
}

@media screen and (max-width: 991px) {
    .discover-add-post-image-container {
        min-height: 355px;
    }
    .setting-profile-flex {
        grid-template-columns: auto;
    }
    table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order,
    table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order,
    table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order,
    table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order,
    table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order,
    table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order,
    table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order,
    table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order {
        right: 0 !important;
    }
    .setting-profile-box,
    .setting-profile-right-flex .setting-profile-card-body-main .setting-profile-tab {
        width: 100%;
        border-right: 0;
        max-width: 100%;
    }
    .setting-profile-bg-position img {
        width: 100%;
        height: 240px;
    }
    .setting-profile-flex .setting-profile-width {
        max-width: 100%;
    }
    .setting-profile-right-flex .setting-email-flex {
        padding: 0;
    }
}

@media screen and (max-width: 700px) {
    .manage-search-container-artist {
        flex-wrap: wrap;
    }
    .select-down {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .user-management-input {
        padding-right: 119px !important;
    }
    .auth-login-container .auth-login-main {
        padding: 25px;
    }
    .dashboard-right-container .dashboard-header h2 {
        font-size: 18px;
    }
    .file-container-upload {
        flex: auto;
    }
    .dashboard-breadcrumb-section h2 {
        font-size: 20px;
    }
    .dashboard-breadcrumb-section p,
    .dashboard-breadcrumb-section p a {
        font-size: 16px;
    }
    .dashboard-body-content {
        margin-top: 80px;
        padding: 15px;
    }
    .card-title h2 {
        font-size: 16px;
        padding: 10px 20px;
    }
    .dashboard-right-container .dashboard-header .drop-img img {
        width: 40px;
        height: 40px;
    }
    .dashboard-right-container .notification-img {
        width: 40px;
        height: 40px;
    }
    .card-body {
        padding: 20px;
    }
    .admin-tab-container .nav .nav-item .nav-link {
        font-size: 16px;
        width: 138px;
    }
    .pagination-container {
        padding: 10px;
        flex-direction: column;
    }
    .dashboard-breadcrumb-section {
        margin-bottom: 20px;
    }
    .modal .modal-content,
    .reset-modal .modal-content {
        padding: 20px;
    }
    .modal .modal-body h2,
    .reset-modal .modal-body h2 {
        font-size: 20px;
    }
    .ct-file-container {
        padding: 20px;
    }
    .manage-offers-flex h2 {
        font-size: 18px;
    }
    .dashboard-container .dashboard-menu-list ul li a {
        font-size: 14px !important;
    }
    .post-image-container .post-image-flex h2 {
        width: 120px;
    }
    .post-image-container .post-image-body {
        padding: 20px;
    }
    .no-show {
        font-size: 14px;
    }
    .dashboard-users-flex .dashboard-flex-body p {
        font-size: 20px;
    }
    .dashboard-users-flex .dashboard-flex-content h2 {
        font-size: 16px;
    }
    .revenue-chart-content h2 {
        font-size: 16px;
    }
    .approval-flex h2 {
        font-size: 18px;
    }
    .approval-flex a {
        font-size: 16px;
    }
    .dashboard-users-flex {
        gap: 17px;
    }
    .revenue-card-body {
        padding: 10px;
    }
    .modal .modal-body img {
        width: 110px;
    }
    .reset-modal .modal-body img {
        width: 100px;
        height: auto;
    }
    .reset-modal .modal-body p {
        margin-bottom: 20px;
    }
    .dashboard-users-flex {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .post-image-container .post-image-body img {
        height: 250px;
    }
    .inventory-mgt-flex {
        display: flex;
        column-gap: 13px;
        justify-content: unset;
        border-bottom: 1px solid rgba(0, 0, 0, 0.21);
        padding: 15px 10px;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 7px;
    }
    .inventory-mgt-flex h2 {
        width: 100%;
    }
    .invertory-child-flex {
        grid-template-columns: repeat(2, 1fr);
    }
    .setting-profile-flex .setting-profile-card-body {
        padding: 10px 20px 30px;
    }
    .setting-profile-flex .setting-profile-tab .nav-link {
        font-size: 16px;
        padding: 10px 17px;
    }
    .setting-profile-flex .setting-profile-title h2 {
        padding-left: 20px;
    }
    .admin-tab-container.notification-tab-sm .nav .nav-item .nav-link {
        width: 92px;
    }
}

@media screen and (max-width: 400px) {
    .dashboard-container .dashboard-left-container {
        width: 250px;
    }
    .dashboard-right-container .dashboard-header h2 {
        font-size: 16px;
    }
    .dashboard-right-container .dashboard-header {
        gap: 10px;
    }
    .dashboard-body-content {
        margin-top: 68px;
    }
    .submit-container .ct-outline-btn {
        max-width: 100%;
        width: 100%;
    }
    .submit-container .ct-btn {
        max-width: 100%;
        width: 100%;
    }
    .submit-container {
        flex-wrap: wrap;
    }
    .manage-search-container {
        flex-wrap: wrap;
    }
    .input-file-main {
        flex: unset;
    }
    .dashboard-breadcrumb-section p,
    .dashboard-breadcrumb-section p a {
        font-size: 14px;
    }
    .generate-btn .generate-span {
        font-size: 12px;
    }
    .user-pwd .password-input {
        padding-right: 80px !important;
    }
    .user-pwd .auth-eye-icon {
        right: 13px;
        top: 16px;
    }
    .post-image-container .post-image-flex h2 {
        width: 100% !important;
    }
    .post-image-container .post-image-flex {
        /* flex-wrap: wrap; */
        flex-direction: column;
        align-items: flex-start !important;
    }
    .add-icon {
        border-radius: 6px;
        width: 36px;
        height: 36px;
    }
    .ct-manage-shop-container p {
        margin-bottom: 20px;
    }
    .discover-add-post-image-container img {
        width: 55px;
        height: auto;
    }
    .discover-add-post-image-container p {
        font-size: 16px;
    }
    .post-form {
        max-width: 100%;
    }
    .manage-search-container .ct-btn {
        max-width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .ct-file-container {
        padding: 16px;
    }
    .invertory-child-flex {
        grid-template-columns: repeat(1, 1fr);
    }
}