﻿html {
    height: 100%;
}

body {
    font-family: Arial, Verdana, sans-serif;
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    background-color: #2c486f;
    background-image: url(../img/background-cobal-blue.jpg);
    background-repeat: repeat;
    background-position: center center;
    height: 100%;
}

.my-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.left-content {
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 100;
}

.right-content {
    flex-grow: 1;
    overflow-x: auto;
    height: 100vh;
}

.right-content-container {
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 20px);
}

.top-bar-content {
    background-color: #223250;
    padding: 12px 14px 4px 14px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
}

.page-content {
    padding: 14px 14px 14px 14px;
    background-color: #223250;
    border-radius: 5px;
    overflow-y: auto;
    flex-grow: 1;
    border-top: 5px solid #223250;
    border-right: 5px solid #223250;
    border-bottom: 5px solid #223250;
    position: relative;
}

.form-container {
    max-width: 900px;
    margin: auto;
    background-color: #1f2d48;
    padding: 20px;
    border-radius: 5px;
}

.theme-builder-container {
    max-width: 1200px;
    margin: auto;
    background-color: #1f2d48;
    padding: 20px;
    border-radius: 5px;
}

.settings-heading {
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    margin: 0 0 14px 0;
    padding-bottom: 5px;
}

.stats-container {
    margin: auto;
    background-color: #1f2d48;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-controls {
    position: sticky;
    top: 0; /* Aligns to the bottom */
    background-color: rgba(58, 67, 108, 0.5); /* Ensures readability over scrolled content */
    z-index: 5;
    padding: 10px 10px 0 10px;
    border-radius: 3px;
    border: 1px solid #3a436c;
    margin-bottom: 20px;
    left: 0;
    min-height: 50px;
}

    .page-controls .divider {
        display: inline-block;
        padding: 0 0 0 10px;
        margin: 0 10px 0 0;
        border-right: 1px solid #3a436c;
        height: 20px;
    }

.theme-selector {
    border-radius: 3px;
    overflow-x: scroll;
    width: 100%;
    background-color: #223250;
    margin-bottom: 20px;
    scroll-behavior: smooth;
}

    .theme-selector table {
        min-width: 100%;
        color: #ffffff;
        font-size: 12px;
    }

    .theme-selector td {
        text-align: center;
        padding-bottom: 10px;
    }

    .theme-selector img {
        width: 240px;
        margin: 20px 20px 5px 20px;
        border-radius: 3px;
        border: 4px solid transparent;
        cursor: pointer;
        display: block;
    }

        .theme-selector img:hover {
            border: 4px solid #b33455;
            box-shadow: 0px 0px 20px rgba(179,52,85,0.9);
        }

.theme-selected img {
    border: 4px solid #b33455;
    box-shadow: 0px 0px 20px rgba(179,52,85,0.9);
}

.theme-selector .nav-left {
    position: absolute;
    top: 50%;
    right: calc(100% - 11px);
    color: #b33455;
    font-size: 25px;
    cursor: pointer;
}

.theme-selector .nav-right {
    position: absolute;
    top: 50%;
    left: calc(100% - 4px);
    color: #b33455;
    font-size: 25px;
    cursor: pointer;
}

.theme-selector-nav-left-in-project {
    color: #b33455;
    font-size: 25px;
    cursor: pointer;
}

.theme-selector-nav-right-in-project {
    color: #b33455;
    font-size: 25px;
    cursor: pointer;
    float: right;
}

/* width */
.theme-selector::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.theme-selector::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 3px;
}

/* Handle */
.theme-selector::-webkit-scrollbar-thumb {
    background-color: #b33455;
    border-radius: 3px;
    height: 10px;
}

/* Handle Hover */
.theme-selector:hover::-webkit-scrollbar-thumb {
    background-color: #b33455;
    border-radius: 3px;
}

/* width */
.page-content::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.page-content::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 3px;
    margin-left: 5px;
}

/* Handle */
.page-content::-webkit-scrollbar-thumb {
    background-color: #b33455;
    border-radius: 3px;
    height: 10px;
}

/* Handle Hover */
.page-content:hover::-webkit-scrollbar-thumb {
    background-color: #b33455;
    border-radius: 3px;
}

h1 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    position: sticky;
    left: 0;
}

    h1 i {
        color: #b33455;
        margin-right: 10px;
        font-size: 18px;
    }

h2 {
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    color: #ffffff;
    border-bottom: 1px solid #3a436c;
    position: sticky;
    left: 0;
}

    h2 i {
        margin-right: 10px;
    }

h3 {
    font-size: 14px;
    font-weight: bold;
    color: #b33455;
}

    h3 i {
        margin-right: 10px;
    }

a {
    color: #ffffff;
}

.system-logo {
    max-width: 100%;
    max-height: 30px;
}

#pnlConfirmUserChangeTimeZone {
    z-index: 1004;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #d7d7d7;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ababab;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #868686;
    }

/*Main Menu*/

.sidebar-navigation {
    padding: 7px 21px 7px 7px;
    margin: 10px 0 10px 10px;
    color: #ffffff;
    background-color: #223250;
    height: calc(100vh - 20px);
    border-radius: 5px;
    font-size: 12px;
    overflow: auto;
    border-top: 5px solid #223250;
    border-right: 5px solid #223250;
    border-bottom: 5px solid #223250;
    min-width: 210px;
}

    .sidebar-navigation .sidebar-navigation-heading {
        text-transform: uppercase;
        color: #ffffff;
        border-bottom: 1px solid #ffffff;
        margin: 14px 14px 7px 14px;
        padding-bottom: 5px;
    }

    .sidebar-navigation div {
        background-color: transparent;
        display: block;
        line-height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

        .sidebar-navigation div a {
            padding: 8px 15px 8px 15px;
            display: block;
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
        }

        .sidebar-navigation div i {
            margin-right: 10px;
            font-size: 16px;
            color: #b33455;
        }

        .sidebar-navigation div a:active,
        .sidebar-navigation div a:hover,
        .sidebar-navigation div a:focus {
            text-decoration: none;
            outline: none;
            color: #ffffff;
            background-color: #b33455;
            border-radius: 5px;
        }

            .sidebar-navigation div a:active i,
            .sidebar-navigation div a:hover i,
            .sidebar-navigation div a:focus i {
                color: #ffffff;
            }


    .sidebar-navigation .navigation-selected {
        background-color: #b33455;
        border-radius: 5px;
    }

        .sidebar-navigation .navigation-selected a {
            color: #ffffff;
        }

            .sidebar-navigation .navigation-selected a i {
                color: #ffffff;
            }

    /* width */
    .sidebar-navigation::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

    /* Track */
    .sidebar-navigation::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 3px;
    }

    /* Handle */
    .sidebar-navigation::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

    /* Handle Hover */
    .sidebar-navigation:hover::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

/*Page Horizontal Menus*/

.sub-menu {
    margin-bottom: 20px;
    background-color: #3a436c;
    position: sticky;
    left: 0;
}

.sub-menu-item {
    display: inline-block;
}

    .sub-menu-item a {
        padding: 8px 15px 8px 15px;
        display: inline-block;
        color: #ffffff;
        text-decoration: none;
    }

.sub-menu-item-selected {
    display: inline-block;
}

    .sub-menu-item-selected a, .sub-menu-item a:hover {
        padding: 8px 15px 8px 15px;
        display: inline-block;
        text-decoration: none;
        color: #ffffff;
        background-color: #b33455;
    }


/*Input*/
.txt {
    border: 1px solid #2d3a53;
    color: #ffffff;
    background-color: #1c2841;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    border-radius: 3px;
    resize: none;
    display: inline-block;
    padding: 9px 14px 9px 14px;
    border-collapse: collapse;
    width: 100%;
    outline: none;
}

.search-box {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    margin-right: 10px;
    margin-bottom: 10px;
}

    .search-box .txt {
        padding-right: 55px;
        margin-right: -55px;
    }

.search-box-button {
    font-size: 12px;
    padding: 4px 4px 4px 4px;
}

.ddl {
    border: 1px solid #2d3a53;
    color: #ffffff;
    background-color: #1c2841;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    border-radius: 3px;
    resize: none;
    display: inline-block;
    padding: 10px 9px 10px 9px;
    border-collapse: collapse;
    width: 100%;
    outline: none;
}

.phone-number {
    position: relative;
}

    .phone-number .phone {
        border: 1px solid #2d3a53;
        color: #ffffff;
        background-color: #1c2841;
        font-family: Arial, Verdana, sans-serif;
        font-size: 12px;
        border-radius: 3px;
        resize: none;
        display: inline-block;
        padding: 9px 14px 9px 90px;
        border-collapse: collapse;
        width: 100%;
        outline: none;
    }

    .phone-number img {
        width: 25px;
    }

    .phone-number .phone-number-country-code {
        position: absolute;
        display: inline-block;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        width: 90px;
    }


.phone-number-country-search {
    display: none;
    position: absolute;
    z-index: 100;
    width: 100%;
    background-color: #1c2841;
    padding: 15px;
    border-right: 1px solid #2d3a53;
    border-bottom: 1px solid #2d3a53;
    border-left: 1px solid #2d3a53;
}

.phone-number-country-list {
    max-height: 200px;
    overflow-y: scroll;
    margin-right: -15px;
    margin-top: 15px;
}

    .phone-number-country-list div {
        padding-top: 5px;
        padding-bottom: 5px;
        cursor: pointer;
    }

    .phone-number-country-list::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

    /* Track */
    .phone-number-country-list::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 3px;
    }

    /* Handle */
    .phone-number-country-list::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

    /* Handle Hover */
    .phone-number-country-list:hover::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

.btn-vc-primary {
    display: inline-block !important;
    padding: 7px 14px 7px 14px !important;
    font-family: Arial, Verdana, sans-serif;
    background-color: #b33455;
    color: #ffffff;
    font-size: 12px;
    box-shadow: none;
    outline: 0px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-vc-secondary {
    display: inline-block;
    padding: 7px 14px 7px 14px;
    font-family: Arial, Verdana, sans-serif;
    background-color: #3a436c;
    color: #ffffff;
    font-size: 12px;
    box-shadow: none;
    outline: 0px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-vc-close {
    display: inline-block;
    color: #ffffff;
    font-size: 19px;
    box-shadow: none;
    outline: 0px;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    line-height: 19px;
    margin-top: 5px;
}

    .btn-vc-close:hover {
        background-color: #b33455;
    }

.icon-no-margin {
    margin-right: 0;
}

.btn-vc-inline-primary {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: #b33455;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    outline: none;
}

.btn-vc-inline-secondary {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: #3a436c;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    outline: none;
}

.btn-vc-inline-disabled {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: gray;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    outline: none;
    cursor: default;
    opacity: 0.5;
}

.btn-full-width {
    width: 100%;
    text-align: center;
}

i {
    margin-right: 5px;
}

input[type=color] {
    border: 1px solid #2d3a53;
    border-radius: 3px;
    resize: none;
    display: inline-block;
    border-collapse: collapse;
    width: 100%;
    outline: none;
}

input[type=checkbox] {
    margin-top: 5px;
    margin-right: 5px;
}

input[type=radio] {
    margin-right: 5px;
}

.filter-values {
    margin-top: 10px;
    padding: 10px 9px 10px 9px;
    border: 1px solid #2d3a53;
    background-color: #1c2841;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #626873 !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #626873 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #626873 !important;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000000s ease-in-out 0s;
    -webkit-text-fill-color: #ffffff !important;
}

.ui-datepicker {
    background-color: #1c2841; /* Replace with your desired color */
    border: 1px solid #2d3a53; /* Optional: Add a border */
    border-radius: 3px; /* Optional: Add rounded corners */
}

.ui-datepicker-calendar td:hover {
    background-color: #b33455; /* Background on hover */
    color: #ffffff; /* Text color */
    border-radius: 2px; /* Optional: Make it circular */
}

.ui-state-active {
    background-color: #b33455; /* Green background for the selected date */
    color: #ffffff; /* Text color */
    border-radius: 2px; /* Optional: Make it circular */
}

.ui-datepicker-prev::before, .ui-datepicker-next::before {
    content: ''; /* Arrow content */
    display: inline-block;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    padding: 3px;
    margin-top: 5px;
    margin-left: 5px;
}

.ui-datepicker-prev::before {
    transform: rotate(135deg);
}

.ui-datepicker-next::before {
    transform: rotate(-45deg);
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background-color: #b33455;
    cursor: pointer;
    border-radius: 2px;
}

/*Gridview*/
.scrollable-table-container {
    overflow-x: scroll;
    width: 100%;
    overflow: visible;
}

    .scrollable-table-container table {
        min-width: 100%;
        color: #ffffff;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .scrollable-table-container th {
        padding: 7px 7px 7px 7px;
        border: 1px solid #2d3a53;
        background-color: #2e3b5e;
    }

        .scrollable-table-container th a {
            color: #ffffff;
            text-decoration: none;
        }

    .scrollable-table-container td {
        padding: 4px 7px 4px 7px;
        border: 1px solid #2d3a53;
        background-color: transparent;
    }

    .scrollable-table-container
    /* width */
    .scrollable-table-container::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

    /* Track */
    .scrollable-table-container::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 3px;
    }

    /* Handle */
    .scrollable-table-container::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

    /* Handle Hover */
    .scrollable-table-container:hover::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

.search-results-container {
    width: fit-content;
    position: relative;
}

.search-loading-overlay {
    background-color: rgba(34, 50, 80, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.search-loading-message {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    background-color: #2e3b5e;
    padding: 10px 20px 10px 20px;
    white-space: nowrap;
}

.fixed-table-layout {
    table-layout: fixed;
    width: 100%;
}

.hover-menu-button {
    color: #ffffff !important;
    background-color: #3a436c;
    display: inline-block;
    padding: 7px 9px 7px 9px;
    text-align: left;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 1px;
    margin-right: 1px;
    cursor: pointer;
    font-size: 12px;
    border: none;
}

.hover-menu {
    background-color: #3a436c;
    z-index: 500 !important;
    border-radius: 5px;
    padding: 0;
}

.dropdown-menu {
    min-width: max-content; /* Adjusts the width to fit the longest element */
}

.dropdown-item {
    font-size: 12px;
    padding: 7px 9px 7px 9px;
    color: #ffffff;
    border-radius: 5px;
}

    .dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active {
        background-color: #b33455;
        color: #ffffff;
    }

    .dropdown-item i {
        font-size: 6px;
    }

.dropdown-toggle:hover,
.dropdown-toggle:focus,
.dropdown-toggle:active {
    background-color: #b33455; /* Replace with your desired color */
}

.sub-dropdown-container {
    padding: 10px 10px 10px 10px;
    background-color: #1c2841;
}

a.hover-menu-item:link, a.hover-menu-item:visited, a.hover-menu-item:active {
    color: #ffffff;
    display: block;
    font-family: Arial;
    padding: 7px 9px 7px 9px;
    text-align: left;
    text-decoration: none;
    margin-bottom: 1px;
    margin-right: 1px;
    border-radius: 3px;
    white-space: nowrap;
}

a.hover-menu-item:hover, a.hover-menu-item-slected:link, a.hover-menu-item-slected:visited, a.hover-menu-item-slected:active {
    color: #ffffff;
    background-color: #b33455;
    display: block;
    font-family: Arial;
    padding: 7px 9px 7px 9px;
    text-align: left;
    text-decoration: none;
    margin-bottom: 1px;
    margin-right: 1px;
    border-radius: 3px;
    white-space: nowrap;
}

.filter-hover-menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #3a436c;
    z-index: 500 !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px;
}

    .filter-hover-menu td {
        white-space: nowrap;
    }

.info-label-01 {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: #3a436c;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    outline: none;
    cursor: default;
    font-weight: normal;
}

.info-label-02 {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: #b33455;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    outline: none;
    cursor: default;
    font-weight: normal;
}

.tooltiplabel {
    position: relative;
    display: inline-block;
}

    .tooltiplabel i {
        font-size: 18px;
        color: #b33455;
    }

    .tooltiplabel .tooltiptext {
        visibility: hidden;
        background-color: #1c2841;
        color: white;
        text-align: left;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        top: 120%; /* Position above */
        left: 0;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 10;
        white-space: normal; /* Allows multiline text */
        box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
        border: 1px solid #2e3b5e;
        font-size: 12px;
        width: 250px;
    }

    .tooltiplabel:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

/*Pager*/
.grid-pager {
    padding-top: 5px;
}

    .grid-pager table {
        min-width: 0;
    }

    .grid-pager td {
        padding: 0;
        border: none;
    }

    .grid-pager span {
        color: #ffffff;
        display: block;
        padding: 7px 10px 7px 10px;
        text-decoration: none;
        background-color: #b33455;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .grid-pager a {
        color: #ffffff;
        display: block;
        padding: 7px 10px 7px 10px;
        text-decoration: none;
        background-color: #3a436c;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 10px;
    }

.section-container {
    padding: 20px;
    background-color: #223250;
    border-radius: 10px;
    margin-bottom: 20px;
}

.accordion-heading {
    cursor: pointer;
    padding: 6px 0 6px 7px;
    background-color: #2e3b5e;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .accordion-heading:hover {
        background-color: #b33455;
    }

    .accordion-heading i {
        float: right;
    }

.accordion-heading-selected {
    cursor: pointer;
    padding: 6px 0 6px 7px;
    background-color: #b33455;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .accordion-heading-selected i {
        float: right;
    }

.accordion-content {
    border: 1px solid #3a436c;
    display: none;
    padding: 15px 15px 0 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

    .accordion-content h3 {
        margin-bottom: 20px;
    }

.sub-accordion-heading {
    cursor: pointer;
    padding: 6px 0 6px 7px;
    background-color: #2e3b5e;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .sub-accordion-heading:hover {
        background-color: #b33455;
    }

    .sub-accordion-heading i {
        float: right;
    }

.sub-accordion-heading-selected {
    cursor: pointer;
    padding: 6px 0 6px 7px;
    background-color: #b33455;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .sub-accordion-heading-selected i {
        float: right;
    }

.sub-accordion-content {
    border: 1px solid #3a436c;
    display: none;
    padding: 15px 15px 0 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}


.item-collection {
    margin-top: 15px;
}

.grouping-item {
    margin-top: 15px;
    margin-bottom: 5px;
}

.grouping-heading {
    padding: 10px;
    background-color: #3a436c;
    color: #ffffff;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .grouping-heading i {
        font-size: 1.2rem;
        margin-right: 10px;
    }

.grouping-content {
    padding: 10px;
    border: 1px solid #3a436c;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.headertextnote {
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    color: #000000;
    padding-bottom: 15px;
}

.footertextnote {
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    color: #000000;
    padding-top: 15px;
}

.mail-template-selection a {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    padding: 2px;
}

.sms-template-selection a {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    padding: 2px;
}

.personalised-pdf-selection a {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    padding: 2px;
}

.static-files-selection a {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    padding: 2px;
}

.calendar-file-selection a {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    padding: 2px;
}

#pnlAddPackageAddOnLicense {
    max-width: 700px;
}

    #pnlAddPackageAddOnLicense a {
        color: #ffffff;
        display: block;
        margin-bottom: 5px;
        padding: 2px;
    }

/*Dashboard*/

.graphitem-container {
    margin-bottom: 20px;
    background-color: #0000001A;
    padding: 15px 15px 25px 15px;
    border-radius: 5px;
}

    .graphitem-container::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

/* Track */
    .graphitem-container::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 3px;
    }

/* Handle */
    .graphitem-container::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

/* Handle Hover */
    .graphitem-container:hover::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

.graph-label-container {
    height: 160px;
    overflow-y: auto;
    padding-right: 20px;
}

    .graph-label-container::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

/* Track */
    .graph-label-container::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 3px;
    }

/* Handle */
    .graph-label-container::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

/* Handle Hover */
    .graph-label-container:hover::-webkit-scrollbar-thumb {
        background-color: #b33455;
        border-radius: 3px;
    }

.dashboard-caption {
    width: calc(100% - 50px);
    text-align: left;
    border-top-width: 1px;
    border-right-width: 0 !important;
    border-bottom-width: 1px;
    border-left-width: 15px !important;
    display: inline-block;
    margin-bottom: 7px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
}

.dashboard-information {
    width: 50px;
    text-align: right;
    border-top-width: 1px;
    border-right-width: 5px !important;
    border-bottom-width: 1px;
    border-left-width: 0 !important;
    display: inline-block;
    margin-bottom: 7px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/*Loading*/

.loading-background {
    background-color: rgba(34, 50, 80, 0.9);
    height: 100vh;
    width: 100vw;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000 !important;
}

.loading-message {
    padding: 30px 40px 30px 40px;
    position: fixed;
    z-index: 2003 !important;
    background-color: #1c2841;
    color: #ffffff;
    display: inline-block;
    max-width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    overflow-y: auto;
    text-align: center;
    border-radius: 5px;
}

    .loading-message img {
        width: 100%;
        max-width: 100px;
        display: block;
        margin-bottom: 20px;
    }

/*Form Builder*/

.form-builder-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

    .form-builder-container a {
        font-size: 12px;
    }

.form-builder-header {
    padding: 20px;
    background-color: #223250;
    border-radius: 10px;
    margin-bottom: 5px;
}

.form-builder-btn-inline {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: #3a436c;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    outline: none;
}

    .form-builder-btn-inline:hover {
        color: #ffffff;
    }

#pnlCurrentAction {
    display: inline-block;
    border: 1px solid #008124;
    background-color: #ceffdc;
    color: #008124;
    padding: 8px 15px 8px 15px;
    border-radius: 4px;
}

.pnl-control-settings {
    text-align: right;
}

.control-heading {
    display: inline-block;
    padding: 2px 7px 2px 7px;
    background-color: #b33455;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
}

.pnl-control {
    border: 1px dashed #6e6e6e;
    padding: 5px 10px 5px 10px;
    background-color: #223250;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.pnl-form-page {
    border: 1px dashed #5f5f5f;
    padding: 10px 20px 10px 20px;
    background-color: rgba(179, 52, 85, 0.2);
    border-radius: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.pnl-panel {
    border: 1px dashed #6e6e6e;
    padding: 10px 20px 10px 20px;
    background-color: rgba(179, 52, 85, 0.2);
    border-radius: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.moving-control {
    border: 2px solid #00ad1c;
}

.form-heading-preview {
    font-weight: bold;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    background-color: #3a436c;
    border-radius: 3px;
    margin-bottom: 5px;
}

.form-note-preview {
    padding: 10px 20px 10px 20px;
    background-color: #3a436c;
    border-radius: 3px;
    margin-bottom: 5px;
}

.pnl-slot {
    visibility: hidden;
    border: 1px dashed #ff5400;
    background-color: #223250;
    border-radius: 3px;
    text-align: center;
    color: #ff5400;
    cursor: pointer;
    padding: 3px 20px 3px 20px;
    font-size: 12px;
}

    .pnl-slot:hover {
        border: 1px dashed #008124;
        background-color: #ceffdc;
        color: #008124;
    }

.pnl-page-slot {
    visibility: hidden;
    border: 1px dashed #ff5400;
    background-color: #fff4ee;
    border-radius: 3px;
    text-align: center;
    color: #ff5400;
    cursor: pointer;
    padding: 3px 20px 3px 20px;
    font-size: 12px;
}

    .pnl-page-slot:hover {
        border: 1px dashed #008124;
        background-color: #ceffdc;
        color: #008124;
    }

.field-option-container {
    background-color: #223250;
    padding: 5px 7px 5px 7px;
    border-radius: 10px;
    border: 1px dashed #6e6e6e;
    margin-bottom: 10px;
}

.center-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #223250;
    text-align: left;
    padding: 30px 20px 30px 20px;
    z-index: 100;
    border-radius: 10px;
}

    .center-container img {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }

/*Add orders*/
.line-item-row {
    padding: 3px;
}

.line-item-row-even {
    background-color: rgba(255, 255, 255, 0.05);
}

.line-item-row-odd {
    background-color: transparent;
}

.pdf-design-area {
    position: relative;
    background-color: #ffffff;
    width: 794px;
    height: 1123px;
    overflow: hidden;
    margin: auto;
}

.page {
    width: 794px;
    height: 1123px;
    position: relative;
    margin-bottom: 20px;
    background-color: #ffffff;
    overflow: hidden;
}

.pdf-design-controls {
    position: relative;
    width: 794px;
    margin: auto;
}

.pdftextblock {
    border: 1px dashed #999;
}

.pdftableblock {
    border: 1px dashed #999;
}

.block-wrapper:hover {
    outline: 1px dashed #999;
    cursor: move;
}

.resize-handle {
    width: 10px;
    height: 10px;
    background: #333;
    position: absolute;
    z-index: 100;
}

    .resize-handle.tl {
        top: 0;
        left: 0;
        cursor: nwse-resize;
    }

    .resize-handle.tr {
        top: 0;
        right: 0;
        cursor: nesw-resize;
    }

    .resize-handle.bl {
        bottom: 0;
        left: 0;
        cursor: nesw-resize;
    }

    .resize-handle.br {
        bottom: 0;
        right: 0;
        cursor: nwse-resize;
    }

.t {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: ns-resize;
}

.b {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: ns-resize;
}

.l {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: ew-resize;
}

.r {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: ew-resize;
}

.selected {
    outline: 2px solid #b33455;
    outline-offset: -1px;
}

.tox-resizable-handle {
    display: none !important;
}

td {
    position: relative;
}

.custom-resizer {
    pointer-events: auto;
    opacity: 1;
}

.snap-guide {
    position: absolute;
    background-color: #b33455;
    z-index: 9999;
    pointer-events: none;
}

    .snap-guide.horizontal {
        height: 1px;
        width: 100%;
    }

    .snap-guide.vertical {
        width: 1px;
        height: 100%;
    }