@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Global style
------------------------------------ */
html {
    font-size: 14px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #bdbfc5;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    font-weight: 400;
    background: #22252D;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

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

a {
    color: #454545;
    cursor: pointer;
    text-decoration: none;
}

a.email-hyperlink {
    color: #0d6efd !important;
}

img {
    max-width: 100%;
}

ol,
ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.c_blue {
    color: #216fa4;
}

.btn {
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 2.26%, rgb(255 255 255 / 10%) 98.36%);
    color: rgb(189 191 197);
    padding: 6px 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 6px;
    text-align: center;
    transition: all ease 0.4s;
    border: 1px solid rgb(255 255 255 / 50%);
    box-shadow: 0 0px 20px rgb(0 0 0 / 30%);
}

.btn:hover {
    color: #fff;
    background: #000;
}

label.c_radio input[type="radio"],
label.c_checkbox input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

label.c_checkbox,
label.c_radio {
    position: relative;
    margin: 0 20px 5px 0 !important;
    cursor: pointer;
}

label.c_radio span,
label.c_checkbox span {
    padding-left: 30px;
    position: relative;
    display: block;
    padding-top: 1px;
}

label.c_radio span:before,
label.c_checkbox span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background: #3b4046;
    /* border: 1px solid rgb(255 255 255 / 50%); */
}

label.c_radio input[type="radio"]:checked+span:before,
label.c_checkbox input[type="checkbox"]:checked+span:before {
    border: 5px solid #3b4046;
    background: #dbdee7;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

label.c_checkbox span:before {
    border-radius: 4px;
}

label.c_checkbox input[type="checkbox"]:checked+span:before {
    border: 0px solid #dbdee7;
    background-color: #dbdee7;
    background-image: url('../images/checkbox-check.svg');
    background-repeat: no-repeat;
    background-position: center;
}



/* loader css
================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    text-align: center;
    background: rgb(0 0 0 / 97%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader_div {
    border: 5px solid rgb(255 255 255 / 19%);
    border-radius: 50%;
    border-top: 5px solid #ffffff;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    to {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@keyframes letters-loading {

    0%,
    75%,
    to {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

.loader svg.overlay_icon {
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
    -webkit-animation: letters-loading 2s infinite;
    animation: letters-loading 2s infinite;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.loader svg:not(.overlay_icon) {
    opacity: 0.1;
    /* display: none; */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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


.loader svg {
    max-width: 150px;
    height: 150px;
    display: block;
    transition: all ease 1s;
}


/* Table and Data table style
===================================================== */
table.dataTable {
    margin: 0px 0 0px;
    position: relative;
    background: rgb(59, 64, 70);
    background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
}

.table>thead {
    vertical-align: bottom;
    background: #2f343a;
    color: #fff;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #F0F5FC;
    color: #555555;
}

.table thead tr th {
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    border: 0px;
    padding: 13px 18px;
    white-space: nowrap;
    border-bottom: 1px solid rgb(255 255 255 / 7%) !important;
    background-size: 16px 16px;
}

.table tbody tr td {
    color: #bdbfc5;
    border: 0px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    /*text-transform: uppercase;*/
    vertical-align: middle;
    padding: 8px 15px;
    border-right: 1px solid rgb(255 255 255 / 4%);
    border-bottom: 1px solid rgb(255 255 255 / 4%);
}

.table tbody tr td:last-child {
    border-right: 0;
}

.table tbody tr td a {
    color: #bdbfc5;
    text-decoration: underline;
    white-space: nowrap;
}

table.dataTable.no-footer {
    border: 0px;
}

table.dataTable tbody tr {
    background-color: transparent;
}

.dataTables_length,
.dataTables_filter {
    margin: 0 0 10px;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background: #3B4046;
    height: 32px;
    border: 0px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #bdbfc5;
    outline: none;
    padding: 0 12px;
    box-sizing: border-box;
}

.table-hover.table-striped>tbody>tr:hover {
    --bs-table-accent-bg: rgb(233 238 245) !important;
    color: #555;
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: right;
    color: #bdbfc5;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 15px;
}

.dataTables_wrapper .dataTables_length select {
    margin: 0 10px;
}

table.table {
    box-shadow: 0px 4px 20px rgba(12, 15, 52, 0.08);
}

.dataTables_wrapper .dataTables_info {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #bdbfc5;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #bdbfc5 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 2px 10px;
    border: 0 !important;
    background: rgb(59, 64, 70);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
    /* IE6-9 */
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    border-radius: 4px;
    margin: 0 2px;
    color: #bdbfc5 !important;
    display: inline-block;
    transition: all ease 0.4s;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
body .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
body .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: rgb(59, 64, 70);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
    /* IE6-9 */
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    color: #fff !important;
}


/* Header style
===================================================== */
header.main_header {
    position: relative;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3b4046+0,2d3037+100 */
    background: rgb(59, 64, 70);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
    /* IE6-9 */
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    position: sticky;
    top: 0;
    z-index: 99999;
}

nav.navbar {
    padding: 0px 0;
}

ul.navbar-nav {
    padding: 0px 0 0;
    width: 100%;
}

.navbar-brand img {
    max-width: 90px;
    height: auto;
    object-fit: contain;
    max-height:75px;
}

ul.navbar-nav>li {
    margin: 0 0 0 32px;
    position: relative;
    padding: 14px 0;
}

ul.navbar-nav>li>a {
    font-weight: 500;
    text-transform: uppercase;
    color: #bdbfc5;
}

ul.navbar-nav li.active>a {
    color: #fff;
}

.dropdown-menu.dropdown-menu-right {
    left: auto;
    right: 0;
    border: 0;
    box-shadow: 0 4px 16px rgb(0 0 0 / 14%);
    top: 35px;
    background-color: #3B4046;
}

.dropdown-menu.dropdown-menu-right a {
    padding: 6px 15px;
    color: #fff;
}

ul.sub_menu_list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    background: #fff;
    margin: 0;
    padding: 8px 0px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 14%);
    display: none;
    z-index: 3000;
}

.s_menu_toggle {
    display: none;
}

ul.sub_menu_list li {
    margin: 0;
}

ul.sub_menu_list li a {
    padding: 5px 15px;
    display: block;
}

ul.sub_menu_list li a:hover,
.dropdown-menu.dropdown-menu-right a:hover {
    text-decoration: none;
    background-color: #31343C;
    color: #fff;
}

ul.sub_menu_list:before,
.dropdown-menu.dropdown-menu-right:before {
    display: block;
    content: "";
    position: absolute;
    top: -10px;
    left: 10px;
    border-style: solid;
    border-width: 0 8px 10px 8px;
    border-color: transparent transparent #3B4046 transparent;
}

.dropdown-menu.dropdown-menu-right:before {
    left: auto;
    right: 10px;
}

.user_avtar {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 50px;
    margin: 0 6px 0 0;
    overflow: hidden;
    border: 2px solid #bdbfc5;
}

.menu_wrap {
    width: calc(100% - 180px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a.navbar-brand {
    margin-right: 20px;
    padding: 8px 0;
}

.header_right {
    width: calc(100% - 110px);
    justify-content: space-between;
}

ul.navbar-nav li>a i.fa-cog {
    margin-left: 3px;
    font-size: 16px;
    color: #216fa4;
    animation: rotation 4s infinite linear;
    -webkit-animation: rotation 4s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
    }
}

@-webkit-keyframes rotation {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
    }
}

.menu_right_block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: inherit;
    padding: 6px 0;
}

.menu_right_block .userDropdown {
    margin-left: 20px;
}

.menu_right_block .userDropdown .dropdown-toggle {
    display: flex;
    align-items: center;
}

.menuToggle {
    margin: 0 0 0 10px;
    padding: 5px 5px;
    font-size: 18px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.menuToggle span {
    height: 2px;
    width: 100%;
    background: #bdbfc5;
    display: block;
    margin: 3px 0;
    transition: all ease 0.4s;
}

body.menu_expanded .menuToggle {
    position: relative;
    z-index: 99990;
}

body.menu_expanded .menuToggle span:nth-child(2) {
    display: none;
}

body.menu_expanded .menuToggle span:first-child {
    transform: rotate(45deg);
    transform-origin: 8px 1px;
}

body.menu_expanded .menuToggle span:last-child {
    transform: rotate(-45deg);
    transform-origin: 6px 0px;
}

.menu_wrap .dropdown-toggle>span {
    max-width: 105px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.searchToggle.active {
    background: rgb(33 111 164 / 100%);
    color: #fff;
}

.menu_right_block .userDropdown .dropdown-toggle::after,
ul.navbar-nav .dropdown>a::after {
    display: none;
}

.menu_right_block .userDropdown svg {
    margin-left: 12px;
}

.menu_right_block .userDropdown .dropdown-toggle {
    font-weight: 500;
}

ul.navbar-nav>li.dropdown>a {
    /*display: flex;*/
    align-items: center;
}

ul.navbar-nav .dropdown>a svg {
    margin-left: 12px;
}

ul.navbar-nav .dropdown>a svg path,
.menu_right_block .userDropdown svg path {
    fill: #bdbfc5;
}

ul.navbar-nav>li .dropdown-menu.dropdown-menu-right {
    top: 100%;
}

.exit_app_btn {
    background: linear-gradient(360deg, #000000 2.26%, rgb(0 0 0 / 67%) 98.36%);
    padding: 7px 15px;
    display: block;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
    margin-right: 30px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 0;
    border-radius: 4px;
    border: 0px;
}

.exit_app_btn:hover {
    background: linear-gradient(360deg, rgb(0 0 0 / 67%) 2.26%, #000000 98.36%);
}

.exit_app_btn:focus {
    color: #fff !important;
}

.navbar_nav_right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.exit_app_btn svg {
    margin-right: 5px;
}

.menu_right_block .userDropdown .dropdown-toggle span {
    max-width: 90px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #bdbfc5;
}

ul.navbar-nav .dropdown-toggle {
    font-weight: 500;
    color: #bdbfc5;
}

/* landing page style start here
------------------------------------------------------ */
.main_wrapper {
    padding: 0px 0 40px;
}

.page_head h2 {
    font-size: 20px;
    margin: 0;
}

.page_head {
    padding: 15px 0 15px 0;
    margin: 0 0 20px;
    border-bottom: 1px solid rgb(255 255 255 / 4%);
}

/* breadcrumbs */
.breadcrumbs_wrap {
    background: #fff;
    padding: 6px 0;
    box-shadow: 0px 2px 12px #E6E0FE;
}

.breadcrumbs_block ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.breadcrumbs_block ul li {
    margin: 0 28px 0 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #b0bfc5;
    text-transform: uppercase;
    position: relative;
}

.breadcrumbs_block ul li:last-child {
    margin-right: 0;
}

.breadcrumbs_block ul li:after {
    display: flex;
    content: "\f105";
    position: absolute;
    left: calc(100% + 3px);
    top: 0;
    height: 20px;
    width: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    justify-content: center;
}

.breadcrumbs_block ul li:last-child:after {
    content: none;
}

.breadcrumbs_block ul li a {
    display: flex;
    color: #fff;
}

.breadcrumbs_block ul li a i {
    font-size: 17px;
    margin-right: 5px;
    line-height: 1;
}

.breadcrumbs_block ul li a svg {
    margin-right: 5px;
}

.breadcrumbs_block ul li a svg path {
    fill: #027dff;
}

.form-group {
    margin: 0 0 20px;
}

.form-group label {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    color: #bdbfc5;
    margin: 0 0 3px;
}

.form-group .form-control {
    background: #3b4046;
    border: 1px solid transparent;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    min-height: 32px;
    padding: 4px 15px;
    color: #bdbfc5;
}

.form-group textarea.form-control {
    min-height: 100px;
}

.form-group select.form-control {
    background-image: url('../images/select-arrow.svg');
    background-position: 98% center;
    background-repeat: no-repeat;
}

.table_btn_sm {
    border-radius: 4px;
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    margin: 0 2px;
    font-size: 14px;
    color: #bdbfc5 !important;
    transition: all ease 0.4s;
}

.table_btn_sm:hover {
    color: #ffffff !important
}

th.highlighted_col:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    height: 8px;
    width: 8px;
    background: #404650;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.table thead tr th.highlighted_col {
    background: #9B9797;
    position: relative;
    text-align: center;
    color: #000000;
}

.modal-header {
    color: #fff;
    padding: 12px 1rem;
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    border: 0;
}

.modal-header h5 {
    color: #fff;
    text-transform: uppercase;
}

.modal-header button.btn-close {
    color: #fff;
    background-color: #fff;
    position: absolute;
    right: -6px;
    top: -9px;
    opacity: 1;
    border-radius: 50px;
    padding: 8px;
    background-size: 12px;
    transition: all ease 0.4s;
}

.modal-dialog-scrollable .modal-content {
    overflow: visible;
    background: #22252D;
}

.modal-dialog .modal-content {
    overflow: visible;
    background: #22252D;
    border: 5px solid rgba(255, 255, 255, .5);
}

.modal-backdrop.show {
    opacity: 0.85;
}

/* landing page style closed here
------------------------------------------------------ */
a.btn.add_New_Org_btn {
    margin: 0 0 -35px;
    position: relative;
    z-index: 1;
}

.add_org_tabs_wrap {
    background: #22252d;
    padding: 7px 0px;
    position: sticky;
    top: 87px;
}

.c_tabs ul.nav li.nav-item .nav-link {
    color: #5f6574;
    background: rgb(255 255 255 / 4%);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

.c_tabs ul.nav li.nav-item .nav-link.active {
    background: #fff;
    color: rgb(34 37 45);
    border: 0;
}

.c_tabs .nav-tabs {
    border-bottom: 1px solid rgb(255 255 255 / 6%);
}

.c_tabs ul.nav li.nav-item {
    margin-right: 10px;
}

.tab-content.add_org_tabs_content {
    padding: 12px 0px;
}

.c_tabs .nav-tabs .nav-link:focus,
.c_tabs .nav-tabs .nav-link:hover {
    border-color: transparent;
    isolation: isolate;
}

.field-validation-error {
    font-size: 13px;
}


/* My Responsive style
===================================================== */
@media (min-width:768px) {
    .page_filters .btn {
        margin-top: 22px;
    }
}


@media (min-width: 1200px) {
    ul.navbar-nav {
        align-items: center;
    }
}

@media (min-width: 1450px) {
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1449px) {
    ul.navbar-nav>li {
        margin: 0 0 0 15px;
    }
}


@media (max-width: 1300px) {
    .exit_app_btn {
        margin-right: 15px;
    }
}


@media screen and (max-width: 1199px) {
    .navbar_nav_right {
        flex-direction: column;
    }

    .navbar_nav_right .exit_app_btn {
        width: 100%;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }

    .navbar_nav_right>.dropdown {
        width: 100%;
    }

    .navbar_nav_right>.dropdown a.dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sub_menu .nav-tabs li.nav-item {
        margin: 0 15px 0 0;
    }

    .sub_menu .nav-tabs li.nav-item:last-child {
        margin: 0;
    }

    ul.navbar-nav li {
        margin: 0 0 10px !important;
    }

    .menu_right_block {
        min-width: initial;
        margin-left: auto;
    }

    .menu_right_block .userDropdown {
        margin-left: 15px;
    }

    .menu_wrap {
        position: fixed;
        right: -100%;
        left: auto;
        width: 300px;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3b4046+0,2d3037+100 */
        background: rgb(59, 64, 70);
        /* Old browsers */
        background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
        /* IE6-9 */

        height: 100%;
        top: 0;
        padding: 86px 0px 60px;
        overflow: auto;
        box-shadow: 0 0 30px rgb(0 0 0 / 15%);
        transition: all ease 0.4s;
        -webkit-transition: all ease 0.4s;
        opacity: 0;
        z-index: 9999;
        display: block;
    }

    body.menu_expanded .menu_wrap {
        right: 0px;
        opacity: 1;
    }

    ul.navbar-nav {
        margin: 0px;
    }

    ul.navbar-nav li a {
        padding: 12px 20px;
        display: block;
    }

    ul.navbar-nav li {
        margin: 0 0 0px !important;
        border-bottom: 1px solid rgb(255 255 255 / 9%);
        padding: 0;
    }

    ul.navbar-nav li:first-child {
        border-top: 1px solid rgb(255 255 255 / 9%);
    }

    ul.sub_menu_list {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0;
        background: #f3f3f3;
    }

    ul.sub_menu_list:before {
        display: none;
    }

    ul.sub_menu_list li {
        border: 0 !important;
    }

    ul.sub_menu_list li a {
        padding: 8px 30px;
    }

    span.s_menu_toggle {
        height: 45px;
        width: 40px;
        position: absolute;
        right: 0;
        top: 0;
        background: transparent;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        display: flex;
        pointer-events: none;
    }

    span.s_menu_toggle:after {
        display: block;
        content: "\f067";
        font-family: 'FontAwesome';
        color: #555;
    }

    span.s_menu_toggle.active:after {
        content: "\f068";
    }

    ul.navbar-nav>li .dropdown-menu.dropdown-menu-right {
        top: 100%;
        box-shadow: none;
    }

    ul.navbar-nav>li .dropdown-menu.dropdown-menu-right:before {
        display: none;
    }

    ul.navbar-nav .dropdown>a svg {
        margin-left: auto;
    }
}

@media (max-width: 991px) {}

@media screen and (max-width: 767px) {
    .dataTables_wrapper#organizationDataTable_wrapper .dataTables_length {
        float: left;
    }

    .header_right {
        width: calc(100% - 110px);
    }

    a.navbar-brand {
        margin-right: 10px;
    }

    .breadcrumbs_block ul {
        justify-content: center;
    }

    .page_head h2 {
        font-size: 20px;
        margin: 0 0 8px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .c_tabs ul.nav li.nav-item {
        width: 100%;
        margin: 0 0 10px;
    }

    .c_tabs ul.nav li.nav-item .nav-link {
        width: 100%;
        border-radius: 4px;
    }
}

input[type="date"] {
    display: inline-block;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}


.jconfirm-content {
    color: #000 !important;
}

.actiongroups {
    display: flex;
    gap: 16px;
}

.actiongroups a {
    font-size: 16px;
}


.form-control:focus {
    border-color: #bdbfc5;
    /* custom border color */
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    /* custom shadow */
    outline: 0;
    /* remove default outline */
}

.form-select:focus {
    border-color: #bdbfc5;
    /* custom border color */
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    /* custom shadow */
    outline: 0;
    /* remove default outline */
}


.form-control.c_field {
    background: #3b4046;
    border: 1px solid transparent;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    min-height: 32px;
    padding: 4px 15px;
    color: #bdbfc5;
    min-width: 115px;
}

select.form-control.c_field {
    background-image: url('../images/select-arrow.svg');
    background-position: 98% center;
    background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single {
    height: 32px;
    border: 0;
    background: #3b4046;
    border: 1px solid transparent;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 32px;
    line-height: 32px;
    color: #bdbfc5;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
    top: 0;
}

.select2-dropdown {
    background: #3b4046;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.select2-search--dropdown {
    padding: 3px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 4px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    color: #bdbfc5;
    font-size: 14px;
    padding: 0 8px;
    border-color: rgba(255, 255, 255, 0.3);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: rgba(255, 255, 255, 0.3);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(255, 255, 255, 0.1);
    color: #bdbfc5;
}

div#divImageView img#imgView {
    width: 100% !important;
    display: block;
    max-width: 100%;
    /*min-height: 300px;*/
}

div#divImageView {
    margin-top: 43px;
    position: relative;
}

button#btnCloseImageView {
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 1;
    height: 40px;
    width: 40px;
    border: 0;
    font-size: 16px;
    font-weight: normal;
    background: #ed5a5a;
}

.table-responsive.buildPlayTable #tblbuildPlayList thead {
    position: sticky;
    top: 0;
}

.table-responsive.buildPlayTable {
    max-height: calc(100vh - 280px);
    position: relative;
}

/* template pages style start
===================================================== */
.template_box_heading,
.temp_blank_title {
    background: rgb(59, 64, 70);
    background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    padding: 10px 15px;
}

.temp_blank_title {
    min-height: 40px;
    box-shadow: none;
}

.template_box_wrap {
    border: 2px solid #3b4046;
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    background: #22252d;
    width: 100%;
}

.template_box_heading h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
}

.template_block {
    border-right: 2px solid #3b4046;
    border-bottom: 0px solid #3b4046;
}

.template_box_inner .row.g-0 {
    border-bottom: 2px solid #3b4046;
}

.template_box_inner .row .col-md-6:nth-child(2n + 2) .template_block {
    border-right: 0px;
}

.template_block_heading {
    border-top: 2px solid #3b4046;
    border-bottom: 2px solid #3b4046;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.template_block_heading h5 {
    margin: 0;
    display: flex;
}

.template_block_heading span.t_block_number {
    display: inline-block;
    border-right: 2px solid #3b4046;
    padding: 6px 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.template_block_heading h5 {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.template_box_inner .row:last-child .template_block {
    border-bottom: 0px;
}

.template_block_body {
    padding: 15px 15px 30px;
}

.t_block_actions {
    align-items: center;
    margin-left: auto;
    padding-right: 15px;
}

.temp_blank_space {
    min-height: 250px;
}

.temp_no_title_border .template_block_heading span.t_block_number {
    border-bottom: 2px solid #3b4046;
}

.temp_no_title_border .template_block_heading {
    border-bottom: 0px solid #3b4046;
}

.template_block_body figure {
    /*max-width: 480px;*/
    margin: 0 auto !important;
    display: block;
}

@media (max-width:1199px) {
    li.has_menu ul.sub_menu li a {
        white-space: normal;
    }
}

@media (max-width:767px) {
    .template_box_inner .row .col-md-6 .template_block {
        border-right: 0px;
    }
}

/* template pages style end
===================================================== */


/* filters style start
===================================================== */
.ct_filters_sec {
    margin: 0px 0 0;
    background: #2d3037;
    position: relative;
}

.switchContent {
    margin: 20px 0 0;
}

.ct_filters_wrap {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 0;
}

.ct_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    /* background: rgba(255,255,255,0.03); */
    padding: 0;
    border-radius: 0;
    border: 0;
}

.ct_filters_wrap h5 {
    text-transform: uppercase;
    margin: 0;
}

.ct_filters .filterItem {
    border: 1px solid #fff;
    display: block;
    border-radius: 4px;
    padding: 1px 10px;
    color: #fff;
    transition: all ease 0.4s;
}

.ct_filters .filterItem:hover {
    background: #fff;
    color: #000;
}

.ct_filters .filterItem.active {
    background: #fff;
    color: #000;
}

.ct_filters .filterItem.f_i_red {
    border-color: #e34242;
    color: #e34242;
}

.ct_filters .filterItem.f_i_red:hover {
    border-color: #e34242;
    background: #e34242;
    color: #fff;
}

.ct_filters .filterItem.f_i_blue {
    border-color: #6a6adb;
    color: #6a6adb;
}

.ct_filters .filterItem.f_i_blue:hover {
    border-color: #6a6adb;
    background-color: #6a6adb;
    color: #fff;
}

.ct_filters .filterItem.f_i_green {
    border-color: #0caf0c;
    color: #0caf0c;
}

.ct_filters .filterItem.f_i_green:hover {
    border-color: #0caf0c;
    background-color: #0caf0c;
    color: #fff;
}

/* If you want color-specific active states */
.ct_filters .filterItem.f_i_red.active {
    border-color: #e34242;
    background: #e34242;
    color: #fff;
}

.ct_filters .filterItem.f_i_blue.active {
    border-color: #6a6adb;
    background-color: #6a6adb;
    color: #fff;
}

.ct_filters .filterItem.f_i_green.active {
    border-color: #0caf0c;
    background-color: #0caf0c;
    color: #fff;
}

.filters_toggle {
    padding: 5px 15px;
    background: #2d3037;
    cursor: pointer;
}

.filters_toggle .showFilterText,
.filters_toggle.active .hideFilterText {
    display: none;
}

.filters_toggle.active .showFilterText {
    display: block;
}

@media (max-width:1449px) {
    .filters_toggle {
        left: 12px;
    }
}

.switches-container {
    width: 16rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: #2d3037;
    line-height: 3rem;
    border-radius: 3rem;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #2f3339;
}

.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: #bdbfc5;
}

.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.switch {
    border-radius: 3rem;
    background: #484a4e;
    height: 100%;
}

.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: #fff;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}

.switchDataWrap.treeViewOn #ct_treeView,
.switchDataWrap.filterViewOn #ct_filters {
    display: block;
}

.switchDataWrap.treeViewOn #ct_filters,
.switchDataWrap.filterViewOn #ct_treeView,
#ct_filters {
    display: none;
}

/* filters style end
===================================================== */
/* template pages style start
===================================================== */
/* body{
    font-family: 'Roboto', sans-serif;
    color: #bdbfc5;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    font-weight: 400;
    background: #22252D;
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
} */
.Print_area {
    width: 100% !important;
}

.Print_area .template_box_heading,
.Print_area .temp_blank_title {
    background: rgb(59, 64, 70);
    background: -moz-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b4046', endColorstr='#2d3037', GradientType=0);
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    padding: 10px 15px;
}

.Print_area .temp_blank_title {
    min-height: 40px;
    box-shadow: none;
}

.Print_area .template_box_wrap {
    border: 2px solid #3b4046;
    box-shadow: 0 0px 15px rgb(0 0 0 / 18%);
    background: #22252d;
}

.Print_area .template_box_heading h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
}

.Print_area .template_block {
    border-right: 2px solid #3b4046;
    border-bottom: 0px solid #3b4046;
}

.Print_area .template_box_inner .row.g-0 {
    border-bottom: 2px solid #3b4046;
}

.Print_area .template_box_inner .row .col-md-6:nth-child(2n + 2) .template_block {
    border-right: 0px;
}

.Print_area .template_block_heading {
    border-top: 2px solid #3b4046;
    border-bottom: 2px solid #3b4046;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.Print_area .template_block_heading h5 {
    margin: 0;
    display: flex;
}

.Print_area .template_block_heading span.t_block_number {
    display: inline-block;
    border-right: 2px solid #3b4046;
    padding: 6px 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.Print_area .template_block_heading h5 {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #bdbfc5;
}

.Print_area .template_box_inner .row:last-child .template_block {
    border-bottom: 0px;
}

.Print_area .template_block_body {
    padding: 15px 15px 30px;
}

.Print_area .t_block_actions {
    align-items: center;
    margin-left: auto;
    padding-right: 15px;
}

.Print_area .temp_blank_space {
    min-height: 180px;
}

.Print_area .temp_no_title_border .template_block_heading span.t_block_number {
    border-bottom: 2px solid #3b4046;
}

.Print_area .temp_no_title_border .template_block_heading {
    border-bottom: 0px solid #3b4046;
}

.Print_area .template_block_body figure {
    max-width: 480px;
    margin: 0 auto !important;
    display: block;
}

.Print_area ul.templateTextList {
    padding: 0px;
    margin: 0px;
    list-style: none;
    border-top: 2px solid #3b4046;
    padding: 15px 0;
}

.Print_area .table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
    caption-side: bottom;
    border-collapse: collapse;
}

.Print_area tbody,
.Print_area td,
.Print_area tfoot,
.Print_area th,
.Print_area thead,
.Print_area tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.Print_area .table>tbody {
    vertical-align: inherit;
}

.Print_area .table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.Print_area .table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #2b2e38;
    color: #555555;
}

.Print_area .table tbody tr td {
    color: #bdbfc5;
    border: 0px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    vertical-align: middle;
    padding: 8px 15px;
    border-right: 1px solid rgb(255 255 255 / 4%);
    border-bottom: 1px solid rgb(255 255 255 / 4%);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    background-color: var(--bs-table-bg);
}

.Print_area .table tbody tr td:last-child {
    border-right: 0;
}

.Print_area table.table {
    box-shadow: 0px 4px 20px rgba(12, 15, 52, 0.08);
    border-top: 2px solid #3b4046;
    margin: 0;
}

.Print_area ul.templateTextList li {
    padding: 18px 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.Print_area .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.Print_area .table tbody tr td {
    height: 45px;
}

.Print_area .table tbody tr td {
    vertical-align: top;
    border-right: 2px solid #3b4046;
    border-bottom: 2px solid #3b4046;
}

.Print_area .table tbody tr:last-child td {
    border-bottom: 0;
}

.Print_area .w_50 {
    width: 50% !important;
}

.Print_area .w_70px {
    width: 70px !important;
}

.Print_area .vat {
    vertical-align: top !important;
}

.Print_area .vam {
    vertical-align: middle !important;
}

.Print_area.template_20_box .template_block_heading span.t_block_number {
    padding: 4px 0px;
    font-size: 14px;
    min-width: 32px;
}

.Print_area.template_20_box .template_block_heading h5 {
    font-size: 14px;
    padding: 0 10px;
}

.Print_area.template_20_box .t_block_actions {
    padding-right: 10px;
}

.Print_area.template_20_box .template_block_body {
    padding: 10px 10px 10px;
}

.Print_area.template_20_box .template_block_body figure {
    max-width: 86%;
    margin: 0 auto !important;
    display: block;
}

.Print_area.template_20_box .table_btn_sm {
    height: 22px;
    width: 22px;
    margin: 0 1px;
    font-size: 12px;
}

@media print {

    .main_header,
    .page_head,
    .t_block_actions {
        display: none !important;
    }

    .Print_area {
        padding-top: 15px;
    }
}

@media (max-width:1199px) {
    li.has_menu ul.sub_menu li a {
        white-space: normal;
    }
}

@media (max-width:767px) {
    .template_box_inner .row .col-md-6 .template_block {
        border-right: 0px;
    }
}


/* template pages style end
===================================================== */

.login_wrap .login_box .form-control {
    color: #333;
}

.select2-container--open .select2-dropdown {
    z-index: 1066 !important;
}

.home_page_sec h1 {
    text-transform: uppercase;
    font-size: 42px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 60px;
}

.chalkTalk_img_block svg {
    display: block;
}

.chalkTalk_img_block svg .cls-2 {
    fill: #bdbfc5;
}

.home_page_sec {
    height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.home_page_sec h1:after,
.home_page_sec h1:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    width: 50px;
    height: 1px;
    background: #bdbfc5;
    margin: 0 auto;
}

.home_page_sec h1:before {
    bottom: 0;
    width: 30px;
}

.chalkTalk_img_block {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.btn_group.d-flex {
    gap: 10px;
}

.btn_group.d-flex .btn i {
    margin-right: 5px;
}

.breadcrumbs_block.d-flex {
    gap: 20px;
}

.btn_group.d-flex .btn {
    padding: 4px 10px;
}

@media(max-width:991px) {
    .breadcrumbs_block.d-flex.justify-content-end.flex-wrap {
        justify-content: center !important;
        margin-top: 5px;
        gap: 10px;
    }

    .btn_group.d-flex {
        gap: 10px;
        justify-content: center;
    }
}

/* select file popup style start ===================================================== */
.select_fileType_form label.c_radio span {
    padding: 25px 10px;
    background: #33373d;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    border: 1px solid transparent;
    min-height: 100px;
}

.select_fileType_form .c_radio_buttons {
    display: flex;
    gap: 20px;
    margin: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.select_fileType_form .form-group label.c_radio {
    width: calc(25% - 55px);
    margin: 0 !important;
    display: block;
    box-sizing: border-box;
}

.select_fileType_form label.c_radio input[type="radio"]:checked+span {
    border: 1px solid #fff;
    color: #fff;
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
}

.select_fileType_form label.c_radio span:before {
    opacity: 0;
}

.select_fileType_form label.c_radio span::after {
    height: 8px;
    width: 15px;
    background: transparent;
    content: "";
    position: absolute;
    right: 10px;
    top: 9px;
    transform: rotate(-45deg);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
}

.select_fileType_form label.c_radio input[type="radio"]:checked+span::after {
    opacity: 1;
}

@media (max-width:991px) {
    .select_fileType_form .form-group label.c_radio {
        width: calc(50% - 20px);
    }
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
    background: #2b2f33;
}

.select2-container--default .select2-selection--single {
    transition: all ease 0.4s;
}

.close {
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 2.26%, rgb(255 255 255 / 10%) 98.36%);
    color: rgb(189 191 197);
    padding: 6px 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 6px;
    text-align: center;
    transition: all ease 0.4s;
    border: 1px solid rgb(255 255 255 / 50%);
    box-shadow: 0 0px 20px rgb(0 0 0 / 30%);
}

.close:hover {
    color: #fff;
    background: #000;
}

.tableScroll {
    max-height: calc(100vh - 270px);
    overflow: auto;
    width: 100%;
}

.tableScroll table thead {
    position: sticky;
    top: 0;
}

div#divItemType div#jstree {
    max-height: calc(100vh - 300px);
    overflow: auto !important;
}

#divItemTypeModel div#divItemType {
    max-height: calc(100vh - 160px);
    overflow: auto;
}


.theaderTitleField {
    flex: 1;
}

.switchButton {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 34px;
    font-family: "Roboto", sans-serif;
}

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

.switchButton .sliderRound {
    position: relative;
    cursor: pointer;
    background-color: #2D3037;
    -webkit-transition: .4s;
    transition: .4s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 2px;
}

.switchButton .sliderRound span {
    position: relative;
    z-index: 1;
    flex: 0 0 50%;
    text-align: center;
    color: #B0B2BA;
}

.switchButton .sliderRound:before {
    position: absolute;
    content: "";
    height: 20px;
    width: calc(50% - 2px);
    left: 2px;
    bottom: 2px;
    background-color: #484A4E;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50px;
}

.switchButton input:focus+.sliderRound {
    /* box-shadow: 0 0 1px #2196F3; */
}

.switchButton input:checked+.sliderRound:before {
    -webkit-transform: translateX(calc(100% - 2px));
    -ms-transform: translateX(calc(100% - 2px));
    transform: translateX(calc(100% - 2px));
}

.switchButton .sliderRound {
    border-radius: 34px;
}


.tw-toggle {
    display: inline-block;
    padding: 2px 3px;
    border-radius: 20px;
    position: relative;
    border: 0px solid #95A5A6;
    min-width: 145px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    max-width: 145px;
    background: #2D3037;
}

.tw-toggle label {
    font-family: sans-serif;
    display: inline-block;
    color: #95A5A6;
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
    padding: 6px 3px;
    font-size: 15px;
    width: 33.333%;
    box-sizing: border-box;
}

.tw-toggle input {
    /* display: none; */
    position: absolute;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
    min-width: 33.333%;
    margin: 0;
    top: 0;
    bottom: 0;
}

.tw-toggle span {
    height: 29px;
    width: 33.333%;
    line-height: 29px;
    border-radius: 25px;
    background: #fff;
    display: block;
    position: absolute;
    left: 22px;
    top: 2px;
    transition: all 0.3s ease-in-out;
}

.tw-toggle input.toggleOnInput:checked~span {
    background: #484A4E;
    left: 2px;
    color: #fff;
}

.tw-toggle input.toggleOffInput:checked~span {
    background: #484A4E;
    left: calc(66.666% - 2px);
}

.tw-toggle input.toggleNotSelectedInput:checked~span {
    background: #484A4E;
    left: 33.333%;
}

.tw-toggle input.toggleOnInput:checked+label,
.tw-toggle input.toggleOffInput:checked+label {
    color: #fff;
}

.tw-toggle input.toggleNotSelectedInput:checked+label {
    color: #fff;
}

.tw-toggle input.toggleNotSelectedInput {
    left: 33.333%;
}

.tw-toggle input.toggleOffInput {
    left: auto;
    right: 0;
}

.tw-toggle label.toggle.toggleNotSelected:after {
    position: absolute;
    /*content: "";*/
    display: block;
    width: 13px;
    height: 3px;
    background: #fff;
    top: calc(50% - 1px);
    border-radius: 50px;
    left: calc(50% - 6px);
}

.tw-toggle label.toggle.toggleNotSelected:after {
    background: #95a5a6;
}

.tw-toggle input.toggleNotSelectedInput:checked+label.toggle.toggleNotSelected:after {
    background: #fff;
}

.readonlyToggle {
    pointer-events: none;
    /* Disable pointer events */
    opacity: 0.6;
    /* Reduce opacity to visually indicate the readonly state */
}

.textbox:focus {
    border: 2px solid red;
    outline: none;
    /* Removes the default focus outline */
}


/* Build setup popup style start
===================================================== */
.btn2 {
    background: #3B4046;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

#BuildSetupPopup .modal-dialog {
    max-width: 1550px;
    width: 95%;
    margin: 7rem auto 0;
    height: calc(100% - 7rem);
    min-height: calc(100% - 7rem);
}

.buildSetupWrap:after {
    border-right: 5px solid rgba(255, 255, 255, 0.5);
    content: "";
    display: block;
    position: absolute;
    left: calc(46% - 3px);
    height: 100%;
    top: 0;
}

.select2-container.select2-container--open {
    z-index: 9999;
}

.buildSetupWrap .select2-container {
    min-width: 286px;
}

.linksFormationWrap .table-responsive {
    max-height: calc(100vh - 275px);
    overflow-x: hidden;
    margin-bottom: 15px;
    margin-top: 90px !important;
}

table.c_table thead tr th,
table.c_table tbody tr td {
    padding: 6px 18px;
}


.linksCollapseRow {
    background: #1E2128 !important;
}

.rowLabels {
    display: grid;
    grid-template-columns: 25% 75%;
    background: #171A1F;
    padding: 3px 35px;
    text-transform: capitalize;
    gap: 0 15px;
}

table.c_table tbody tr td[colspan="3"] {
    padding: 0;
}

.linksHeadingsList li .linksHeadingsItem {
    width: 100%;
    display: grid;
    grid-template-columns: 25% 73%;
    align-items: center;
    padding: 4px 35px;
    gap: 0 15px;
    border-top: 1px solid rgb(255 255 255 / 4%);
    position: relative;
}

.linksHeadingsList li span.select2.select2-container {
    width: 100% !important;
}

.linksFoldersBlock .rowLabels {
    padding: 3px 50px;
}

.linksFolderItem {
    width: 100%;
    display: grid;
    grid-template-columns: 25% 73%;
    align-items: flex-start;
    padding: 4px 50px;
    gap: 0 15px;
    border-top: 1px solid rgb(255 255 255 / 4%);
    position: relative;
}

.f_s_list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.linksFolderItem>span {
    padding: 5px 0;
}

.linksHeadingsList .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    height: 27px;
    line-height: 27px;
}

.linksHeadingsList .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 27px;
}

.linksHeadingsList .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
    position: relative;
    padding-right: 24px;
}

.linksHeadingsList .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
    position: absolute;
    top: 53%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: transparent;
    padding: 2px;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 9px;
    font-size: 13px;
    border: 1px solid #fff;
}

.linksHeadingsList .select2-container--default .select2-selection--multiple {
    background: rgb(30 33 40) !important;
    border: 1px solid #3b4046 !important;
}

.linksHeadingsList .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3b4046 !important;
    border: 1px solid #3b4042 !important;
}

.linksHeadingsList .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #bdbfbd !important
}

.linksHeadingsList .select2-container--default .select2-search--inline .select2-search__field {
    color: #bcbec4 !important
}

span.linkHeadingToggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 38px;
    text-align: center;
    border-left: 1px solid #2b2e35;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.linksHeadingsItem span.linkHeadingToggle svg {
    transition: all ease 0.4s;
}

.linksHeadingsItem.active span.linkHeadingToggle svg {
    transform: rotate(-180deg);
    position: relative;
    top: -1px;
}

span.addLinkFolder {
    position: absolute;
    right: 10px;
    height: 16px;
    width: 16px;
    background: #393d49;
    border-radius: 100px;
    bottom: 9px;
    cursor: pointer;
    top: auto;
}

span.addLinkFolder:after,
span.addLinkFolder:before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 4px);
    border-radius: 50px;
}

span.addLinkFolder:before {
    height: 8px;
    width: 2px;
    left: calc(50% - 1px);
    top: calc(50% - 4px);
}

.folderMultiBox {
    border: 1px solid #3B4046;
    border-radius: 4px;
    height: auto;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    gap: 3px;
    overflow: hidden;
    padding-right: 25px;
    flex-wrap: wrap;
    position: relative;
    min-height: 27px;
    cursor: pointer;
}

.folderMultiBox>span {
    background: #3b4046;
    padding: 1px 5px;
    display: flex;
    font-size: 12px;
    border-radius: 5px;
    align-items: center;
    gap: 0 5px;
    text-transform: capitalize;
}

.folderMultiBox>span i {
    cursor: pointer;
}

.folderMultiBox:after {
    display: block;
    content: "";
    position: absolute;
    right: 10px;
    top: 8px;
    height: 6px;
    width: 6px;
    border-right: 2px solid rgb(255 255 255 / 56%);
    border-bottom: 2px solid rgb(255 255 255 / 56%);
    transform: rotate(45deg);
}

.f_s_list_dropdown {
    position: absolute;
    top: 100%;
    z-index: 999;
    background: #22252d;
    left: 0;
    border: 2px solid #919296;
    border-radius: 4px;
    padding: 10px;
    width: calc(100% + 60px);
    min-width: 250px;
    font-size: 12px;
    text-transform: none;
    display: none;
}

.f_s_list_dropdown>h5 {
    margin: -10px -10px 0;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: normal;
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
}

.f_s_list_dropdown .closeFolderDropdown {
    cursor: pointer;
}

.f_s_item {
    position: relative;
}

.f_s_folders {
    padding: 10px 0;
}

.f_s_list_dropdown .btn-sm {
    font-size: 12px;
    padding: 2px 10px;
    float: right;
    margin-top: 20px;
}

div#BuildSetupPopup .table-responsive table {
    min-width: 600px;
}

.buildSetupWrap button.btn.btn2 {
    margin-top: 22px;
}

@media (min-width: 1200px) {}

@media (max-width: 1199px) {
    .buildSetupWrap {
        border-bottom: 5px solid rgba(255, 255, 255, 0.5);
    }

    .buildSetupWrap:after {
        content: none;
    }

    #BuildSetupPopup .modal-dialog {
        height: auto;
    }

    .linksFormationWrap .table-responsive {
        max-height: 400px;
        margin-top: 25px !important;
    }
}

@media (max-width: 991px) {
    .buildSetupWrap .modal-body>.d-flex {
        flex-wrap: wrap;
        gap: 0 10px !important;
    }

    .buildSetupWrap .modal-body>.d-flex .form-group {
        margin: 0 0 10px 0;
    }

    .buildSetupWrap .table-responsive {
        margin-top: 20px;
    }

    .linksFormationWrap .table-responsive {
        overflow: auto;
    }
}

/* Build setup popup style end
===================================================== */
table.dataTable tbody tr.selected {
    background-color: #3b4046 !important;
}

.jstree-default .jstree-clicked {
    background: #454245 !important;
}

.jstree-default .jstree-wholerow-clicked {
    background: #454245 !important;
}

.jstree-default .jstree-search {
    color: #ea5555 !important;
}

.jstree-default-large .jstree-node .highlight-node {
    color: #ffc202 !important;
    font-weight: bold;
    font-style: italic;
}

.loading-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    float: right;
    margin-top: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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


table#tblLinkGroupHeadingList {
    background: rgba(255, 255, 255, 0.04);
}

table#tblLinkGroupHeadingList tbody tr.selected {
    background: rgba(255, 255, 255, 0.14) !important;
}

table#tblLinkedHeadingsFolder tr.selected {
    background: #171A1F;
}

.linksFolderItem>span,
.linksHeadingsList li .linksHeadingsItem>span.headingToggles {
    position: relative;
    padding-right: 20px;
}

.linksFolderItem>span:after,
.linksHeadingsList li .linksHeadingsItem>span.headingToggles:after {
    display: block;
    content: "";
    position: absolute;
    right: 0px;
    top: calc(50% - 1px);
    height: 1px;
    width: 18px;
    background: #fff;
}

.linksFolderItem>span:before,
.linksHeadingsList li .linksHeadingsItem>span.headingToggles:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

div#BuildSetupPopup {
    padding: 10px 0;
}

.linksFormationWrap .table-responsive {
    overflow: visible !important;
    max-height: inherit;
}

#BuildSetupPopup .modal-dialog {
    height: auto;
}

.linksHeadingsList li .linksHeadingsItem>span.headingToggles:after {
    top: calc(50% - 1px);
}

.linksHeadingsList li .linksHeadingsItem>span.headingToggles:before {
    top: calc(50% - 5px);
}


.jconfirm.jconfirm-white .jconfirm-bg,
.jconfirm.jconfirm-light .jconfirm-bg {
    background-color: #000;
    opacity: 0.8;
}

.jconfirm-box {
    background: #22252D !important;
    border: 5px solid rgba(255, 255, 255, .5);
    color: #fff;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
    color: #fff;
    padding: 12px 1rem;
    background: linear-gradient(to bottom, rgba(59, 64, 70, 1) 0%, rgba(45, 48, 55, 1) 100%);
    border: 0;
    margin: -15px -15px 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.5;
}

.jconfirm-box .jconfirm-content {
    color: #fff !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default.btn {
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 2.26%, rgb(255 255 255 / 10%) 98.36%);
    color: rgb(189 191 197);
    padding: 6px 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 6px;
    text-align: center;
    transition: all ease 0.4s;
    border: 1px solid rgb(255 255 255 / 50%);
    box-shadow: 0 0px 20px rgb(0 0 0 / 30%);
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default.btn:hover {
    color: #fff;
    background: #000;
}



@media(min-width:1200px) {
    div#divBuildSetupItemType>.row>div:first-child {
        flex: 0 0 auto;
        width: 46%;
    }

    div#divBuildSetupItemType>.row>div {
        flex: 0 0 auto;
        width: 54%;
    }
}


div#divBuildSetupItemType {
    min-height: calc(100vh - 150px);
}

#BuildSetupPopup .modal-dialog-scrollable .modal-body {
    overflow: visible;
}



.col_area {
    text-align: center;
    position: relative;
    height: 25px;
    line-height: 1px;
}

.col_area:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    border-top: 1px solid rgb(255 255 255 / 51%);
    border-left: 1px solid rgb(255 255 255 / 51%);
    border-right: 1px solid rgb(255 255 255 / 51%);
    height: 10px;
    border-radius: 6px 6px 0 0;
}

.table thead tr th.col_area_column {
    padding-bottom: 0;
}

.col_area:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-style: solid;
    border-color: transparent transparent rgb(255 255 255 / 51%) transparent;
    border-width: 0 5px 6px 5px;
    width: 10px;
}

.thBgLightDark {
    background: #22252d !important;
}

.thLastCol {
    position: relative;
    padding-right: 4px;
}

.thLastCol span.thColToggle {
    position: absolute;
    right: -15px;
    top: -6px;
    transform: rotate(-90deg);
    transition: all ease 0.4s;
    cursor: pointer;
}

.thLastCol span.thColToggle.active {
    transform: rotate(90deg);
    cursor: pointer;
}

.hidden {
    display: none;
}

#tblbuildPlayList .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 25px;
    top: 1px;
}

#tblbuildPlayList .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 40px !important;
}

/* scroll bar css */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #22252D;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background: #22252D;
}

::-webkit-scrollbar-thumb {
    background: #959595;
    border-radius: 50px;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    cursor: pointer;
}

div#divCategoryTree::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Configuration page style start
===================================================== */
.Configurations_wrapper h4.config_block_heading {
    background: #000;
    margin: 0;
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
}

.Configurations_wrapper .table thead tr th {
    padding: 6px 10px;
    font-size: 12px;
}

.Configurations_wrapper .table tr td {
    padding: 6px 10px;
    font-size: 12px;
}

.Configurations_wrapper .table tbody tr td:last-child {
    text-align: center
}

.Configurations_wrapper .row {
    --bs-gutter-x: 8px;
}

.config_progress_bar .config_progress_bar_inner {
    margin: 30px 0 30px;
    height: 32px;
    border-radius: 50px;
    background: #fff;
    width: 100%;
    padding: 5px 20px;
    position: relative;
    z-index: 1;
}

.config_progress_bar .config_progress_bar_inner span {
    background: linear-gradient(60.14deg, #FF0101 5.72%, #4CAF50 67.19%);
    display: inline-block;
    height: 100%;
    border-radius: 50px;
    transition: all ease 0.4s;
}

.config_progress_bar {
    position: relative;
}

.config_progress_bar:after {
    display: block;
    height: 82%;
    width: 96%;
    content: "";
    background: radial-gradient(100.64% 213.71% at -5.14% 100%, #FF0101 0%, #DB8649 29.69%, #B5B833 54.17%, #70C42E 77.08%, #4CAF50 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
    position: absolute;
    top: 15px;
    left: 2%;
    filter: blur(20px);
}

.configurations_btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 40px 0 30px;
    gap: 8px;
    align-items: center;
}

.rightTableWrap .table_block,
.leftTableWrap .table_block,
.config_selected_img {
    display: none;
    /* Hide all tables and images by default */
}

.config_selected_img.active {
    display: block;
    /* Show the active table and image */
}

.rightTableWrap .table_block.active,
.leftTableWrap .table_block.active {
    display: block;
}

.configurations_btns .btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.leftTableWrap,
.rightTableWrap {
    max-height: calc(100vh - 300px);
    min-height: 200px;
}

.leftTableWrap::-webkit-scrollbar,
.rightTableWrap::-webkit-scrollbar {
    width: 5px;
}

.leftTableWrap::-webkit-scrollbar-track,
.rightTableWrap::-webkit-scrollbar-track {
    background: #000000;
}

.leftTableWrap::-webkit-scrollbar-thumb,
.rightTableWrap::-webkit-scrollbar-thumb {
    background: #C1BFC2;
}

.leftTableWrap::-webkit-scrollbar-thumb:hover,
.rightTableWrap::-webkit-scrollbar-thumb:hover {
    background: #9a989b;
}

.configurations_img {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #fff;
    height: calc(100vh - 400px);
    min-height: 200px;
}

.configurations_img .config_selected_img {
    max-height: 100%;
    object-fit: contain;
    max-width: 100%;
}

/* Deactivated pages visual enhancement */
.configurations_img .config_selected_img.inactive {
    opacity: 0.4;
    filter: grayscale(60%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Link icon cursor enhancement */
.fa-link {
    cursor: pointer;
}

.leftTableWrap .table thead,
.rightTableWrap .table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.table_block .table:not(:last-child) {
    margin: 0;
    border-bottom: 15px solid #000;
}

@media (max-width:991px) {
    .configurations_img {
        height: auto;
    }

    .leftTableWrap,
    .rightTableWrap {
        max-height: 400px;
        min-height: 200px;
        margin: 0 0 30px;
    }
}

@media (max-width:767px) {
    .configurations_btns .btn {
        padding: 5px 12px;
    }

    .config_progress_bar .config_progress_bar_inner {
        height: 22px;
        padding: 3px 10px;
    }

    .configurations_btns {
        margin: 30px 0 30px;
    }
}

@media (min-width: 992px) {
    .configuration_main_sec>.col-lg-6 {
        max-width: 350px;
    }

    .configuration_main_sec>.col-lg-3 {
        flex: 1;
        width: 25%;
    }
}

@media (min-width: 1200px) {
    .configuration_main_sec>.col-lg-6 {
        max-width: 500px;
    }
}

@media (min-width: 1700px) {
    .configuration_main_sec>.col-lg-6 {
        max-width: 800px;
    }
}

table.table tr.secondTableHeader th {
    background: #000;
    color: #fff;
    border-bottom: 0;
    font-size: 14px;
    padding: 6px 10px;
}

table.table tr.secondTableHeader+tr th {
    background: #2f343a;
    color: #fff;
    border-bottom: 0;
    text-transform: uppercase;
    font-size: 12px;
    padding: 6px 10px;
}

/* Configuration page style end
===================================================== */
.Configurations_wrapper .table thead tr th {
    padding: 6px 8px;
    font-size: 11px;
}

.Configurations_wrapper .table tr td {
    padding: 6px 8px;
    font-size: 11px;
}

.Configurations_wrapper,
.configurations_btns .btn,
.Configurations_wrapper h4.config_block_heading {
    font-size: 12px;
}

.Configurations_wrapper .form-group label {
    font-size: 12px;
}

@media (min-width: 992px) {
    .configuration_main_sec>.col-lg-6 {
        width: 40%;
        max-width: initial;
    }

    .configuration_main_sec>.col-lg-3 {
        flex: 1;
        width: 30%;
    }
}

@media (min-width: 1200px) {
    .configuration_main_sec>.col-lg-6 {
        width: 40%;
        max-width: initial;
    }
}

@media (min-width: 1700px) {
    .configuration_main_sec>.col-lg-6 {
        width: 40%;
    }
}




/*Multiple sections style start here*/
.multiple_sec_wrap .theaderTitleField {
    width: 700px;
    max-width: 700px;
}

.portal_block.section_block {
    margin: 35px 0 0;
    padding: 24px 0px;
    background: #282B30;
}

.switchButtonSmall {
    height: auto;
    width: auto;
    margin: -15px 10px 0;
}

.switchButton .sliderRound {
    width: 86px;
    margin: 0 auto;
    height: 22px;
}

.switchButton.switchButtonSmall>span {
    font-size: 13px;
    white-space: nowrap;
}

.switchButton.switchButtonSmall .sliderRound:before {
    height: 17px;
    bottom: 3px;
    left: 3px;
}

.switchButton.switchButtonSmall .sliderRound span {
    font-size: 12px;
    line-height: 1;
    display: block;
    font-weight: 700;
}

.switchButtonSmall.switchButtonWithoutText {
    margin: 6px 10px;
}

.switchButtonSmall.switchButtonWithoutText span.sliderRound {
    width: 46px;
}

.switchButtonSmall.switchButtonWithoutText span.sliderRound::before {
    width: 17px;
    background: #ddd;
    box-shadow: 0px 0px 6px 0px #00000033;
}

.switchButtonSmall.switchButtonWithoutText input:checked+.sliderRound:before {
    -webkit-transform: translateX(calc(100% - 6px));
    -ms-transform: translateX(calc(100% - 6px));
    transform: translateX(calc(100% + 6px));
}

.switchButtonSmall.switchButtonWithoutText input+.sliderRound {
    background: #5B5B5B;
}

.switchButtonSmall.switchButtonWithoutText input:checked+.sliderRound {
    background: #BDBFC5;
}

.multiple_sec_wrap .thBgLightDark {
    background: #282b30 !important;
}

.multiple_sec_wrap .table thead tr th.highlighted_col {
    background: #3B4046;
    position: relative;
    text-align: center;
    color: #fff;
}

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

.multiple_sec_wrap .btn {
    height: 32px;
}

.multiple_sec_wrap .switchButton .sliderRound span {
    color: #ffffff;
}


/* Build play page style start here
===================================================== */
.bp_input_field {
    color: #BDBFC5;
    background-color: #3B4046;
    border-color: #4d4d4d !important;
}

.bp_input_field:focus {
    color: #BDBFC5;
    background-color: #3B4046;
    border-color: #3B4046 !important;
}

.bp_dropdown {
    color: #BDBFC5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-color: #3B4046 !important;
    border-color: #3B4046 !important;
}

.bp_dropdown:focus {
    color: #BDBFC5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-color: #3B4046;
    border-color: #3B4046 !important;
}

.bp_dropdown:hover {
    color: #BDBFC5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-color: #3B4046;
    border-color: #3B4046 !important;
}

.bp_viewplay_dropdown {
    color: #BDBFC5;
    background-color: #3B4046 !important;
    border-color: #3B4046 !important;
}

.bp_viewplay_dropdown:focus {
    color: #BDBFC5;
    background-color: #3B4046 !important;
    border-color: #3B4046 !important;
}

.bp_Section_collapse_toggle {
    width: 4em;
    height: 2em;
}

.bp_Section_border {
    border: 1px solid #3B4046 !important;
    overflow: visible !important;
    position: relative;
    /* z-index removed to avoid stacking context issues */
}

/* Boost z-index for section with an open dropdown */
/* Boost z-index for section with an open dropdown */
.bp_Section_border:has(.bp-searchable-dropdown-button.open) {
    /* Section with open dropdown above all other sections */
}

/* Ensure Bootstrap grid doesn't clip dropdowns */
.bp_Section_border .row,
.bp_Section_border .col,
.bp_Section_border .col-12,
.bp_Section_border [class*="col-"] {
    overflow: visible !important;
}

.bp_toggle {
    position: relative;
    display: inline-flex;
    background: #2b2b2b;
    /* track background */
    border-radius: 20px;
    padding: 4px;
    width: 100px;
    /* adjust size */
    font-family: sans-serif;
    font-size: 12px;
    color: #bbb;
    cursor: pointer;
    user-select: none;
}

.bp_toggle input {
    display: none;
}

.bp_toggle .slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: 47%;
    background: #555;
    /* active highlight */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.bp_toggle[data-value="yes"] .slider {
    transform: translateX(0);
}

.bp_toggle[data-value="no"] .slider {
    transform: translateX(100%);
}

.bp_toggle span {
    flex: 1;
    text-align: center;
    z-index: 1;
    line-height: 20px;
    transition: color 0.3s;
}

.bp_toggle[data-value="yes"] .yes {
    color: #fff;
}

.bp_toggle[data-value="no"] .no {
    color: #fff;
}


/* Build play page style end here
===================================================== */

/* Bulid Play Table style start here
===================================================== */
.form-check-input:checked {
    background-color: #74787f;
    border-color: #424447;
}

.form-check-input:focus {
    border-color: #424447 !important;
    box-shadow: 0 0 0 0.25rem rgba(61, 61, 61, 0.25) !important;
}

.form-check-input:active {
    border-color: #424447 !important;
    box-shadow: 0 0 0 0.25rem rgba(56, 56, 56, 0.25) !important;
}

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

.toggle-switch.active {
    background-color: #74787f;
    border-color: #424447;
}

/* .form-select:hover {
    background-color: #3a3f44;
    border-color: #424447;
} */


.bp_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #3a3f44;
}

.bp_table th,
.bp_table td {
    border: 1px solid #3a3f44;
    padding: 8px 10px;
    font-size: 12px;
    color: #cfd3d7;
    white-space: nowrap;
    overflow: visible;
}

.bp_table thead th {
    background: #2b2f33;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: visible !important;
}

.bp_table .col-head {
    text-transform: uppercase;
    min-width: 112px;
}

.bp_table .group-cell {
    position: relative;
    height: 28px;
    border-bottom: none !important;
}

.bp_table .group-cell_topheader {
    position: relative;
    height: 28px;
    border-bottom: none !important;
    --bracket: #0077ff;
}

.bp_table .group-cell.has-label {
    --bracket: #8d96a0;
}

.bp_table .group-cell.has-label::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 6px;
    border-top: 1px solid var(--bracket);
}

.bp_table .group-cell.has-label::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 14px;
    left: 10px;
    width: 1px;
    background: var(--bracket);
    box-shadow: calc(100% - 20px) 0 0 0 var(--bracket);
}

.bp_table .headcolgroup {
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    border-top: none;
}

.bp_table .headcolgroup.has-group-bracket {
    position: relative;
    --bracket-color: #8d96a0;
}

.bp_table .headcolgroup.has-group-bracket:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--bracket-color);
    z-index: 10;
}

/* Vertical bracket lines removed */
/* .bp_table .headcolgroup.has-group-bracket:after {
                content: "";
                position: absolute;
                bottom: -1px;
                top: 0;
                left: 10px;
                width: 1px;
                background: var(--bracket-color);
                z-index: 10;
                box-shadow: calc(100% - 20px) 0 0 0 var(--bracket-color);
            } */

/* .bp_table .headcolgroup.has-group-bracket:after {
    content: "";
    position: absolute;
    bottom: 0;
    top: -2px;
    left: 10px;
    width: 2px;
    background: #dfe3e7;
    z-index: 1;
    margin-bottom: 5px;
} */

.bp_table .group-label {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #cfd3d7;
    padding: 0 6px;
    line-height: 0.5;
    pointer-events: none;
}

.bp_table_Downalod_Size {
    min-width: 100px;
    min-height: 30px;
}

.bp_thColToggle {
    position: absolute;
    /* right: -15px; */
    top: -4px;
    transform: rotate(-90deg);
    transition: all ease 0.4s;
    cursor: pointer;
}

.bp_thColToggle.active {
    color: #fff;
    /* active text color */
    background-color: #007bff;
    /* active background (blue) */
}

/* Bulid Play Table style end here
===================================================== */

/* Skeleton style start here
===================================================== */
.sketch-controls {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.sketch-controls input[type="range"] {
    margin: 0 10px;
}

.sketch-controls input[type="radio"] {
    margin: 0 5px 0 10px;
}

/* Skeleton style end here
===================================================== */

/* Horizontal scroll for Build Play table
===================================================== */
.table-responsive {
    overflow-x: auto !important;
    /* Enable horizontal scroll */
    overflow-y: visible !important;
    /* Keep dropdowns visible on top */
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Smooth scrolling behavior */
.table-responsive:focus {
    outline: none;
}

/* Show scrollbar for better UX */
.table-responsive::-webkit-scrollbar {
    height: 12px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #2b2f33;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #4a4f55;
    border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #5a5f65;
}

.bp_table {
    width: 100%;
    white-space: nowrap;
    overflow: visible !important;
    position: relative;
    /* z-index: 1; removed */
}

.table-responsive .bp_table {
    margin-bottom: 0;
}

.bp_table tbody,
.bp_table tbody tr,
.bp_table thead,
.bp_table thead tr {
    overflow: visible !important;
}

.bp_table thead {
    /* z-index: 2; removed to prevent context trap */
    position: relative;
}

/* Boost cell with open dropdown above everything in table */
/* Boost cell with open dropdown above everything in table */
.bp_table tbody td:has(.bp-searchable-dropdown-button.open) {
    position: relative;
}

table.bp_table tbody tr[draggable="true"]:active {
    opacity: 1;
}

/* password eye */
.login_inner label.custom_checkbox {
    max-width: inherit;
    display: inline-block;
    position: absolute;
    right: 15px;
    margin: 0;
    top: 32px;
    z-index: 1;
    cursor: pointer;
}

.login_inner label.custom_checkbox input {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    opacity: 0;
    z-index: 9;
    margin: 0;
    cursor: pointer;
}

.login_inner label.custom_checkbox span {
    font-size: 17px;
    padding: 0;
    color: #666;
    height: 27px;
    width: 27px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.login_inner label.custom_checkbox span i.fa-eye {
    display: none;
}

.login_inner label.custom_checkbox input[type="checkbox"]:checked+span i.fa-eye-slash {
    display: none;
}

.login_inner label.custom_checkbox input[type="checkbox"]:checked+span i.fa-eye {
    display: block;
}

.login_form .form-group {
    position: relative;
}

span.password_tooltip {
    display: inline-block;
    position: relative;
}

span.password_tooltip span {
    position: absolute;
    bottom: 18px;
    width: 230px;
    background: #000;
    display: block;
    left: 100%;
    color: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    text-align: left;
    text-transform: none;
    line-height: 1.3;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

span.password_tooltip:hover span {
    display: block;
    cursor: pointer;
}

span.password_tooltip .fa {
    cursor: pointer;
    font-size: 16px;
}

label.f_label.forgot_password_label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.table thead tr th#folderPath {
    white-space: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

table#tblOrgVisioFilesList {
    width: 100% !important;
}

/* Searchable Dropdown Styles */
.bp-searchable-dropdown-wrapper {
    position: relative;
    /* Keep relative for positioning context */
    width: 100%;
}

.bp-searchable-dropdown-button {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: none !important;
    /* Remove duplicate dropdown icon from bp_dropdown class */
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    position: relative;
}

/* Override bp_dropdown background-image when used with bp-searchable-dropdown-button */
.bp-searchable-dropdown-button.bp_dropdown {
    background-image: none !important;
    background-color: #3B4046 !important;
    border-color: #3B4046 !important;
    color: #BDBFC5 !important;
}

.bp-searchable-dropdown-button:hover:not(:disabled) {
    border-color: #667eea;
    background-image: none !important;
    /* Remove duplicate dropdown icon on hover */
}

.bp-searchable-dropdown-button.bp_dropdown:hover {
    background-image: none !important;
}

.bp-searchable-dropdown-button.open {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
    background-image: none !important;
    /* Remove duplicate dropdown icon when open */
}

.bp-searchable-dropdown-button.bp_dropdown.open {
    background-image: none !important;
}

.bp-searchable-dropdown-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-image: none !important;
    /* Remove duplicate dropdown icon when disabled */
}

.bp-searchable-dropdown-button.bp_dropdown:disabled {
    background-image: none !important;
}

.bp-searchable-dropdown-button.bp_dropdown:focus {
    background-image: none !important;
}

.bp-searchable-dropdown-button .placeholder {
    color: #999;
}

.bp-searchable-dropdown-button .selected {
    color: #999;
}

.bp-searchable-dropdown-button svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
    display: block !important;
    /* Ensure SVG icon is always visible */
    opacity: 1 !important;
    visibility: visible !important;
}

.bp-searchable-dropdown-button.open svg {
    transform: rotate(180deg);
}

/* Ensure SVG icon is visible even when bp_dropdown class is applied */
.bp-searchable-dropdown-button.bp_dropdown svg {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #BDBFC5 !important;
}

.bp-searchable-dropdown-menu {
    position: fixed;
    /* Use fixed to escape scroll container */
    background-color: rgb(128, 128, 128);
    border: 1px solid #020202;
    border-radius: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    max-width: 400px;
    /* Maximum dropdown width */
    overflow: visible;
    display: flex;
    flex-direction: column;
    z-index: 99999 !important;
    /* Super high z-index */
    min-width: 100px;
    /* Minimum dropdown width */
}

.bp-searchable-dropdown-input {
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #000000;
    font-size: 14px;
    outline: none;
}

.bp-searchable-dropdown-input:focus {
    border-bottom-color: #999;
}

.bp-searchable-dropdown-options {
    max-height: 240px;
    overflow-y: auto;
    padding: 4px 0;
}

.bp-searchable-dropdown-option {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    /* Keep text in one line */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Show ... for long text */
}

.bp-searchable-dropdown-option:hover,
.bp-searchable-dropdown-option.highlighted {
    background-color: #babec0 !important;
}

.bp-searchable-dropdown-option.selected {
    background-color: #595c5e !important;
    color: white !important;
}

.bp-searchable-dropdown-no-results {
    padding: 12px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Scrollbar styling for dropdown options */
.bp-searchable-dropdown-options::-webkit-scrollbar {
    width: 8px;
}

.bp-searchable-dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.bp-searchable-dropdown-options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.bp-searchable-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Table cell and dropdown wrapper positioning */
.bp_table td:has(.bp-searchable-dropdown-wrapper) {
    overflow: visible !important;
    position: relative;
}

.bp_table td .bp-searchable-dropdown-wrapper {
    position: relative;
    overflow: visible;
}

.f_s_list_dropdown .switchButton {
    height: 33px;
    width: auto;
}

.f_s_list_dropdown .switchButton .sliderRound:before {
    height: 29px;
    background: #555 !important;
}

.f_s_list_dropdown div .input-group .btn.btn-warning {
    margin: 0 15px !important;
}

.f_s_list_dropdown .switchButton .sliderRound {
    height: 33px;
    background: rgba(23, 23, 23, 0.4) !important;
}

.f_s_list_dropdown .switchButton .sliderRound span:last-child {
    padding-right: 5px;
}

.resizable_blocks_wrap {
    display: flex;
    flex-wrap: nowrap;
}

.resizer-x {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2d3037;
    padding: 0px 3px;
    width: auto;
    border-radius: 20px;
}

.resizer-x {
    z-index: 2;
    cursor: col-resize;
}

.resizer-x::before,
.resizer-x::after {
    content: "";
    width: 1px;
    height: 20px;
    margin: 2px;
    background: #959595;
}

.row.resizable_blocks_wrap {
    min-height: calc(100vh - 230px);
}

div#divCategoryTree {
    overflow: auto !important;
}

@media (min-width:768px) {
    .resizable_blocks_wrap .switchDataWrap {
        height: 100%;
    }

    .resizable_blocks_wrap .switchContent {
        height: calc(100% - 66px);
    }

    .resizable_blocks_wrap div#ct_treeView {
        height: calc(100% - 20px);
    }

    .resizable_blocks_wrap div#divCategoryTree {
        min-height: calc(100% - 30px);
    }
}

@media (max-width:767px) {
    .resizable_blocks_wrap {
        flex-wrap: wrap;
    }

    .resizer-x {
        display: none;
    }
}

.resizer_right_part {
    overflow-x: auto;
    min-width: 300px;
}
#BuildSetupPopup .f_s_list_dropdown div.jstree {
    overflow-x: auto !important;
    overflow-y: auto !important;
    max-height: 400px;
}