/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-family);
    background: var(--light-color);
    color: #444444;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-family);
    color: #020202;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 60px;
    padding: 20px 30px;
    transition: all 0.3s;
    min-height: 80vh;
}


@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
    background-color: var(--primary-color);
    /* background: url("../img/bg-primary.webp"); */
    background: var(--page-title-bg);
    border: 1px solid var(--secondary-color);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
}
.pagetitle nav {
    margin-left: auto;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #f0f3f7;
}
.pagetitle h4{
    /* JB Gold */
    /* color: var(--secondary-color); */
    /* Precia */
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: var(--white);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-color);
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: var(--white);
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

/* Card */
.card {
    margin-bottom: 20px;
    border: none;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0px 0 30px rgb(250 167 25 / 15%);
    /* overflow: hidden; */
}
.card:hover {
    box-shadow: 0px 0 30px rgba(250, 167, 25, 0);
}

.card-header,
.card-footer {
    border-color: var(--light-color);
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: var(--primary-family);
    letter-spacing: 1px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.card-title span {
    /* JewlBox */
    /* color: var(--secondary-color); */
    /* Precia */
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
}

.card-body {
    padding: 10px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: color-mix(in srgb, var(--secondary-color), #000 10%);
    --bs-btn-hover-color: var(--primary-color);
    --bs-btn-hover-bg: color-mix(in srgb, var(--secondary-color), #000 10%);
    --bs-btn-hover-border-color: color-mix(in srgb, var(--secondary-color), #000 10%);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--primary-color);
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: var(--secondary-color);
    --bs-btn-disabled-border-color: var(--secondary-color);
}

.MasterTable {
    border-top: 2px solid var(--secondary-color);
}
.dataTables_wrapper table.dataTable.no-footer {
    border-bottom: 1px solid var(--secondary-color);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: var(--primary-family);
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--light-color);
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--primary-color);
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 15px;
}
.accordion-button{
    background: var(--light-color);
    margin-bottom: 5px;
    border: 1px solid var(--secondary-color);
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid var(--secondary-color);
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-secondary-color);
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
    color: var(--primary-color);
}

.nav-tabs-bordered .nav-link.active {
    background-color: var(--white);
    color: var(--primary-color);
    border-bottom: 2px solid var(--dark-secondary-color);
}
.tab-content .card-title{
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}
.logo-section{
    background: var(--primary-dark-color);
    height: 60px;
    object-fit: contain;
    padding: 2px 16px;
    margin-right: 16px;
    border-right: 2px solid var(--secondary-color);
}


.logowelcome img {
    max-height: 26px;
    margin-right: 6px;
}

.logo img {
    width: auto;
    height: 36px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0px;
    margin: 0;
    padding: 0;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--primary-family);
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    background-color: var(--primary-color);
    padding-left: 0px;
    border-bottom: 1px solid var(--secondary-color);
    overflow: hidden;
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-right: 10px;
    cursor: pointer;
    color: var(--white);
}

.header .search-bar {
    min-width: 360px;
    padding: 0 20px;
}

.logout {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-right: 30px;
}
.logout:hover{
    color: var(--secondary-color);
}

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

.header .search-form input {
    border: 0;
    font-size: 14px;
    color: var(--dark-secondary-color);
    border: 1px solid var(--dark-secondary-color);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}

.header .search-form button i {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: var(--dark-secondary-color);
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: var(--dark-secondary-color);
}

.header-nav .nav-profile img {
    max-height: 36px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .notifications .notification-item:hover {
    background-color: #f6f9ff;
}

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: #f6f9ff;
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    /* box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1); */
    background-color: var(--primary-color);
    z-index: 99999;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--white);
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {
    #main,
    #footer {
        margin-left: 300px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {
    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-item {
    margin-bottom: 10px;
}

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    transition: 0.3;
    background: var(--primary-dark-color);
    border: 1px solid var(--primary-dark-color);
    padding: 10px 15px;
    border-radius: 0px;
}

.sidebar-nav .nav-link.collapsed {
    color: var(--secondary-color);
    background: var(--primary-dark-color);
    border: 0px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
    border-radius: 6px;
    margin-bottom: 5px;
}
h4.contitle {
    font-size: 19px;
    margin-bottom: 0px;
}

.sidebar-nav .nav-link:hover {
    background: var(--primary-color);
}
.sidebar-nav .nav-link.collapsed:hover,
.sidebar-nav .nav-link.active {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background: var(--primary-dark-color);
    border-radius: 6px;
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #012970;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: var(--primary-color);
}

.sidebar-nav .nav-content a.active i {
    background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: var(--primary-color);
    padding-right: 20px;
    padding-bottom: 5px;
    opacity: 0.7;
    transition: 0.3s;
    font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
    opacity: 1;
}

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0;
    padding: 0;
}

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

.dashboard .info-card h6 {
    font-size: 26px;
    /* Jwelbox */
    /* color: var(--secondary-color); */
    /* Precia */
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: var(--primary-color);
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: var(--secondary-color);
    background: var(--primary-dark-color);
    border: 1px solid var(--secondary-color);
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
    color: #888;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -11px;
    width: 4px;
    top: 0;
    bottom: 0;
    background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
    margin-top: 3px;
    z-index: 1;
    font-size: 11px;
    line-height: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--white);
    flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
    padding-left: 10px;
    padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
    top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
    padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

.dashboard .news h4 a {
    color: #012970;
    transition: 0.3s;
}

.dashboard .news h4 a:hover {
    color: var(--primary-color);
}

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

.dashboard .recent-sales .table thead {
    background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
    border: 0;
}

.dashboard .recent-sales .dataTable-top {
    padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
    padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

.dashboard .top-selling .table thead {
    background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
    border: 0;
}

.dashboard .top-selling .table tbody td {
    vertical-align: middle;
}

.dashboard .top-selling img {
    border-radius: 5px;
    max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

.iconslist .icon {
    background-color: var(--white);
    border-radius: 0.25rem;
    text-align: center;
    color: #012970;
    padding: 15px 0;
}

.iconslist i {
    margin: 0.25rem;
    font-size: 2.5rem;
}

.iconslist .label {
    font-family: var(--primary-family);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
    color: #012970;
}

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #012970;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: var(--primary-color);
}

.contact .info-box h3 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--white);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--white);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--white);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--primary-color);
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--primary-color);
    border: 0;
    padding: 10px 30px;
    color: var(--white);
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #5969f3;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 150px;
}

.error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 30px;
}

.error-404 .btn {
    background: #51678f;
    color: var(--white);
    padding: 8px 30px;
}

.error-404 .btn:hover {
    background: #3e4f6f;
}

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

.footer .copyright {
    text-align: center;
    color: #012970;
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #012970;
}

/*  */

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: var(--primary-family);
    color: var(--white);
    font-weight: 600;
}

.breadcrumb a {
    color: var(--primary);
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
    color: var(--white);
}

.breadcrumb .active {
    /* Jewelbox */
    /* color: var(--secondary-color); */
    /* Precia */
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Styles */
.input-field input,
.input-field textarea,
.form-select,
.select2 {
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    width: calc(100% - 10px);
    padding: 4px;
    margin-bottom: 10px;
}
/* Select2 */
/* Border color for Select2 container */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    border: 1px solid #31a40e !important;
}

/* Border color for Select2 dropdown */
.select2-container--default .select2-dropdown {
    border: 1px solid #31a40e !important;
}

/* Border color for Select2 search box */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #31a40e !important;
}

/* Border color for selected item (if any) */
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered,
.select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered {
    border-color: #31a40e !important;
}

/* Border color for selected items in multiple select */
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    border-color: #31a40e !important;
}

/* Optional: Adjust the border color when focused */
.select2-container--default .select2-selection--single:focus-within,
.select2-container--default .select2-selection--multiple:focus-within,
.select2-container--default
    .select2-search--dropdown
    .select2-search__field:focus {
    border-color: #31a40e !important;
    box-shadow: 0 0 0 0.2rem rgba(250, 167, 25, 0.25);
}

.tablelapView .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }

table .input-field input {
    margin-bottom: 2px;
    width: 100%;
}
th {
    text-align: center;
    font-size: 14px;
}
th .form-check.form-switch {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
}

.input-field input {
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    padding: 4px;
    width: calc(100% - 10px);
}

.image-preview {
    height: 100px;
    width: 100px;
    background: url("../img/image.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.image-preview img {
    width: 100px !important;
    height: 100%;
    background: var(--light-color);
    object-fit: cover;
    border: 1px solid var(--primary-color);
}
.upload__btn-box {
    margin-bottom: 15px;
}
/* Style for label */
.input-field label {
    display: block;
    margin-bottom: 3px;
}
.note-editor .note-toolbar,
.note-popover .popover-content,
.note-editor.note-airframe .note-statusbar .note-resizebar,
.note-editor.note-frame .note-statusbar .note-resizebar {
    background-color: var(--primary-light-color);
}
.note-editor.note-airframe,
.note-editor.note-frame,
.note-btn-group .note-btn {
    border: 1px solid var(--primary-light-color) !important;
}
.note-btn-group .note-btn {
    background: var(--primary-color);
}

.gallery-section {
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0px 0 30px rgb(250 167 25 / 15%);
}
.gallery-section-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.gallery-section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gallery-action {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
    padding: 6px;
}

span.delete {
    background: var(--red);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 8px;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}
span.edit {
    background: var(--blue);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 8px;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}

/* 
.panel {
  margin: 40px auto;
  max-width: 500px;
  text-align: center;
} */

.button_outer {
    background: #31a40e;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
    margin-left: -90px;
    margin-top: -60px;
}

th {
    white-space: nowrap;
}
.table-action {
    display: flex;
    gap: 6px;
}
.table-action button {
    border: 0px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
}
.table-action button.edit {
    color: var(--blue);
    background: var(--primary);
}
.table-action button.trash {
    color: var(--red);
    background: #f3423547;
}

/* .btn_upload {
  padding: 17px 30px 12px;
  color: black;
  text-align: center;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 3;
  white-space: nowrap;
} */

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

.file_uploading {
    width: 100%;
    height: 10px;
    margin-top: 20px;
    background: #ccc;
}

.file_uploading .btn_upload {
    display: none;
}

.processing_bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 30px;
    background: var(--secondary-color);
    transition: 3s;
}

.file_uploading .processing_bar {
    width: 100%;
}

.success_box {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
}

.success_box:before {
    content: "";
    display: block;
    width: 9px;
    height: 18px;
    border-bottom: 6px solid var(--white);
    border-right: 6px solid var(--white);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 17px;
    top: 10px;
}

.file_uploaded .success_box {
    display: inline-block;
}

.file_uploaded {
    margin-top: 0;
    width: 50px;
    background: var(--primary-color);
    height: 50px;
}

.uploaded_file_view {
    max-width: 160px;
    height: 160px;
    border-radius: 200px;
    text-align: center;
    position: relative;
    transition: 0.2s;
    background: var(--red);
    background: url("../img/user.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid var(--primary-color);
}
.uploaded_file_view.company {
    background: url("../img/building.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.file_remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    position: absolute;
    background: var(--red);
    line-height: 30px;
    color: var(--white);
    font-size: 12px;
    line-height: 28px;
    cursor: pointer;
    right: 20px;
    bottom: 0px;
    border: 3px solid var(--white);
}

.btn_upload {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    position: absolute;
    background: var(--blue);
    line-height: 30px;
    color: var(--white);
    font-size: 12px;
    line-height: 28px;
    cursor: pointer;
    left: 20px;
    bottom: 0px;
    border: 3px solid var(--white);
}

.file_remove:hover {
    background: #222;
    transition: 0.2s;
}

.uploaded_file_view img {
    width: 100%;
    height: 100%;
    border-radius: 200px;
}

.uploaded_file_view.show {
    opacity: 1;
}

.error_msg {
    text-align: center;
    color: #f00;
}

.form-check-input:focus {
    border-color: var(--light-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(250 167 25 / 44%);
}
.form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffc560'/%3e%3c/svg%3e");
}

.full-width {
    width: 100%;
    box-sizing: border-box;
    /* Ensure padding and border are included in width */
}

/* Button styling */
.button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    height: 100%;
    margin-bottom: 10px;
    font-weight: 600;
}
.button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Ensure buttons are on the same line */
.button-wrapper {
    display: flex;
    justify-content: space-between;
}

/* CKEditor styling */
.ckeditor {
    min-height: 120px;
    /* Set a minimum height for CKEditor */
}

.subscription-plan-select {
    border-radius: 7px;
    padding: 6px;
}

#calendar,
#calendarone {
    overflow: hidden;
    position: relative;
}

#calendar .header,
#calendarone .header {
    width: 100%;
    /* height: 160px; */
    background-size: 100% auto;
    margin-top: 100px;
}

#calendar .header h1,
#calendarone .header h1 {
    font-size: 2em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 1%;
}

#calendar .monthChange,
#calendarone .monthChange {
    background: var(--white);
    width: 100%;
    height: 0;
    position: absolute;
    top: 160px;
    z-index: 20;
}

#calendar .ui-datepicker,
#calendarone .ui-datepicker {
    display: none;
    width: 100%;
    margin: auto;
    padding: 10px;
    text-transform: uppercase;
    background: var(--white);
    transition: all 0.2s ease-in-out;
}

#calendar .ui-datepicker .ui-datepicker-header,
#calendarone .ui-datepicker .ui-datepicker-header {
    position: relative;
    margin-bottom: 10px;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-title,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
    text-align: center;
    font-weight: 700;
    color: #42fa19;
}

#calendar
    .ui-datepicker
    .ui-datepicker-header
    .ui-datepicker-title
    .ui-datepicker-month,
#calendarone
    .ui-datepicker
    .ui-datepicker-header
    .ui-datepicker-title
    .ui-datepicker-month {
    position: relative;
    padding-right: 5px;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    top: -5px;
    position: absolute;
    padding: 5px;
    cursor: pointer;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    left: 0;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    right: 0;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
    content: "";
    font-family: FontAwesome;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next:after,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next:after {
    content: "";
    font-family: FontAwesome;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next span,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
#calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
    display: inline-block;
    text-indent: -9999px;
}

#calendar .ui-datepicker .ui-datepicker-calendar,
#calendarone .ui-datepicker .ui-datepicker-calendar {
    width: 100%;
}

#calendar .ui-datepicker .ui-datepicker-calendar th,
#calendarone .ui-datepicker .ui-datepicker-calendar th {
    line-height: 30px;
    padding-top: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95em;
    color: #667483;
}

#calendar .ui-datepicker .ui-datepicker-calendar td,
#calendarone .ui-datepicker .ui-datepicker-calendar td {
    padding: 0 7px;
    text-align: center;
    height: 34px;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.ui-datepicker .ui-datepicker-calendar td:hover {
    background: #0c0b09;
    transition: all 0.2s ease-in-out;
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day {
    background: var(--primary-color);
    border-bottom: 2px solid var(--dark-secondary-color);
    color: var(--dark-secondary-color);
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day.open {
    margin-bottom: 100px;
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
    border-bottom: 2px solid rgba(53, 60, 66, 0.5);
    color: var(--dark-secondary-color);
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    text-decoration: none;
    color: var(--primary-light-color);
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-other-month {
    pointer-events: none;
}

.ui-datepicker
    .ui-datepicker-calendar
    .ui-datepicker-other-month
    .ui-state-default {
    color: var(--primary-light-color);
}

.card.info-card.customers-card {
    position: relative;
    z-index: 0;
}
.card.info-card.customers-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url("../img/bg-primary.webp") center/cover no-repeat; */
    background:var(--main-card-bg);
    opacity: 1;
    z-index: -1;
}

.welcome-bg {
    /* background: url("../img/bg.webp") center/cover no-repeat; */
    background: url("../img/bg-primary-2.jpg") center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
main.welcome-bg footer {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
main.welcome-bg h4 {
    font-size: 22px;
    font-weight: 400;
}
main.welcome-bg .logo {
    width: 240px;
}

main.welcome-bg form {
    background: rgb(2 29 31 / 11%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 235, 128, 0.3);
    padding: 36px;
}
main.welcome-bg form h3{
    font-size: 18px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}
main.welcome-bg form h2{
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
}
main.welcome-bg form h4{
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
}
main.welcome-bg .form-control {
    background: var(--primary-dark-color);
    border: 1px solid color-mix(in srgb, var(--secondary-color), transparent 70%);
    color: var(--secondary-color);
    padding: 10px;
}
.welcome-bg ::placeholder {
    color: color-mix(in srgb, var(--secondary-color), transparent 70%);
    opacity: 1; /* Firefox */
  }
  
  .welcome-bg ::-ms-input-placeholder { /* Edge 12 -18 */
    color: color-mix(in srgb, var(--secondary-color), transparent 70%);
  }

  main.welcome-bg label{
    color: var(--secondary-color);
  }
  .welcome-bg .form-check-input{
    --bs-form-check-bg: color-mix(in srgb, var(--primary-color), transparent 70%);
    border: 1px solid var(--secondary-color);
  }
  .primary-btn {
    background: color-mix(in srgb, var(--secondary-color), transparent 16%);
    border: 0px;
    padding: 6px;
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-dark-color);
    }
    .primary-btn:hover{
        background: var(--secondary-color);
        box-shadow: color-mix(in srgb, var(--secondary-color), transparent 80%) 0px 7px 29px 0px;
    }

.fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc {
    /* extra precedence to overcome jqui */
    font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
    /* when user is selecting cells */
    background: #bce8f1;
    opacity: 0.3;
}

.fc-bgevent {
    /* default look for background events */
    background: #8fdf82;
    opacity: 0.3;
}

.fc-nonbusiness {
    /* default look for non-business-hours areas */
    /* will inherit .fc-bgevent's styles */
    background: #31a40e;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
    /* force height to include the border and padding */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* dimensions */
    margin: 0;
    height: auto;
    padding: 0 0.6em;
    /* text & cursor */
    font-size: 1em;
    /* normalize */
    white-space: nowrap;
    cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
    margin: 0;
    padding: 0;
}

.fc-state-default {
    /* non-theme */
    border: 1px solid;
}

.fc-state-default.fc-corner-left {
    /* non-theme */
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
    /* non-theme */
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* icons in buttons */
.fc button .fc-icon {
    /* non-theme */
    position: relative;
    top: -0.05em;
    /* seems to be a good adjustment across browsers */
    margin: 0 0.2em;
    vertical-align: middle;
}
#exportbtns {
    margin-top: 20px;
}
.dt-buttons {
    margin-bottom: 10px;
}
.dt-button {
    margin-right: 5px;
}

/*
button states
borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(#ffffff),
        to(#e6e6e6)
    );
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: #333333;
    background-color: #e6e6e6;
}

.fc-state-hover {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
    background-color: #cccccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
    display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
    /* extra precedence b/c buttons have margin set to zero */
    float: left;
    margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
    /* same */
    margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
    position: absolute;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
    /* TODO: be more consistent with fc-head/fc-body */
    padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
    margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
    cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
    float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
    float: right;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
    border-style: solid;
    border-width: 1px;
}

hr.fc-divider {
    height: 0;
    margin: 0;
    padding: 0 0 2px;
    /* height is unreliable across browsers, so use padding */
    border-width: 1px 0;
}

.fc-clear {
    clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
    /* these element should always cling to top-left/right corners */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.fc-bg {
    bottom: 0;
    /* strech bg to bottom edge */
}

.fc-bg table {
    height: 100%;
    /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
    width: 100%;
    box-sizing: border-box;
    /* fix scrollbar issue in firefox */
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em;
    /* normalize cross-browser */
}

.fc th {
    text-align: center;
}

.fc th,
.fc td {
    border-style: solid;
    border-width: 1px 1px 0 1px !important;
    padding: 0;
    border-color: #eee;
    vertical-align: top;
}

.fc td.fc-today {
    border-style: double;
    /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
    cursor: pointer;
}

a[data-goto]:hover {
    text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
    /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
    /* no visible border by default. but make available if need be (scrollbar width compensation) */
    border-style: solid;
    border-width: 0;
}

.fc-row table {
    /* don't put left/right border on anything within a fake row.
the outer tbody will worry about this */
    border-left: 0 hidden transparent;
    border-right: 0 hidden transparent;
    /* no bottom borders on rows */
    border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
    border-top: 0 hidden transparent;
    /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
    position: relative;
    background: #ffffff;
}

.fc-row .fc-bg {
    z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
    bottom: 0;
    /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
    height: 100%;
    /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
    border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
    z-index: 2;
}

.fc-row .fc-highlight-skeleton {
    z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
    position: relative;
    z-index: 4;
    padding-bottom: 2px;
    /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
    z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
    /* see-through to the background below */
    /* extra precedence to prevent theme-provided backgrounds */
    background: none;
    /* in case <td>s are globally styled */
    border-color: transparent;
    padding: 0.5rem 0.5rem;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
    /* don't put a border between events and/or the day number */
    border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
    /* don't put a border between event cells */
    border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
    -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
    position: relative;
    /* re-scope all positions */
    width: 100%;
    /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
    position: relative;
    /* for resize handle and other inner positioning */
    display: block;
    /* make the <a> tag block */
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    border-radius: 3px;
    font-weight: 500;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.05);
    /* default BORDER color */
}

.fc-event,
.fc-event-dot {
    background-color: #ffffff;
    color: #5d5386;
    position: relative;
    /* default BACKGROUND color */
}

.fc-event:before,
.fc-event-dot:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 100%;
    border-left: 3px solid #5d5386;
    border-bottom: 3px solid #5d5386;
    -webkit-border-radius: 3px 0px 0px 3px;
    -moz-border-radius: 3px 0px 0px 3px;
    border-radius: 3px 0px 0px 3px;
}

.fc-event .fc-title {
    font-weight: 500;
}

.fc-event i {
    font-size: 26px;
    margin-right: 8px;
    vertical-align: middle;
}

.fc-event,
.fc-event:hover {
    color: #fff;
    /* default TEXT color */
    text-decoration: none;
    /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
    cursor: pointer;
    /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
    /* to override an event's custom cursor */
    cursor: not-allowed;
}

.fc-event .fc-bg {
    /* the generic .fc-bg already does position */
    z-index: 1;
    background: #fff;
    opacity: 0.25;
}

.fc-event .fc-content {
    color: #2c304d;
    position: relative;
    z-index: 2;
    padding: 8px;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
    position: absolute;
    z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
    display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
    /* only show when hovering or selected (with touch) */
    display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
    /* 40x40 touch area */
    content: "";
    position: absolute;
    z-index: 9999;
    /* user of this util can scope within a lower z-index */
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
    z-index: 9999 !important;
    /* overcomes inline z-index */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
    content: "";
    position: absolute;
    z-index: 3;
    /* below resizers */
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
    margin-left: 0;
    border-left-width: 0;
    padding-left: 1px;
    /* replace the border with padding */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
    margin-right: 0;
    border-right-width: 0;
    padding-right: 1px;
    /* replace the border with padding */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
    cursor: w-resize;
    left: -1px;
    /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
    cursor: e-resize;
    right: -1px;
    /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
    width: 7px;
    top: -1px;
    /* overcome top border */
    bottom: -1px;
    /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
    /* 8x8 little dot */
    border-radius: 4px;
    border-width: 1px;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    /* vertically center */
    top: 50%;
    margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
    margin-left: -4px;
    /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
    margin-right: -4px;
    /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
    margin: 1px 2px 0;
    /* spacing between events and edges */
    padding: 0;
}

tr:first-child > td > .fc-day-grid-event {
    margin-top: 2px;
    /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
    content: "";
    position: absolute;
    z-index: 1;
    /* same z-index as fc-bg, behind text */
    /* overcome the borders */
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    /* darkening effect */
    background: #000;
    opacity: 0.25;
}

.fc-day-grid-event .fc-content {
    /* force events to be one-line tall */
    white-space: nowrap;
    overflow: hidden;
}

.fc-day-grid-event .fc-time {
    font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
    margin-left: -2px;
    /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
    margin-right: -2px;
    /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
    margin: 1px 3px;
    font-size: 0.85em;
    cursor: pointer;
    text-decoration: none;
}

a.fc-more:hover {
    text-decoration: underline;
}

.fc-limited {
    /* rows and cells that are hidden because of a "more" link */
    display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
    z-index: 1;
    /* make the "more" popover one higher than this */
}

.fc-more-popover {
    z-index: 2;
    width: 220px;
}

.fc-more-popover .fc-event-container {
    padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
    position: absolute;
    border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
    border-color: #ddd;
}

.fc-unthemed .fc-popover {
    background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
    background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
    color: #666;
}

.fc-unthemed td.fc-today {
    background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
    background: #d7d7d7;
    opacity: 0.3;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
    display: inline-block;
    height: 1em;
    line-height: 1em;
    font-size: 1em;
    text-align: center;
    overflow: hidden;
    font-family: "Courier New", Courier, monospace;
    /* don't allow browser text-selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
"Arial", sans-serif
"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
    position: relative;
}

.fc-icon-left-single-arrow:after {
    content: "\2039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-right-single-arrow:after {
    content: "\203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-left-double-arrow:after {
    content: "\AB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-right-double-arrow:after {
    content: "\BB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-left-triangle:after {
    content: "\25C4";
    font-size: 125%;
    top: 3%;
}

.fc-icon-right-triangle:after {
    content: "\25BA";
    font-size: 125%;
    top: 3%;
}

.fc-icon-down-triangle:after {
    content: "\25BC";
    font-size: 125%;
    top: 2%;
}

.fc-icon-x:after {
    content: "\D7";
    font-size: 200%;
    top: 6%;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
    font-size: 0.9em;
    margin-top: 2px;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
    background-color: #f5f5f5;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
    background-image: none;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
    border-top: 0;
    /* where they meet, let the header have the border */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
    /* overpower jqui's styles on <a> tags. TODO: more DRY */
    color: #fff;
    /* default TEXT color */
    text-decoration: none;
    /* if <a> has an href */
    /* undo ui-widget-header bold */
    font-weight: normal;
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
    font-weight: normal;
    /* overcome bold */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
    background: none;
    /* see through to fc-bg */
}

.fc.fc-bootstrap3 a {
    text-decoration: none;
}

.fc.fc-bootstrap3 a[data-goto]:hover {
    text-decoration: underline;
}

.fc-bootstrap3 hr.fc-divider {
    border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
    border-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
    padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
    /* some themes have background color. see through to slats */
    background: none;
}

.fc.fc-bootstrap4 a {
    text-decoration: none;
}

.fc.fc-bootstrap4 a[data-goto]:hover {
    text-decoration: underline;
}

.fc-bootstrap4 hr.fc-divider {
    border-color: inherit;
}

.fc-bootstrap4 .fc-today.alert {
    border-radius: 0;
}

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
    color: #5d5386;
}

.fc-bootstrap4 .fc-popover.card {
    position: absolute;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
    padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
    /* some themes have background color. see through to slats */
    background: none;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
    text-align: center;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
    margin-top: 1em;
}

.fc-toolbar .fc-left {
    float: left;
}

.fc-toolbar .fc-right {
    float: right;
}

.fc-toolbar .fc-center {
    display: inline-block;
}

.fc button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    height: auto;
    padding: 0 1rem;
    font-size: 1rem;
    white-space: nowrap;
    cursor: pointer;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
    /* extra precedence to override button border margins */
    float: left;
    margin-left: 0.75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
    /* extra precedence to override button border margins */
    margin-left: 0;
}

/* title text */
.fc-toolbar h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

/* button layering (for border precedence) */
.fc-toolbar button {
    position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
    z-index: 2;
}

.fc-toolbar .fc-state-down {
    z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
    z-index: 4;
}

.fc-toolbar button:focus {
    z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.fc-view,
.fc-view > table {
    /* so dragged elements can be above the view's main element */
    position: relative;
    z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
    /* there may be week numbers in these views, so no padding-top */
    padding-bottom: 1em;
    /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
    min-height: 4em;
    /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
    overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* week and day number styling */
.fc-day-top.fc-other-month {
    opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
    padding: 2px;
    color: rgba(52, 40, 104, 0.8);
    font-size: 15px;
    font-weight: 400;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
    padding: 0 2px;
    /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
    float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
    float: left;
    border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
    float: right;
    border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
    min-width: 1.5em;
    text-align: center;
    background-color: #f2f2f2;
    color: #808080;
}

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
    text-align: center;
}

.fc-basic-view td.fc-week-number > * {
    /* work around the way we do column resizing and ensure a minimum width */
    display: inline-block;
    min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
    position: relative;
    z-index: 2;
    /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
    min-height: 3em;
    /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
    padding-bottom: 1em;
    /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
    /* .fc to overcome default cell styles */
    vertical-align: middle;
    padding: 0 4px;
    white-space: nowrap;
}

.fc-ltr .fc-axis {
    text-align: right;
}

.fc-rtl .fc-axis {
    text-align: left;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
    /* so slats/bg/content/etc positions get scoped within here */
    position: relative;
    z-index: 1;
}

.fc-time-grid {
    min-height: 100%;
    /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
    /* don't put outer borders on slats/bg/content/etc */
    border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
    z-index: 1;
    background: #fff;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
    /* the <hr> AgendaView injects when grid is shorter than scroller */
    position: relative;
    z-index: 2;
}

.fc-time-grid .fc-content-col {
    position: relative;
    /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
}

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
    position: relative;
    z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
    position: relative;
    z-index: 2;
}

.fc-time-grid .fc-highlight-container {
    position: relative;
    z-index: 3;
}

.fc-time-grid .fc-event-container {
    position: relative;
    z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
    z-index: 5;
}

.fc-time-grid .fc-helper-container {
    /* also is fc-event-container */
    position: relative;
    z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
    height: 1.5em;
    border-bottom: 0;
    padding: 10px;
    /* each cell is responsible for its top border */
}

.fc-agendaDay-view .fc-time-grid .fc-slats td {
    background: #ffffff;
}

.fc-time-grid .fc-slats .fc-minor td {
    border-top-style: dotted;
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
    /* a div within a cell within the fc-highlight-skeleton */
    position: relative;
    /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
    position: absolute;
    left: 0;
    right: 0;
    /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
    /* space on the sides of events for LTR (default) */
    margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
    /* space on the sides of events for RTL */
    margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
    position: absolute;
    z-index: 1;
    /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
    /* background events always span full width */
    left: 0;
    right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start {
    /* events that are continuing from another day */
    /* replace space made by the top border with padding */
    border-top-width: 0;
    padding-top: 1px;
    /* remove top rounded corners */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
    /* replace space made by the top border with padding */
    border-bottom-width: 0;
    padding-bottom: 1px;
    /* remove bottom rounded corners */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
    overflow: hidden;
    /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
    /* need to allow touch resizers to extend outside event's bounding box */
    /* common fc-selected styles hide the fc-bg, so don't need this anyway */
    overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
    display: none;
    /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
    overflow: hidden;
    /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
    padding: 0 1px;
}

.fc-time-grid-event .fc-time {
    font-size: 0.85em;
    white-space: nowrap;
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
    /* don't wrap to second line (now that contents will be inline) */
    white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
    /* put the time and title on the same line */
    display: inline-block;
    vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
    display: none;
    /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
    content: attr(data-start);
    /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
    content: "\A0-\A0";
    /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
    font-size: 0.85em;
    /* make the title text the same size as the time */
    padding: 0;
    /* undo padding from above */
}

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    overflow: hidden;
    line-height: 8px;
    font-size: 11px;
    font-family: monospace;
    text-align: center;
    cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
    content: "=";
}

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
    /* 10x10 dot */
    border-radius: 5px;
    border-width: 1px;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    /* horizontally center */
    left: 50%;
    margin-left: -5px;
    /* center on the bottom edge */
    bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
    border-top-width: 1px;
    left: 0;
    right: 0;
}

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
    margin-top: -5px;
    /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
    left: 0;
    /* triangle pointing right... */
    border-width: 5px 0 5px 6px;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
    right: 0;
    /* triangle pointing left... */
    border-width: 5px 6px 5px 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
    direction: rtl;
    /* unlike core views, leverage browser RTL */
}

.fc-list-view {
    border-width: 1px;
    border-style: solid;
}

/* table resets */
.fc .fc-list-table {
    table-layout: auto;
    /* for shrinkwrapping cell content */
}

.fc-list-table td {
    border-width: 1px 0 0;
    padding: 8px 14px;
}

.fc-list-table tr:first-child td {
    border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
    border-bottom-width: 1px;
}

.fc-list-heading td {
    font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
    float: left;
}

.fc-ltr .fc-list-heading-alt {
    float: right;
}

.fc-rtl .fc-list-heading-main {
    float: right;
}

.fc-rtl .fc-list-heading-alt {
    float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
    cursor: pointer;
    /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
    white-space: nowrap;
    width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
    padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
    padding-left: 0;
}

.fc-list-item-title a {
    /* every event title cell has an <a> tag */
    text-decoration: none;
    color: inherit;
}

.fc-list-item-title a[href]:hover {
    /* hover effect only on titles with hrefs */
    text-decoration: underline;
}

/* message when no events */
.fc-list-empty-wrap2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc-list-empty-wrap1 {
    width: 100%;
    height: 100%;
    display: table;
}

.fc-list-empty {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.fc-unthemed .fc-list-empty {
    /* theme will provide own background */
    background-color: #eee;
}

.fc th.fc-day-header {
    padding: 11px 7px;
    font-size: 16px;
    font-weight: 400;
}

.fc-day.fc-today {
    background: rgba(52, 40, 104, 0.03);
}

.fc-day.alert-info {
    background: rgba(52, 40, 104, 0.03);
}

.datepicker {
    z-index: 123456;
}

h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    color: black;
    margin-bottom: 20px;
}


.btn:focus {
    box-shadow: none;
}

.dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.form-group label {
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 18px;
    margin-bottom: 5px;
}

.modal-body {
    background: var(--light-color);
    border-radius: 0px;
}

.modal-body h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    color: #002147;
    margin-bottom: 20px;
}

.modal-body .form-control {
    box-shadow: none;
    height: 50px;
}

/* related product */
.related-product {
    padding: 80px 0;
}

.related-product .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.related-product ul {
    padding: 0;
    margin: 0;
}

.related-product ul li {
    margin-bottom: 30px;
    list-style-type: none;
}

.related-product ul li h3 {
    font-weight: 700;
    font-size: 24px;
    padding: 20px 0;
}

.related-product ul li a {
    font-weight: 600;
    color: #3b484a;
    text-align: center;
}

.related-product ul li a img {
    max-width: 100%;
    display: block;
}

.related-box {
    max-width: 400px;
    margin: 0 auto;
}

.related-box.related-box-iframe {
    max-width: 100%;
}

.download-btn {
    padding: 15px;
    display: inline-flex;
    align-items: center;
}

.download-btn .fa {
    font-size: 40px;
    margin-right: 10px;
}

a.cta-button {
    background: var(--primary-color);
    padding: 6px 20px;
    color: var(--dark-secondary-color);
    font-size: 18px;
    font-weight: 600;
}
a.cta-button:hover {
    color: var(--primary-color);
    background: var(--dark-secondary-color);
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--secondary-color), transparent 80%);
}
main.welcome-bg p a {
    font-weight: 600;
}
.error {
    color: red;
}
.loader {
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.load-more {
    display: block;
    display: none;
}
a#seeMore {
    display: block;
    opacity: 0.7;
}

a#seeMore:hover {
    opacity: 1;
}
.edit-btn {
    color: #008cc6;
    background: #04a4e608;
    border: 1px solid;
    height: 30px;
    width: 30px;
    font-size: 14px;
    font-weight: 800;
}
.delete-btn {
    color: #d93e3e;
    background: #d93e3e08;
    border: 1px solid;
    height: 30px;
    width: 30px;
    font-size: 14px;
    font-weight: 800;
}
.view-btn {
    color: #01d794;
    background: #01d79408;
    border: 1px solid;
    height: 30px;
    width: 30px;
    font-size: 14px;
    font-weight: 800;
}
.dataTables_wrapper .dataTables_paginate a.paginate_button.current,
.dataTables_wrapper .dataTables_paginate a.paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate a.paginate_button:hover {
    color: #fff !important;
    border: 1px solid #31a40e !important;
    background-color: white;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, white),
        color-stop(100%, #dcdcdc)
    );
    background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
    background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
    background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
    background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
    background: linear-gradient(to bottom, #31a40e 0%, #31a40e 100%);
    border-radius: 6px;
}
main .select2-container--default .select2-selection--multiple {
    border: 1px solid #31a40e !important;
    padding: 0px;
    border-radius: 0px;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    margin-bottom: 4px;
    margin-top: 0px;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #e4ffe0 !important;
    border: 1px solid #31a40e !important;
    border-radius: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0px !important;
}
.active > .page-link,
.page-link.active {
    z-index: 3;
    /* color: var(--bs-pagination-active-color); */
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}
.page-link {
    color: var(--primary-color) !important;
}
div.dataTables_wrapper {
    position: relative;
    width: 100%;
    overflow: scroll;
}

span.version {
    color: color-mix(in srgb, #fff, transparent 50%);
  }

@media (max-width: 600px) {
    .pagetitle nav {
        margin-left: initial;
        display: none;
    }
    .pagetitle {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: space-between;
        padding: 6px;
    }
    h4.contitle {
        font-size: 16px;
    }
    .breadcrumb {
        font-size: 10px;
    }
    .logout span{
        display: none;
    }
    .banner-preview img {
        width: 100%;
        height: 100px;
    }

    button.add-new-customer-btn {
        background: #40162a;
        padding: 7px 10px;
        color: #d9982c;
        font-size: 14px;
        font-weight: 700;
        border: 1px solid #d9982c;
        border-radius: 13px;
        white-space: nowrap;
    }

    .product-section-canvas {
        height: 66vh;
        overflow: scroll;
    }
.tablelapView {
  display: none;
}
.loadmore{
  display: none;
}


   
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #aaa !important;
    border-radius: 3px !important;
    padding: 5px !important;
    background-color: transparent !important;
    margin-left: 0px !important;
    width: 310px !important;
    margin-bottom: 2px !important;
}

.dataTables_wrapper .dataTables_filter {
    float: right !important;
    text-align: left !important;
}

/* Active button styling */
.btn-custom-color.active {
    background-color: #31a40e;
    color: #000;
}

/* Normal button styling */
.btn-custom-color {
    background-color: #ffeac7;
    border: none;
    color: #000;
}

.btn-custom-color:hover {
    background-color: #ffd9a6;
}
.booking-report-detail img {
    width: 60px;
}

#print-invoice {
    background-color: #31a40e;
    color: black;
}

.upload__inputfile {
    display: none;
}

.upload__btn {
    display: inline-block;
    font-weight: 600;
    color: black;
    text-align: center;
    min-width: 116px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    background-color: var(--secondary-color);
    border-radius: 10px;
    line-height: 26px;
    font-size: 14px;
    border: 0px;
}

.upload__btn:hover {
    background-color: color-mix(in srgb, var(--secondary-color), #000 20%);
}

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

.upload__img-box {
    width: 125px;
    padding: 0 10px;
    margin-bottom: 12px;
    position: relative;
}


.upload__img {
    width: 100%;
    height: auto;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgb(243 66 53);
    position: absolute;
    top: -5px;
    right: 3px;
    text-align: center;
    line-height: 25px;
    z-index: 1;
    cursor: pointer;
    color: white;
}

.card-title.provider-title {
    background: #31a40e4d;
    border-radius: 4px 4px 0px 0px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--primary-color);
}

.provider-title img {
    width: 36px;
    height: 36px;
    border-radius: 30px;
    overflow: hidden;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
}

.template_desc {
    font-size: 10px;
    font-style: italic;
}

.welcome-bg ul{
    color: var(--red);
    list-style: none;
    margin: 0px;
    margin-top: 0px;
    padding: 0px;
    font-size: 12px;
}
.btn-plus {
    border: 0px;
    color: var(--secondary-color);
    font-size: 18px;
    background: var(--primary-color);
  }


  .company-profile-sidebar{
    background-color: var(--primary-color);
    /* background: url("../img/bg-primary.webp"); */
    background: var(--main-card-bg);
    border: 1px solid var(--secondary-color);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 10px;
    border: none;
  }
  .company-profile-sidebar h2{
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 18px;
  }
  .company-profile-sidebar img{
    height: 70px;
    width: 100%;
    object-fit: contain;
  }
  .action-btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* POS */
.pagetitle-d-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    padding-bottom: 10px;
  }
  
  .pagetitle-filter-section .search-form {
    background: #fff;
    padding: 4px;
    padding-left: 6px;
    border: 2px solid #D9982C;
    border-radius: 14px;
  }
  
  .pagetitle-filter-section .search-form input{
    border: 0px;
  }
  
  .pagetitle-filter-section .search-form button{
    background: #D9982C;
    border: 0px;
    border-radius: 10px;
    color: #fff;
    height: 36px;
    width: 46px;
  }
  
  .pagetitle-filter-section {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .pagetitle-filter-section select, .offcanvas select{
    padding: 4px;
    border-radius: 14px;
    border: 2px solid #D9982C;
    width: 200px;
    padding-left: 6px;
  }
  
  button.cart-section{
    background: #D9982C;
    border: 0px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    font-weight: 600;
  }
  
  .cart-section-img {
    display: flex;
  }
  
  button.cart-section img {
    width: 22px;
    margin-left: 3px;
  }
  
  .cart-section span{
    background: #fff;
    padding: 2px 5px;
    font-weight: 600;
    margin-left: 6px;
    border-radius: 9px;
  }
  
  button.cart-section {
    background: #D9982C;
    border: 0px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 3px;
  }
  
  .product-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.027);
    text-align: center;
  }
  .product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    border-radius: 10px;
    margin-bottom: 5px;
  }
  .product-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    object-fit: cover;
}
.pos-card h3 {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    min-height: 32px;
    overflow: hidden;
}
  .product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .product-card:hover .product-image .hover-img {
    opacity: 1;
    transform: scale(1.1);
  }
  .product-card:hover .product-image .main-img {
    opacity: 0;
  }
  .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDF9F2;
    padding: 1px;
    border-radius: 30px;
    border: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    width: fit-content;
  }
  
  .quantity button {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: none;
    background: #D9982C;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #FDF9F2;
  }
  .quantity input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
  }

  .quantity-quick {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDF9F2;
    padding: 1px;
    border-radius: 30px;
    border: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    width: fit-content;
  }
  
  .quantity-quick button {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: none;
    background: #D9982C;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #FDF9F2;
  }
  .quantity-quick input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
  }
  .add-to-cart {
    background: #40162A;
    color: white;
    border: none;
    padding: 4px;
    width: 100%;
    cursor: pointer;
    border-radius: 12px;
  }
  .add-to-cart:hover {
    background: #D9982C;
    color: #40162A;
  }
  .offcanvas {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    padding: 20px;
  }
  .offcanvas.show {
    right: 0;
    z-index: 9999;
}
  .close-btn {
    background: transparent;
    color: #D9982C;
    border: none;
    cursor: pointer;
    float: right;
    font-size: 20px;
  }
  
  .product-card-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .quick-view {
    background: #D9982C;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    left: 16px;
    cursor: pointer;
  }
  .quick-view img{
    width: 20px;
  }
  
  .whatsapp-share{
    background: #53ce5f;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
  }
  
  .whatsapp-share img{
    width: 20px;
  }
  
  .offcanvas-header{
    border-bottom: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
  }
  .offcanvas-header h3{
    font-size: 14px;
  }
  
  .offcanvas{
    width: 400px;
    border-radius: 10px 0px 0px 10px;
  }
  
  .offcanvas-filter-section{
    border-bottom: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .pos-canvas h4{
    font-size: 14px;
    margin-top: 6px;
    font-weight: 700;
    color: #D9982C;
  }
  
  .pos-canvas td, .product-details-quick-view td {
    padding: 0px !important;
    padding-bottom: 3px !important;
  }
  
  .product-section-canvas{
    border-top: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    padding-top: 10px;
  }
  
  .product-image-section {
    width: 80px !important;
    height: 80px;
    object-fit: cover;
    overflow: hidden;
    border: 1px solid 
color-mix(in srgb, #D9982C, #fff 50%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-table;
}
  
.product-image-section img {
    width: 80px !important;
    height: 80px !important;
    object-fit: fill;
}
  .product-section-canvas-car-top {
    display: flex;
    gap: 10px;
  }
  
  .product-details-section-offcanvas h2 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-right: 10px;
    text-align: left;
    text-transform: capitalize;
}

  
  .product-details-section-offcanvas p{
    font-size: 10px;
    margin-bottom: 3px;
    font-weight: 800;
    color: #D9982C;
  }
  .product-details-section-offcanvas .quantity{
    width: fit-content;
  }
  
  .product-section-canvas-card {
    background: #FDF9F2;
    padding: 8px;
    border-radius: 10px 4px 4px 10px;
    margin-bottom: 6px;
}
  
  .delete-product {
    background-color: #FF3F5B;
    color: color-mix(in srgb, #FF3F5B, #fff 90%);
    border-radius: 20px 8px 20px 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    position: absolute;
      right: 2px;
      top: 2px;
      font-size: 11px;
  }
  
  .addRemark-product{
    background-color: #D9982C;
    color: color-mix(in srgb, #D9982C, #fff 90%);
    border-radius: 20px 20px 8px 20px;
    padding: 4px 14px;
    border: 0px;
    position: absolute;
      right: 3px;
      bottom: 3px;
      font-size: 12px;
  }
  
  .offcanvas-footer {
    border-top: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    background: #fff;
    padding: 9px;
    display: flex;
    gap: 10px;
  }


  
  .cancel-btn {
    background: #D9982C;
    border: 0px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
  }
  
  .placeOrder-btn {
    background: #40162A;
    border: 0px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
  }
  

  button.add-new-customer-btn {
    background: #40162a;
    padding: 7px 10px;
    color: #d9982c;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #d9982c;
    border-radius: 13px;
    white-space: nowrap;
}
  
  .pos-model h1.modal-title {
    font-size: 16px;
    font-weight: 600;
  }
  
  .model-close-btn{
    background: transparent;
    color: #d9982c;
    border: 0px;
  }
  
  .pos-model label{
    color: #d9982c;
      font-weight: 600;
      font-size: 13px;
  }
  .form-control{
    border: 1px solid #d9982c;
    padding: .175rem .4rem;
  }
  
  .slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  .quick-view-section .slides{
    border: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
    border-radius: 10px;
    overflow: hidden;
  }
  .slides img {
    width: 100%;
    height: 300px;
    display: none;
    object-fit: cover;
  }
  .slides img.active {
    display: block;
  }
  .thumbnails-wrapper {
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    max-width: 100%;
    padding-bottom: 5px;
    }
    
  .thumbnails {
    display: flex;
      gap: 5px;
      flex-wrap: wrap;
      flex-direction: row;
  }
  .thumbnails img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
  }
  .thumbnails img.active {
    border-color: #D9982C;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D9982C;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
  }
  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }
  
  .stock-status span {
    border: 1px dashed #D9982C;
    padding: 0px 3px;
    padding-right: 10px;
    font-size: 13px;
    border-radius: 20px;
    background: color-mix(in srgb, #D9982C, #fff 90%);
    margin-right: 10px;
    color: #D9982C;
    font-weight: 500;
  }
  
  .stock-status span.inStock{
    border: 1px dashed #00C9A7;
    color: #00C9A7;
    background: color-mix(in srgb, #00C9A7, #fff 90%);
  }
  .stock-status span.outStock{
    border: 1px dashed #FF3F5B;
    color: #FF3F5B;
    background: color-mix(in srgb, #FF3F5B, #fff 90%);
  }
  
  .product-details-quick-view h5 {
    font-weight: 600;
    color: #D9982C;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
  }
  
  .product-details-quick-view p{
    font-size: 14px;
  }
  
  hr{
    border-top: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
  }
  
  .product-details-quick-view td{
    font-size: 14px;
    width: 70px;
  }
  
  .product-details-quick-view td span{
    font-weight: 600;
  }
  
  .pos-canvas td{
    font-size: 14px;
  }
  .pos-canvas td span{
    font-weight: 600;
  }

  

  @media only screen and (max-width: 600px) {
    .pagetitle-filter-section select, .offcanvas select {
        width: 100%;
    }

    .pagetitle-filter-section {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        margin-top: 0px;
        display: flex;
    }
    .date-container {
        font-size: 9px;
    }

    .pagetitle.pos-page-title {
        top: 80px;
        position: sticky;
        z-index: 9999;
    }

    .pos-canvas .offcanvas-footer {
        position: fixed;
        bottom: 8px;
        width: 100%;
        left: 0px;
        right: 0px;
        margin: auto;
    }
  }

  .selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
    cursor: pointer;
    border-color: #D9982C;
}
select.form-select.board-rate {
    background: #d7972a;
    color: #40162a;
    border: 1px solid #40162a;
    font-weight: 600;
}
.order-details .product-img{
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #D9982C, #fff 50%);
  }
  .product-details-section-offcanvas h3{
    font-size: 14px;
  }
  
  .order-details .product-title{
    color: #D9982C;
  }
  
  /* .card-title {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #40162A;
  }
  .card-title span {
    color: #D9982C;
    font-size: 14px;
    font-weight: 400;
  } */
  
  .card.shipping-details td {
    font-size: 16px;
    padding: 0px !important;
    padding-bottom: 8px !important;
    width: 70px;
  }
  
  .card.shipping-details td span {
    font-weight: 600;
    color: #40162A;
  }
  .pagetitle-filter-section select, .offcanvas select {
    padding: 4px;
    border-radius: 14px;
    border: 2px solid #D9982C;
    width: 200px;
    padding-left: 6px;
    margin-bottom: 0px;
    height: 40px;
}
.customers-card{
    height:100px;
}
.product-section-canvas .empty-cart {
    width: 100%;
    text-align: center;
    height: 80vh;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.product-section-canvas .empty-cart img {
    width: 100px;
}

.product-details-order-details p {
    margin-bottom: 0px;
    font-size: 11px;
    text-align: justify;
}
.pagetitle-filter-section .offcanvas .search-form input, .pagetitle-filter-section select, .offcanvas select{
    width: 100%;
  }


  .submit-btn {
    background: #40162A;
    color: white;
    border: none;
    padding: 4px;
    width: 100%;
    cursor: pointer;
    border-radius: 12px;
  }
  
  button.filter-section {
    background: #D9982C;
    border: 0px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 5px 10px;
    font-weight: 600;
    color: #fff;
  }
  .filter-btn {
    background: #d48d2a;
    width: fit-content;
    position: absolute;
    top: -14px;
    padding: 2px 10px;
    border-radius: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    right: 15px;
    margin: auto;
    box-shadow: rgb(212 141 42 / 61%) 0px 3px 8px;
    color: #fff;
}
.filter-btn:hover {
   box-shadow: rgb(212 141 42) 0px 3px 8px;
   color: #fff;
}

.order-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-title-primary {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 600px) {
    .order-title-primary {
        gap: 0px;
        flex-direction: column;
        align-items: flex-start;
    }
    .btn.btn-primary {
        width: fit-content;
    }
    .sidebar{
        width:100%;
        left: -600px;
    }
    .gold-rate-section {
        position: fixed;
        bottom: 10px;
        left: 0px;
        right: 0px;
        margin: auto;
        width: fit-content;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        padding-left: 10px;
      }
}
input#offcanvas-search-query:focus-visible {
    border: 0px !important;
    box-shadow: none !important;
}

input#offcanvas-search-query:focus {
    outline: none !important;
    border: 0px !important;
    box-shadow: none !important;
}

#offcanvas-search-query:focus {
    border: 0px !important;
    box-shadow: none !important;
    outline: none !important;
}

input#offcanvas-search-query:focus {
    border: 0px !important;
    box-shadow: none !important;
}
div#offcanvasBottom {
    bottom: 0;
    height: fit-content;
    top: auto;
}
.gold-rate {
    text-align: center;
    padding: 5px 20px;
    font-weight: 600;
    color: var(--primary-dark-color);
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 4px;
    position: relative;
    background: #D9982C;
    background-size: 200% 200%;
    animation: gold-shine 5s linear infinite;
    box-shadow: 0 0 10px rgba(236, 172, 32, 20%), 0 0 20px rgba(186, 148, 62, 20%), 0 0 30px rgba(236, 172, 32, 0.4);
    overflow: hidden;
    border: 0px;
  }
  @keyframes gold-shine {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }  
  .gold-rate::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
    transform: translate(-50%, -50%) scale(0);
    animation: white-shine 5s linear infinite;
    pointer-events: none;
  }