@font-face {
    font-display: fallback;
    font-family: "Sky Text";
    src: url("../images/sky-regular.woff2") format("woff2");
}
/*!sc*/
@font-face {
    font-display: fallback;
    font-family: "Sky Text";
    font-weight: bold;
    src: url("../images/sky-medium.woff2") format("woff2");
}
/*!sc*/
:root {
    --fontBlack: #000000;
    --fontWhite: #ffffff;
    --fontSizeRagular: 14px;
    --fontSizeNav: 12px;
    --fontSizeNavSmall: 12px;
    --body-font-weight: 700;
    --boxShadow: 0px 1px 3px #00000029;
    --BGpurple: #3542c6;
    --bs-table-bg-state: none !important;
}

body {
    font-family: "Sky Text", sans-serif !important;
    font-size: var(--fontSizeRagular);
    color: var(--fontBlack);
    background: #fafafd;
    background-size: cover;
    letter-spacing: 1px;
}

a {
    color: #474df6;
}

p {
    margin: 0px;
}

.bglogin {
    position: relative;
    /*background: url(../images/bglogin.jpg) 0 0 no-repeat;*/
    background: url(../images/KA_05_NOGUN_DOTJ_S01.jpg) right 0 no-repeat;
    background-size: cover;
}

.loginform h3 {
    color: #091153;
}

.loginform p {
    color: #697081;
    font-size: 14px;
}

.loginform input {
    font-size: 14px;
    color: #b1bbc6;
    border-radius: 3px;
    height: 50px;
    background-color: #edf1f5;
    border-color: #edf1f5;
}

.loginform .loginbutton {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 3px;
    height: 50px;
    background: rgb(5, 20, 245);
    background: linear-gradient( 0deg, rgba(5, 20, 245, 1) 0%, rgba(35, 48, 245, 1) 50%, rgba(0, 15, 245, 1) 50%, rgba(1, 16, 245, 1) 100% );
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.loginform .input-group-text {
    background-color: #edf1f5 !important;
    border-color: #edf1f5 !important;
}

.loginform .loginbutton::not(:disabled):hover {
    background-color: rgb(0, 12, 196);
}

.signup {
    width: 100%;
    position: relative;
    text-align: center;
}

    .signup span {
        background-color: #fff;
        padding: 0 15px;
        position: relative;
    }

    .signup:before {
        height: 1px;
        width: 100%;
        background-color: #edf1f5;
        content: "";
        position: absolute;
        top: 9px;
        margin: 0 auto;
        right: 0;
        left: 0;
    }

.copyright {
    position: absolute;
    bottom: 30px;
}

.customheader .dropdown-toggle::after {
    display: none;
}

.customheader .username {
    line-height: normal;
    color: #091153;
    text-transform: uppercase;
}

.customheader .dropdown-item {
    font-size: 13px;
    padding: 8px 10px;
    font-weight: bold;
}

    .customheader .dropdown-item.active,
    .customheader .dropdown-item:active {
        background-color: #0110f5;
    }

.customheader .dropdown-menu.show {
    padding: 2px;
    font-size: 12px;
}

.customheader {
    position: relative;
}

.innertitle h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0px;
}

.sidebar {
    position: fixed;
    top: auto;
    left: auto;
    height: 100%;
    width: 260px;
    z-index: 100;
    transition: all 0.5s ease;
    /*background-color: #5458c2;*/
    background-color: #3c00ff;
}

    .sidebar.close {
        width: 80px;
        padding: 0px;
    }

    .sidebar .logo-details {
        height: 60px;
        width: 100%;
        display: flex;
        align-items: center;
    }

        .sidebar .logo-details i {
            font-size: 30px;
            color: #11101d;
            height: 50px;
            min-width: 78px;
            text-align: center;
            line-height: 50px;
        }

    .sidebar .nav-links {
        height: 100%;
        padding: 0px 0 150px 0;
        overflow: auto;
    }

    .sidebar.close .nav-links {
        overflow: visible;
    }

    .sidebar .nav-links::-webkit-scrollbar {
        display: none;
    }

    .sidebar .nav-links li {
        position: relative;
        list-style: none;
        transition: all 0.4s ease;
    }

    .sidebar.close .nav-links > li.active:before,
    .sidebar.close .nav-links > li:before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        width: 100%;
        height: 100%;
        /*background: #0023ff;*/
        /*background: #52c0f6;*/
        background: #158eff;
        opacity: 0;
        transition: all 0.25s ease-in-out;
        /*border-top-right-radius: 5px;*/
    }

    .sidebar.close .nav-links li.active:before,
    .sidebar.close .nav-links li:hover:before {
        opacity: 1;
    }

    .sidebar .nav-links li .iocn-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar.close .nav-links li .iocn-link {
        display: block;
    }

    .sidebar.close .nav-links li i {
        height: 76px;
        min-width: 80px;
        text-align: center;
        position: relative;
        color: #ffffff;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-style: normal;
        padding: 18px 0;
    }

    .sidebar .nav-links li i span {
        display: block;
    }

    .sidebar .nav-links li.active i,
    .sidebar .nav-links li:hover i {
        color: #ffffff;
    }

    .sidebar .nav-links li.showMenu i.arrow {
        transform: rotate(-180deg);
    }

    .sidebar.close .nav-links i.arrow {
        display: none;
    }

    .sidebar .nav-links li a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        .sidebar .nav-links li a .link_name {
            font-size: 15px;
            font-weight: 400;
            color: #fff;
            transition: all 0.4s ease;
        }

    .sidebar .nav-links li.active a .link_name,
    .sidebar .nav-links li:hover a .link_name {
        color: #fff;
    }

    .sidebar.close .nav-links li a .link_name {
        opacity: 0;
        pointer-events: none;
    }

    .sidebar .nav-links li .sub-menu {
        padding: 6px 6px 14px 26px;
        background: #fff;
        display: none;
        border-radius: 5px;
    }

    .sidebar .nav-links li.showMenu .sub-menu {
        display: block;
    }

    .sidebar .nav-links li .sub-menu a {
        color: #002c8b;
        font-size: 14px;
        padding: 5px 0;
        white-space: nowrap;
        opacity: 0.9;
        font-weight: normal;
        transition: all 0.3s ease;
    }

        .sidebar .nav-links li .sub-menu a:hover {
            opacity: 1;
            font-weight: bold;
        }

    .sidebar.close .nav-links li .sub-menu {
        position: absolute;
        left: 100%;
        top: -10px;
        margin-top: 0;
        padding: 10px 20px;
        border-radius: 0 6px 6px 0;
        opacity: 0;
        display: block;
        pointer-events: none;
        transition: 0s;
    }

    .sidebar.close .nav-links li:hover .sub-menu {
        top: 0;
        opacity: 1;
        pointer-events: auto;
        transition: all 0.4s ease;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    }

    .sidebar .nav-links li .sub-menu .link_name {
        display: none;
    }

    .sidebar.close .nav-links li .sub-menu .link_name {
        font-size: 15px;
        opacity: 1;
        display: block;
        font-weight: bold;
        text-transform: uppercase;
        color: #002c8b;
    }

    .sidebar .nav-links li .sub-menu.blank {
        opacity: 1;
        pointer-events: auto;
        padding: 3px 20px 6px 16px;
        opacity: 0;
        pointer-events: none;
    }

    .sidebar .nav-links li:hover .sub-menu.blank {
        top: 50%;
        transform: translateY(-50%);
    }

.home-section {
    position: relative;
    height: 89vh;
    /* left: 260px; */
    /* width: calc(100% - 260px); */
    transition: all 0.5s ease;
    padding: 0px;
}

.sidebar.close ~ .home-section {
    left: 78px;
    width: calc(100% - 78px);
}

.home-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/*.home-content {
    align-items: normal;
    height:100%;
}*/

.home-section .home-content .bx-menu,
.home-section .home-content .text {
    color: #11101d;
    font-size: 35px;
}

.home-section .home-content .bx-menu {
    cursor: pointer;
    margin-right: 10px;
}

.home-section .home-content .text {
    font-size: 26px;
    font-weight: 600;
}

@media screen and (max-width: 400px) {
    .sidebar {
        width: 240px;
    }

        .sidebar.close {
            width: 78px;
        }

    .home-section {
        left: 240px;
        width: calc(100% - 240px);
    }

    .sidebar.close ~ .home-section {
        left: 78px;
        width: calc(100% - 78px);
    }
}

.sidebar .nav-links .iconwhite {
    fill: #ffffff;
}

.sidebar.close .nav-links .iconwhite img {
    width: 22px;
    height: 22px;
}

.sidebar.close .nav-links .iconwhite.campaign img {
    width: 26px;
    height: 26px;
}

.sidebar .nav-links li ul li {
    border-top: 1px solid #eeeeee;
}

.sidebar.close .nav-links li .sub-menu .link_name {
    border: 0px;
}

.sidebar .nav-links li ul li:first-child {
    border: 0px;
}

.sidebar i p {
    display: none;
}

.sidebar.close i p {
    display: block;
}

.sidebar .nav-links li i {
    height: 50px;
    min-width: 78px;
    text-align: center;
    padding-top: 10px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .sidebar .nav-links li i.fa {
        padding-top: 22px;
        font-size: 10px;
    }

.sidebar .nav-links li i {
    height: 50px;
    min-width: 28px;
    text-align: left;
    padding-top: 10px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar .nav-links .iconwhite img {
    width: 20px;
    height: 20px;
}

.sidebar .nav-links .iconwhite.campaign img {
    width: 20px;
    height: 20px;
}

.sidebar .nav-links li a .link_name:hover {
    color: #fff;
}

.sidebar .nav-links li a span .link_name:hover {
    color: #fff;
}

.customdropdown .dropdown-toggle::after {
    display: none;
}

.mobileview {
    display: none;
}

.table .active {
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 3px 10px;
    background-color: #fff;
    color: #000;
}

.table .inactive {
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 3px 10px;
    background-color: #fff;
    color: #000;
}

.table tbody tr {
    background-color: #fff;
}

.table tbody td {
    background-color: #fff;
}

.custom_datatable {
    position: relative;
    padding-top: 10px;
}

    /* dataTable Css */

    .custom_datatable table.dataTable tbody > tr .actionBtns button .fa {
        color: #707070;
    }

    .custom_datatable table.dataTable tbody > tr.selected .actionBtns button svg {
        fill: #ffffff;
    }

    .custom_datatable table.dataTable > tbody > tr.selected > * {
        box-shadow: inset 0 0 0 9999px #26a8ff;
        box-shadow: inset 0 0 0 9999px #26a8ff;
    }

    .custom_datatable table.dataTable td {
        color: #707070;
        /* background: #eaeaea; */
        vertical-align: middle;
    }

    .custom_datatable .bottom .dataTables_length,
    .custom_datatable .bottom .dataTables_info {
        display: inline-block;
        position: relative;
    }

        .custom_datatable .bottom .dataTables_length label:before {
            content: "Items Per Page";
            position: absolute;
            color: #707070;
            font-family: "Poppins-Regular", sans-serif;
            top: 0.3rem;
            right: 100%;
        }

div.dataTables_wrapper div.dataTables_length select {
    font-family: "Poppins-Regular", sans-serif;
}

.custom_datatable .bottom div.dataTables_paginate {
    padding-top: 0;
    margin-left: 2rem;
}

.TaskTable {
    border-collapse: separate;
    border-spacing: 0 8px !important;
}

    .TaskTable > :not(caption) > * > * {
        border-bottom: 0;
    }

    .TaskTable > tbody > tr {
        background-color: #ffffff;
        box-shadow: 0px 3px 6px #0000000d;
    }

    .TaskTable > tbody tr td {
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
        vertical-align: middle;
    }

        .TaskTable > tbody tr td:first-child {
            border-top-left-radius: 10px;
            border-left: 1px solid #e5e5e5;
            border-bottom-left-radius: 10px;
            color: #0023ff;
            padding-left: 10px;
            font-weight: bold;
        }

        .TaskTable > tbody tr td:last-child {
            border-top-right-radius: 10px;
            border-right: 1px solid #e5e5e5;
            border-bottom-right-radius: 10px;
        }

.CompanyStaus {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3abf3f0d;
    border: 1px solid #3abf3f;
    color: #3abf3f;
    font-size: 0.7rem;
    width: fit-content;
}

    .CompanyStaus span {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 100%;
        display: inline-block;
        background: #3abf3f;
    }

    .CompanyStaus.notStarted {
        background: #f47f0b0d;
        border: 1px solid #f47f0b;
        color: #f47f0b;
    }

        .CompanyStaus.notStarted span {
            background: #f47f0b;
        }

.table-hover > tbody > tr:hover > * {
    --bs-table-color-state: none;
    --bs-table-bg-state: none;
    --dt-row-hover: 255, 255, 255;
}

.form-select {
    font-size: 13px;
    height: 38px;
}

.form-control {
    font-size: 13px;
    height: 38px;
    font-family: "Sky Text", sans-serif !important;
}

.siteFooter {
    font-size: 12px;
    z-index: -1;
    position: relative;
}

.modal-title {
    font-weight: bold;
    color: #2d2d34;
    text-transform: uppercase;
}

    .modal-title span {
        color: #0023ff;
    }

.modal-body {
    background: #fafafd;
}

.sidebar.close .nav-links.setlinks {
    border-top: 1px solid #ffffff74;
    padding-top: 15px;
    display: block;
}

    .sidebar.close .nav-links.setlinks li i {
        height: 60px;
        min-width: 72px;
    }

.sidebar .nav-links li a.profileset img {
    opacity: 0.6;
}

.sidebar .nav-links.setlinks li a.profileset img {
    width: 18px;
    height: 18px;
}

.username {
    color: #091153;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #0023ff;
}

.pencil {
    fill: #777;
    padding: 6px;
    border-radius: 3px;
    transition: ease-in-out 500ms;
}

    .pencil:hover {
        background: #0023ff;
        fill: #ffffff;
    }

.form-label {
    margin-bottom: 0px;
    font-weight: bold;
    color: #000;
}

.custombutton {
    font-size: 14px;
    padding-left: 15px;
    border-color: rgb(5, 20, 245);
    font-weight: bold;
    padding-right: 15px;
    font-size: 15px;
    color: #ffffff;
    border-radius: 3px;
    height: 36px;
    background: rgb(5, 20, 245);
    background: linear-gradient( 0deg, rgba(5, 20, 245, 1) 0%, rgba(35, 48, 245, 1) 50%, rgba(0, 15, 245, 1) 50%, rgba(1, 16, 245, 1) 100% );
}

.linkbutton {
    font-size: 14px;
    color: #0023ff;
    height: 36px;
    background-color: transparent;
    background: transparent;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #0023ff;
    border-radius: 3px;
}

    .linkbutton:hover {
        background-color: transparent;
        color: #0023ff;
    }

    .linkbutton:active {
        background-color: transparent !important;
        color: #0023ff !important;
    }

.customdropdown .dropdown-item {
    font-size: 12px;
}

.bglanding {
    background: url('../images/TLOU_Dashboard_darker.jpg') 50px 0 no-repeat;
    background-size: cover;
    background-attachment: fixed; /* optional, for parallax effect */
    min-height: 90vh;
    width: 100%;
}

/*.bglanding {
    background: url(../images/bglandingpage.png) 0 0 no-repeat;*/
/*background-size: 100% 66vh;*/
/*background-size: cover;
    height: 100%;
}*/

/*.bglanding {
    background: url(../images/bglandingpage.png) 0 0 no-repeat;
 
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    width: 100%;
    background-size: 100% 60vh;
}*/

.gj-icon.chevron-left:before {
    content: "\f053";
    font-family: "FontAwesome" !important;
    font-size: 16px;
}

.gj-icon.chevron-right:before {
    content: "\f054";
    font-family: "FontAwesome" !important;
    font-size: 16px;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
    border-radius: 3px !important;
}

.gj-datepicker {
    margin-bottom: 0px !important;
}

.highcharts-background {
    background-color: transparent;
}

.graphtitle {
    color: #091153;
    text-align: center;
    justify-content: center;
}

.customborder {
    position: relative;
    height: 330px;
}

    .customborder:before {
        left: 0px;
        z-index: 1;
        height: 5px;
        content: "";
        position: absolute;
        bottom: 0px;
        width: 100%;
        background: rgb(255, 120, 0);
        background: linear-gradient( 90deg, rgba(255, 120, 0, 1) 8%, rgba(248, 0, 50, 1) 28%, rgba(255, 0, 160, 1) 40%, rgba(140, 40, 255, 1) 60%, rgba(0, 35, 255, 1) 80%, rgba(23, 152, 255, 1) 100% );
    }

.highcharts-figure {
    width: 100%;
}

    .highcharts-figure .piechart {
        margin: 0 auto;
        height: 250px !important;
        margin-bottom: 30px;
        width: 100%;
    }

.form-control {
    height: 36px;
}

/*--------------Accordion CSS--------------*/

.customaccordion .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.customaccordion .accordion-button::after {
    background-color: #0023ff;
    border-radius: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='16' height='16' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.customaccordion .accordion-button:not(.collapsed)::after {
    background-color: #0023ff;
    border-radius: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.customaccordion .accordion-button::after {
    transition: all 0.5s;
}

.customaccordion .accordion-item {
    border: 0px;
}

.customaccordion .accordion-button {
    background-color: #0023ff0a !important;
    font-size: 18px;
    color: #0023ff !important;
    /*border-left: 4px solid #0023ff;*/
    padding: 0.5rem 0.5rem;
}

.customaccordion .accordion {
    --bs-accordion-border-width: none;
}

.campaignform .col-form-label {
    color: #697081;
}

.font-11 {
    font-size: 11px;
}

.selecteddata ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .selecteddata ul li {
        border: 1px solid #f2f2fb;
        background-color: #fafafd;
        padding: 5px 50px 5px 10px;
        text-decoration: none;
        font-size: 13px;
        color: #697081;
        position: relative;
        width: auto;
        float: left;
        /* display: flex; */
        margin-right: 15px;
        border-radius: 3px;
        font-weight: bold;
    }

.selecteddata .closetag {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0%;
    padding: 0px 8px;
    transform: translate(0%, -50%);
    font-size: 20px;
    opacity: 0.3;
}

.selecteddata .close:hover {
    background: #ccccf3;
}

.form-control.icondate {
    position: relative;
}

    .form-control.icondate:before {
        background: url(../images/calendar.svg) 0 0 no-repeat;
        content: " ";
        width: 20px;
        height: 20px;
        position: absolute;
        right: auto;
        top: auto;
    }

.bglanding .gj-datepicker [role="right-icon"] {
    display: none;
}

.gj-datepicker [role="right-icon"] {
    background: url(../images/calendar.svg) center 9px no-repeat;
    content: " ";
    width: 30px !important;
    height: 36px;
    font-size: 0;
    background-size: 50%;
    border: 0px;
    /* opacity: .3; */
    border: 1px solid #dee2e6;
    border-left: 0px;
}

.gjicon button.btn-outline-secondary {
    background-color: #e9ecef;
}

.datebg button.btn-outline-secondary {
    background-color: #e9ecef;
}

.multiselectdropdown .btn-primary {
    background-color: #fff;
    text-align: left;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    color: #000;
    font-size: 13px;
    font-family: "Sky Text";
}

.multiselect-container {
    width: 100%;
    padding: 10px;
}

    .multiselect-container > li > a > label {
        padding-left: 10px;
        font-size: 12px;
        color: #000;
        display: flex;
        justify-content: left;
        align-items: center;
    }

        .multiselect-container > li > a > label > input[type="checkbox"] {
            margin-bottom: 0px;
            margin-right: 5px;
        }

.campaignform .gj-icon {
    display: none;
}

.multiselect.dropdown-toggle::after {
    content: "\f078";
    font-family: "FontAwesome" !important;
    font-size: 12px;
    opacity: 0.5;
    position: absolute;
    right: 16px;
    border: 0;
}

.titlebar {
    color: #091153;
    background-color: #0023ff0a !important;
}

/*----------multiple-file-upload-----------*/
.file-upload-contain {
    position: relative;
    margin-bottom: 0px;
    padding: 0px;
}

    .file-upload-contain .file-input,
    .file-upload-contain .file-preview {
        position: initial;
    }

    .file-upload-contain .file-drop-zone {
        border: 1px dashed #cccccc;
        transition: 0.3s;
        margin: 0;
        padding: 0;
        border-radius: 5px;
        background-color: #f4f6f7;
        min-height: auto;
    }

        .file-upload-contain .file-drop-zone.clickable:hover,
        .file-upload-contain .file-drop-zone.clickable:focus,
        .file-upload-contain .file-highlighted {
            border: 1px dashed #0023ff !important;
            background-color: #0023ff0a;
        }

.upload-area {
    justify-content: center;
    display: flex;
    align-items: center;
}

    .upload-area i {
        color: #0023ff;
        font-size: 50px;
        display: flex;
    }

    .upload-area p {
        font-size: 13px;
        font-weight: bold;
        color: #797979;
        display: flex;
        padding-left: 10px;
    }

        .upload-area p a {
            color: #0023ff;
        }

        .upload-area p b {
            color: #1e80e8;
        }

    .upload-area button {
        padding: 8px 16px;
        min-width: 150px;
        font-size: 16px;
        color: #fff;
        background-color: #1e80e8;
        border: 2px solid #1e80e8;
        border-radius: 50px;
        transition: 0.3s;
    }

        .upload-area button:hover {
            background-color: #1e80e8;
            box-shadow: 0px 4px 8px rgb(37 128 232 / 48%);
        }

.file-preview {
    padding: 0;
    border: none;
    margin-bottom: 10px;
}

    .file-preview .fileinput-remove {
        display: none;
    }

.file-drop-zone-title {
    padding: 15px 10px;
}

.file-drop-zone .file-preview-thumbnails {
    cursor: pointer;
}

.file-preview-frame {
    cursor: default;
    /* display: flex; */
    align-items: center;
    border: none;
    background-color: #ffffff;
    box-shadow: none;
    border-radius: 0;
    width: 97px;
    height: 94px;
    padding: 5px;
    margin: 8px 20px 0 0;
    border: 1px solid #d3d7dd;
    position: relative;
    float: left;
}

    .file-preview-frame:not(.file-preview-error):hover {
        border: none;
        box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    }

    .file-preview-frame .kv-file-content {
        min-width: 45px;
        min-height: 45px;
        width: 100%;
        height: 100%;
        border-radius: 4px;
        margin-right: 10px;
        background-color: #fff;
        padding: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.file-preview-image {
    border-radius: 4px;
}

.file-preview-frame .file-footer-caption {
    padding-top: 0;
}

.file-preview-frame .file-footer-caption {
    text-align: left;
    margin-bottom: 0;
}

.file-detail {
    font-size: 14px;
    height: auto;
    width: 100%;
    line-height: initial;
}

    .file-detail .file-caption-name {
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .file-detail .file-size {
        color: #f1f8fe;
        font-size: 12px;
    }

.kv-zoom-cache {
    display: none;
}

.file-preview-frame .file-thumbnail-footer {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.file-preview-frame .file-drag-handle,
.file-preview-frame .file-upload-indicator {
    float: none;
    display: none;
}

.file-preview-frame .file-footer-buttons {
    float: none;
    display: flex;
    align-items: center;
    position: absolute;
    top: -9px;
    right: -13px;
}

.file-preview-status.text-center {
    display: none;
}

.kv-file-remove.file-remove {
    border: none;
    background-color: #fff;
    color: #969696;
    width: 15px;
    height: 15px;
    font-size: 10px;
    border-radius: 4px;
    margin: 0px 4px;
    border: 1px solid;
    border-radius: 100%;
    text-align: center;
    padding: 0px;
}

.file-drag-handle.file-drag {
    border: none;
    background-color: #fff;
    color: #2580e8;
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0px 4px;
}

.kv-file-upload.file-upload {
    border: none;
    background-color: #48bd22;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0px 4px;
}

.file-thumb-loading {
    background: none !important;
}

.file-preview-frame.sortable-chosen {
    background-color: #64a5ef;
    border-color: #64a5ef;
    box-shadow: none !important;
}

.crossicon {
    background-color: #fff;
    color: #969696;
    text-align: center;
    font-size: 10px;
    position: absolute;
    border: 1px solid #d5d5d5;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    top: -8px;
    right: -8px;
}

.inneraccordion .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.inneraccordion .accordion-button::after {
    background-color: transparent;
    border-radius: 0px;
    transition: all 0.5s;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    position: absolute;
    left: 8px;
    width: 12px;
    height: 15px;
    background-size: auto;
    top: 7px;
}

.inneraccordion .accordion-button:not(.collapsed)::after {
    background-color: transparent;
    border-radius: 0px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.inneraccordion .accordion-button:not(.collapsed)::after {
    background-color: transparent;
    position: absolute;
    left: 8px;
    width: 12px;
    height: 15px;
    background-size: auto;
    top: 4px;
}

.inneraccordion .accordion-button {
    border-left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
    border-radius: 0 !important;
    padding-left: 25px;
}

.footerform {
    position: fixed;
    background-color: #fff;
    width: 100%;
    padding: 10px;
    bottom: 0;
    left: auto;
    right: 0;
    bottom: 0;
    z-index: 9;
    text-align: center;
}

.customaccordion {
    margin-bottom: 100px;
}

.siteFooter2 {
    z-index: 2;
    padding-left: 80px !important;
}

#flush-collapseSeven .file-preview-frame {
    border: 1px solid #f2f2fb;
    background-color: #fafafd;
}

    #flush-collapseSeven .file-preview-frame .kv-file-content {
        background: transparent;
    }

#flush-collapseSeven .kv-preview-data.file-preview-other-frame {
    width: 100% !important;
}

.selecteddata.pdfselect .closetag {
    cursor: pointer;
    position: absolute;
    right: 0%;
    padding: 0px 8px;
    /* transform: translate(0%, -50%); */
    /* font-size: 20px; */
    background-color: #fff;
    color: #969696;
    text-align: center;
    opacity: 0.9;
    font-size: 16px;
    position: absolute;
    border: 1px solid #d5d5d5;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    top: 0px;
    right: -7px;
    line-height: 12px;
    text-indent: -4px;
}

.selecteddata.pdfselect ul li {
    margin-bottom: 10px;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cccccc;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.titleinner {
    background-color: #0023ff0a !important;
    font-weight: bold;
    padding: 16px;
    font-size: 18px;
    color: #0023ff !important;
    border-left: 4px solid #0023ff;
}

.innersmalltitle {
    background-color: #0023ff0a !important;
    font-weight: bold;
    padding: 8px 16px;
    font-size: 15px;
    color: #0023ff !important;
    margin-bottom: 20px;
}

.reviewlist {
    width: 100%;
    margin-bottom: 30px;
}

    .reviewlist ul {
        list-style: none;
        position: relative;
    }

        .reviewlist ul:before {
            border-left: 1px solid #ccc;
            content: "";
            left: 20px;
            position: absolute;
            height: calc(100% - 20px);
            bottom: 17px;
        }

        .reviewlist ul li {
            position: relative;
            font-size: 12px;
        }

            .reviewlist ul li label {
                font-size: 14px;
                line-height: normal;
            }

            .reviewlist ul li .valuefield {
                position: relative;
                margin-bottom: 5px;
            }

                .reviewlist ul li .valuefield:before {
                    width: 10px;
                    content: "";
                    height: 1px;
                    background-color: #cccccc;
                    position: absolute;
                    left: -12px;
                    top: 50%;
                }

.minsize {
    font-size: 17px;
    font-weight: bold;
}

.creativepart ul:before {
    border-left: 1px solid #ccc;
    content: "";
    left: 20px;
    position: absolute;
    height: calc(100% - 71px);
    top: -8px;
}

.creativepart ul li .valuefield:before {
    width: 10px;
    content: "";
    height: 1px;
    background-color: #cccccc;
    position: absolute;
    left: -12px;
    top: 17px;
}

.customtable {
    font-size: 14px;
    border-collapse: separate;
    border-spacing: 0 4px !important;
}

    .customtable .dropdown-menu {
        font-size: 13px;
    }

table.customtable.dataTable td {
    color: #707070;
}

.customtable.table {
    background-color: transparent;
}

    .customtable.table tr th {
        background-color: transparent;
        padding-top: 0px;
    }

        .customtable.table tr th:hover {
            box-shadow: none;
            outline: none;
        }

.actionBtns button {
    border: 0;
    background: transparent;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.actionBtns {
    display: flex;
    align-items: center;
}

.moreOption button svg {
    fill: #9a9a9a;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 9px;
}

.moreOption .dropdown-toggle::after {
    display: none;
}

.listicon {
    fill: #777;
    padding: 2px 6px;
    border-radius: 3px;
    transition: ease-in-out 500ms;
}

    .listicon:hover {
        background: #0023ff;
        fill: #ffffff;
    }

.icondetail {
    display: inline-flex;
}

.infodetail {
    display: inline-block;
    line-height: 16px;
}

.gridtitle {
    font-size: 14px;
    font-weight: bold;
    color: #0023ff;
    display: block;
    position: relative;
}

.livepro {
    background-color: #3abf3f;
    font-size: 11px;
    padding: 2px;
    color: #fff;
    border-radius: 2px;
    margin-left: 4px;
}

.timetitle {
    font-size: 10px;
    color: #707070;
    display: block;
}

.livestatus {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3abf3f0d;
    border: 1px solid #3abf3f;
    color: #3abf3f;
    font-size: 0.7rem;
    width: fit-content;
}

    .livestatus span {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 100%;
        display: inline-block;
        background: #3abf3f;
    }

.completestatus {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0023ff0d;
    border: 1px solid #0023ff;
    color: #0023ff;
    font-size: 0.7rem;
    width: fit-content;
}

    .completestatus span {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 100%;
        display: inline-block;
        background: #0023ff;
    }

.wipstatus {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff64000d;
    border: 1px solid #ff6400;
    color: #ff6400;
    font-size: 0.7rem;
    width: fit-content;
}

    .wipstatus span {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 100%;
        display: inline-block;
        background: #ff6400;
    }

.active > .page-link,
.page-link.active {
    background-color: rgb(5, 20, 245);
}

.page-link {
    color: rgb(5, 20, 245);
}

.custonheight {
    height: 38px;
}

.customtable .dropdown-menu li + li {
    border-top: 1px solid #f1f1f1;
}

.customtabs {
    border-bottom: 0px;
    margin-top: 5px;
}

    .customtabs li {
        margin-right: 5px;
    }

        .customtabs li a {
            background-color: #f5f6ff;
            border-radius: 20px !important;
            color: #7988aa;
            font-weight: bold;
            padding: 4px 15px;
            font-size: 12px;
        }

            .customtabs li a.active {
                background-color: #3a02fe !important;
                color: #fff !important;
            }

            .customtabs li a:hover {
                background-color: #3a02fe !important;
                color: #fff !important;
            }

.TaskTable > tbody tr:hover {
    transition: ease-in-out 500ms;
}

    .TaskTable > tbody tr:hover td {
        border-top: 1px solid #3a02fe;
        border-bottom: 1px solid #3a02fe;
    }

        .TaskTable > tbody tr:hover td:first-child {
            border-left: 1px solid #3a02fe;
        }

        .TaskTable > tbody tr:hover td:last-child {
            border-right: 1px solid #3a02fe;
        }

.customfilter {
    position: absolute;
    top: auto;
    left: 0px;
    right: 0px;
    z-index: 9;
    border-radius: 0px;
}

    .customfilter .card-body {
        border-radius: 0px;
        border: 0px;
    }

    .customfilter .form-control {
        height: 38px;
    }

    .customfilter label {
        font-size: 14px;
    }

.innertitle .searchfilter {
    position: relative;
    color: #2d2d34;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

    .innertitle .searchfilter:before {
        background: #ebebeb;
        content: "";
        left: auto;
        right: 0px;
        width: 90%;
        height: 1px;
        position: absolute;
        top: 10px;
    }

.customfilter .gj-datepicker [role="right-icon"] {
    background: url(../images/calendar.svg) center 9px no-repeat;
    content: " ";
    width: 30px !important;
    height: 38px;
    font-size: 0;
    background-size: 50%;
    border: 0px;
    /* opacity: .3; */
    border: 1px solid #dee2e6;
    border-left: 0px;
}

.customfilter .gj-icon {
    display: none;
}

.gj-picker-bootstrap [role="header"] [role="date"] {
    font-size: 15px;
}

.gj-picker-bootstrap.datetimepicker [role="header"] [role="time"] {
    font-size: 15px;
}

.gj-picker [role="switch"] [role="calendarMode"] {
    background: url(../images/calendar.svg);
    width: 20px;
    height: 20px;
    background-size: cover;
    font-size: 0px;
}

.gj-picker [role="switch"] [role="clockMode"] {
    background: url(../images/clock.svg);
    width: 20px;
    height: 20px;
    background-size: cover;
    font-size: 0px;
}

.gj-picker .btn {
    border: 1px solid #0023ff;
    color: #0023ff;
    font-size: 12px;
}

    .gj-picker .btn:hover {
        background-color: transparent;
        color: #0023ff;
    }

.filteraction {
    padding: 0px 5px;
}

.filteractionnew {
    background: #0023ff;
    padding: 0px 5px;
    border-radius: 3px;
    fill: #ffffff;
}

    .filteractionnew svg {
        fill: #ffffff;
    }

    .filteractionnew:hover {
        background: #0023ff;
        padding: 0px 5px;
        border-radius: 3px;
        fill: #ffffff;
    }

        .filteractionnew:hover svg {
            fill: #ffffff;
        }

.dt-container .row.mt-2.justify-content-between {
    margin: 0px !important;
}

/*.dt-length {
    margin-top: 15px !important;
}*/

.dt-paging {
    margin-top: 8px !important;
}

.headingname {
    font-size: 15px;
    font-weight: bold;
}

.filename {
    font-size: 14px;
}

.filedate {
    font-size: 11px;
}

.border4 {
    border-left: 3px solid #0023ff;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date {
    text-align: left;
}

table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
    text-align: center;
}

.labelname {
    background-color: #f5f6ff;
    padding: 3px 5px;
    border-radius: 5px;
}

.detailclick {
    font-weight: normal;
    cursor: pointer;
}

    .detailclick:hover {
        font-weight: bold;
    }

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
    position: relative;
    right: -4px;
    top: 0;
    bottom: 0;
    width: 12px;
}

    table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
    table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
    table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
    table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
        color: #0023ff;
        opacity: 0.9;
    }

.viewlogtable table.dataTable td.dt-type-numeric,
.viewlogtable table.dataTable td.dt-type-date {
    text-align: left;
}

.viewdetails tr th,
.viewdetails tr td {
    border: 0px !important;
    padding-bottom: 5px !important;
}

.viewdetails tbody tr td:first-child {
    color: #000 !important;
}

.linkTable, .journeytable {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    padding-bottom: 10px;
}

    .linkTable .TaskTable > tbody tr td, .journeytable .TaskTable > tbody tr td {
        background-color: #edf1f5;
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 12px;
    }

.customtable.dataTable,
div.dt-scroll-head table.dataTable {
    min-width: 100% !important;
}

.dt-scroll-headInner {
    min-width: 100% !important;
}

.dt-scroll-body .customtable.dataTable {
    min-width: 100% !important;
}

.linkTable, .journeytable {
    padding-left: 40px;
}

    .linkTable .TaskTable > tbody, .journeytable .TaskTable > tbody {
        position: relative;
    }

        .linkTable .TaskTable > tbody:before, .journeytable .TaskTable > tbody:before {
            width: 1px;
            content: "";
            background-color: #ccc;
            position: absolute;
            left: -12px;
            top: auto;
            bottom: 18px;
            height: calc(100% - 0px);
        }

        .linkTable .TaskTable > tbody tr td:first-child, .journeytable .TaskTable > tbody tr td:first-child {
            position: relative;
        }

            .linkTable .TaskTable > tbody tr td:first-child:before, .journeytable .TaskTable > tbody tr td:first-child:before {
                width: 10px;
                content: "";
                height: 1px;
                background-color: #cccccc;
                position: absolute;
                left: -12px;
                top: 50%;
            }

    .linkTable .dt-scroll-body, .journeytable .dt-scroll-body {
        overflow: inherit !important;
        border-bottom: 0px !important;
    }

.dt-scroll-body {
    border-bottom: 0px !important;
}

.mainjourney .journeytable {
    border-top: 0px;
    border-radius: 0px 0px 5px 5px;
}

.mainjourney .gridtitle {
    font-size: 12px;
}

.mainjourney .customtable {
    font-size: 12px;
    border-collapse: separate;
    border-spacing: 0 0px !important;
}

.mainjourney .TaskTable2 > tbody tr td {
    border-bottom: 0px;
    padding-bottom: 0px;
}

    .mainjourney .TaskTable2 > tbody tr td:first-child {
        border-bottom-left-radius: 0px;
    }

    .mainjourney .TaskTable2 > tbody tr td:last-child {
        border-bottom-right-radius: 0px;
    }

.journeytable .dt-scroll-head {
    overflow: inherit !important;
}

/*.pendingstatus {
  padding: 0.3rem 0.7rem;
  border-radius:20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fffdfd;
  border: 1px solid #DDDDDD;
  color:#707070;
  font-size: 0.7rem;
  width: fit-content;
}*/
.pendingstatus {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: inline-block;
    justify-content: space-between;
    align-items: center;
    background: #00b6cb0d;
    border: 1px solid #00b6cb;
    color: #00b6cb;
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .pendingstatus span {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 100%;
        display: inline-block;
        background: #00b6cb;
    }

.rejectstatus {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff00460d;
    border: 1px solid #ff0046;
    color: #ff0046;
    font-size: 0.7rem;
    width: fit-content;
}

    .rejectstatus span {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 100%;
        display: inline-block;
        background: #ff0046;
    }

.swal2-popup {
    font-family: "Sky Text", sans-serif !important;
}

/* reviewCampaign 1st Aug 2024 */
.border2 {
    border-left: 2px solid;
}

.greyText {
    color: #707070;
}

.GreyBorder {
    border-color: #e0e0e0;
}

.blueColor {
    color: #0023ff !important;
}

.tdBg {
    background: #c9e0ff !important;
    box-shadow: none !important;
}

.tdBgWhite {
    background: #ffffff !important;
    box-shadow: none !important;
}

.tdBorderR {
    border-right: 0 !important;
}

.OverviewForm .form-select-sm,
.OverviewForm .form-control-sm {
    height: inherit;
}

.pb-70 {
    padding-bottom: 70px;
}
/* Styling for the edit and save buttons */
.edit-btn,
.save-btn {
    cursor: pointer;
    margin-left: 10px;
}
/* Initially, only the edit button is visible */
.edit-btn {
    display: inline-block;
}
/* The save button is hidden until editing starts */
.save-btn {
    display: none;
}

.table.SegmentsTable {
    border: 1px solid #e9e9e9;
    border-radius: 5px;
}

    .table.SegmentsTable tr th {
        color: #0023ff;
        border-bottom: 2px solid #707070;
        padding-left: 10px;
    }

    .table.SegmentsTable > :not(caption) > * > * {
        border-bottom: 0px solid #e9e9e9;
    }

table.SegmentsTable.dataTable.stripe > tbody > tr:nth-child(odd) > *,
table.SegmentsTable.dataTable.display > tbody > tr:nth-child(odd) > * {
    box-shadow: inset 0 0 0 9999px #fafbfc;
}

table.SegmentsTable.table-hover > tbody > tr:hover > * {
    --bs-table-color-state: none;
    --bs-table-bg-state: none;
    --dt-row-hover: 250, 250, 250;
}

table.SegmentsTable.table.dataTable.table-hover > tbody > tr:hover > * {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
}

.table.SegmentsTable tbody td input,
.table.SegmentsTable tbody td select {
    width: 100%;
    border: none;
    background-color: transparent;
    pointer-events: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: none;
}

.table.SegmentsTable tbody td input:disabled,
.table.SegmentsTable tbody td select:disabled {
    color: #000;
    font-size: 14px;
    background-color: transparent;
    --bs-form-select-bg-img: none;
    padding-left: 1px;
    /* --bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); */
}

.table.SegmentsTable .editable {
    pointer-events: auto;
    background-color: #fff;
    border: 1px solid #ced4da;
}

.table.SegmentsTable th .dt-column-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 0.5rem 0 0.4rem;*/
    /*padding: 0 0 0 0.1rem;*/
}

.table.SegmentsTable th button {
    padding: 0;
    border: 0;
    background: transparent;
}

.table.SegmentsTable th .save-icon {
    display: none;
}

    .table.SegmentsTable th .edit-icon:hover,
    .table.SegmentsTable th .save-icon:hover {
        cursor: pointer;
        color: #007bff;
    }

.table.SegmentsTable .form-select-sm,
.table.SegmentsTable .form-control-sm {
    height: inherit;
    padding-left: 0;
    color: #000;
    font-size: 14px;
}

.table.SegmentsTable .form-check {
    display: flex;
    align-items: center;
}

    .table.SegmentsTable .form-check input[type="radio"],
    .table.SegmentsTable .form-check input[type="checkbox"] {
        margin-right: 5px;
    }

.table.SegmentsTable .radio-disabled-label,
.table.SegmentsTable .checkbox-disabled-label {
    display: inline-block;
    margin-right: 10px;
}

.table.SegmentsTable .radio-wrapper,
.table.SegmentsTable .checkbox-wrapper {
    display: none;
}

.table.SegmentsTable tbody tr > * {
    color: #2d2d34;
}

.table.SegmentsTable td {
    border-right: 1px solid rgba(112, 112, 112, 0.12);
}

table.SegmentsTable.dataTable > tbody > tr > th,
table.SegmentsTable.dataTable > tbody > tr > td {
    padding: 4px 10px;
    z-index: 1;
}

/*.home-content > .container-fluid {
    padding-bottom: 70px;
}*/

.CreateCampaignTab {
    width: 98%;
}

    .CreateCampaignTab .flex-column {
        width: 20%;
    }

    .CreateCampaignTab .tab-content {
        width: 80%;
    }

        .CreateCampaignTab .tab-content > .tab-pane {
            background: #ffffff;
            padding: 1rem;
            border-radius: 0.3rem;
            box-shadow: 0px 0px 20px #00000017;
            overflow: auto;
            height: calc(100vh - 240px);
        }

    .CreateCampaignTab .flex-column.nav-pills .nav-item {
        margin: 0.5rem 0;
        position: relative;
        display: block;
        width: 100%;
    }

    .CreateCampaignTab .flex-column.nav-pills .nav-link {
        background: #ffffff;
        box-shadow: 0px 0px 20px #00000017;
        margin: 0;
        color: #697081;
        text-align: left;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: start;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 14px;
        width: 100%;
        cursor: not-allowed;
    }

        .CreateCampaignTab .flex-column.nav-pills .nav-link.active {
            cursor: pointer;
        }

        .CreateCampaignTab .flex-column.nav-pills .nav-link .fa {
            font-size: 1.3rem;
            margin-right: 0.7rem;
        }

        .CreateCampaignTab .flex-column.nav-pills .nav-link.active,
        .CreateCampaignTab .flex-column.nav-pills .show > .nav-link {
            color: #274eff;
            background-color: #ffffff;
        }

    .CreateCampaignTab .flex-column.nav-pills .nav-item:after {
        position: absolute;
        content: "";
        height: 1.4rem;
        width: 1px;
        background: #d4d4d4;
        left: 1.6rem;
        bottom: -1.4rem;
    }

    .CreateCampaignTab .flex-column.nav-pills .nav-item:last-child:after {
        display: none;
    }

    .CreateCampaignTab .customaccordion .accordion-button.customStyle {
        background-color: #0023ff0a !important;
        font-size: 14px;
        color: #0023ff !important;
        border-left: 0px solid #0023ff;
        padding: 0.5rem 0.5rem;
    }

.c_Fileupload {
    background: #f3f3f3;
    padding: 10px;
    border: 1px dashed #cccccc;
    position: relative;
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--bs-border-radius);
}

.CreateCampaignTab .customaccordion {
    margin-bottom: 0;
}

.uplaod_textInfo {
    color: #333333;
    font-weight: 600;
    letter-spacing: normal;
}

.fileUplaodInput {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.F_uploadCustomText {
    position: absolute;
}

    .F_uploadCustomText span {
        text-decoration: underline;
        color: #0023ff;
    }

a.show-more {
    border: 1px solid #c3c3c2;
    padding: 0 0.3rem !important;
    border-radius: 0.3rem;
    font-weight: bold;
    letter-spacing: 0;
}

.loginFooter {
    z-index: 2;
    position: absolute;
    bottom: 20px;
}

.customtable *,
.custom_datatable * {
    letter-spacing: normal;
}

.customtable .moreOption a {
    border: 1px solid #c3c3c2;
    padding: 0 0.3rem !important;
    border-radius: 0.3rem;
    font-weight: bold;
    letter-spacing: 0;
    text-decoration: none;
}



.infoText {
    line-height: normal;
    color: #5458c2;
}

.titleHeader {
    background: #dadcfe;
    color: #000000;
}

.topSpace {
    margin-top: 5vh;
}


.sidebar.close .nav-links li .sub-menu .link_name {
    padding-left: 0;
}

.sidebar .nav-links ul.sub-menu li:first-child:before {
    display: none;
}

.sidebar .nav-links ul.sub-menu li:before {
    position: absolute;
    top: 11px;
    left: 0px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #c1c1c1;
    content: "";
    width: 0px;
    height: 0px;
}

.sidebar .nav-links li .sub-menu a {
    padding-left: 13px;
}

.segmentctrl {
    overflow-y: auto;
    height: calc(100vh - 240px);
    padding: 0px 10px;
}

.CreateCampaignTab .flex-column.nav-pills li.nav-item:first-child {
    margin-top: 0px;
}




table.SegmentsTable thead th, table.SegmentsTable thead td {
    min-width: 250px;
}

.btndangericon {
    font-size: 18px;
    top: 44%;
    right: 10px;
    position: absolute;
}


.plusiconbtn {
    border: 1px solid #0023ff;
    color: #0023ff;
    background: transparent;
    border-radius: 3px;
    line-height: 20px;
    font-size: 14px;
    padding-top: 2px;
}

/*-----------Copy--------------*/


/*-----------------_viewCampaign------------------*/
input[readonly] {
    background-color: #f0f0f0; /* Light gray background */
    color: #808080; /* Gray text color */
    border-color: #ccc; /* Light gray border color */
}

.clstextarea {
    border: none;
    background-color: transparent;
    box-shadow: none;
    resize: none;
    outline: none;
    width: 100%;
    /*max-height: 110px;*/
    field-sizing: content;
}

    /* width */
    .clstextarea::-webkit-scrollbar {
        width: 7px;
    }

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.clstextarea::-webkit-scrollbar-thumb {
    background: #d4d4d4;
}

    /* Handle on hover */
    .clstextarea::-webkit-scrollbar-thumb:hover {
        background: #aba5a5;
    }

.imgclose {
    float: right;
    display: inline-block;
    padding: 2px 5px;
    background: #ccc;
}

.divEmailFilesContainerClass img {
    height: 100px;
    width: 80px;
}

input[type="file"] {
    color: transparent;
}

/*--------------pdf--------------*/
.pdfclose {
    float: right;
    display: inline-block;
    padding: 2px 5px;
    background: #ccc;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

input[type="file"] {
    color: transparent;
}

.clipboard {
    position: relative;
}
/* You just need to get this field */
.copy-input {
    max-width: 275px;
    width: 100%;
    cursor: pointer;
    background-color: #eaeaeb;
    border: none;
    color: #6c6c6c;
    font-size: 14px;
    border-radius: 5px;
    padding: 15px 45px 15px 15px;
    font-family: 'Montserrat', sans-serif;
}

    .copy-input:focus {
        outline: none;
    }

.copy-btn {
    width: 40px;
    background-color: #eaeaeb;
    font-size: 18px;
    padding: 6px 9px;
    border-radius: 5px;
    border: none;
    color: #6c6c6c;
    margin-left: -50px;
    transition: all .4s;
}

    .copy-btn:hover {
        transform: scale(1.3);
        color: #1a1a1a;
        cursor: pointer;
    }

    .copy-btn:focus {
        outline: none;
    }

.copied {
    font-family: 'Montserrat', sans-serif;
    width: 100px;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    color: #000;
    padding: 15px 15px;
    background-color: #fff;
    border-radius: 5px;
    transition: .4s opacity;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 5px;
}

.copied {
    display: inline-block;
    color: green;
    margin-left: 5px;
    transition: opacity 0.5s ease;
}

.clstextarea1 {
    border: none;
    background-color: transparent !important;
    box-shadow: none;
    resize: none;
    outline: none;
    width: 100%;
    max-height: 230px;
    field-sizing: content;
}

    /* width */
    .clstextarea1::-webkit-scrollbar {
        width: 7px;
    }

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.clstextarea1::-webkit-scrollbar-thumb {
    background: #d4d4d4;
}

    /* Handle on hover */
    .clstextarea1::-webkit-scrollbar-thumb:hover {
        background: #aba5a5;
    }

/*.custom_datatable table.dataTable td {
    vertical-align: top !important;
}*/
/*------------------------_viewCampaignEND---------------------------*/

/*------------DCMP--------------*/

.dcmpheader {
    background-color: #cfe2ff;
    color: #052c65;
    font-size: 16px;
    padding: 8px 20px;
}



/********* Dashboard Tabs *********/


.dashboard_tabs {
}

    .dashboard_tabs ul.nav-tabs {
        border-bottom: 0px;
    }

        .dashboard_tabs ul.nav-tabs li {
            border-bottom: 3px solid transparent;
            border-image: linear-gradient(90deg, rgba(255, 120, 0, 1) 8%, rgba(248, 0, 50, 1) 28%, rgba(255, 0, 160, 1) 40%, rgba(140, 40, 255, 1) 60%, rgba(0, 35, 255, 1) 80%, rgba(23, 152, 255, 1) 100%);
            border-image-slice: 1;
        }

            .dashboard_tabs ul.nav-tabs li button.nav-link {
                color: #fff;
                font-size: 18px;
                border: none;
                position: relative;
            }

            .dashboard_tabs ul.nav-tabs li button.active {
                color: #fff;
                font-size: 18px;
                background-color: rgba(255, 255, 255, 0.2);
                border: none;
                font-weight: bold;
            }

                .dashboard_tabs ul.nav-tabs li button.active:before {
                    width: 16px;
                    height: 8px;
                    margin: 0 auto;
                    position: absolute;
                    left: 0px;
                    right: 0px;
                    bottom: -9px;
                    content: "";
                    background: linear-gradient(90deg, rgba(255, 120, 0, 1) 8%, rgba(248, 0, 50, 1) 28%, rgba(255, 0, 160, 1) 40%, rgba(140, 40, 255, 1) 60%, rgba(0, 35, 255, 1) 80%, rgba(23, 152, 255, 1) 100%);
                    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
                }


/* Container styled like a textarea that grows dynamically */
.chipbox-textarea {
    border: 1px solid #ccc;
    padding: 5px;
    width: 340px; /* Adjust width as needed */
    border-radius: 4px;
    background: #fff;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    /* No fixed height or overflow constraints for dynamic growth */
}

    .chipbox-textarea.viewamp {
        width: 320px; /* Adjust width as needed */
    }


/* Ensure our container overrides form-control's fixed height/overflow */
    .chipbox-textarea.form-control {
        height: auto !important;
        overflow-y: visible !important;
        min-height: 36px; /* Retain minimum height if desired */
    }


/* Smaller, blue-colored chip styling */
.chipbox {
    display: inline-block;
    padding: 2px 6px;
    margin: 2px;
    background-color: #097aea; /* Blue background */
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.2;
}

/*-----------------------------*/

.customcard {
    background: #fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0px !important;
    width: 120px;
    border: 3px solid #78C1FA;
}

    .customcard:hover {
        transform: scale(1.1);
    }

.check_btn {
    position: absolute;
    right: 0px;
    top: 0px;
}

    .check_btn input[type="checkbox"] {
        display: none;
    }

        .check_btn input[type="checkbox"] + label {
            text-indent: 20px;
            color: rgba(0, 0, 0, 1);
            position: relative;
            font-weight: normal;
            cursor: pointer;
            padding-left: 6px;
            display: table;
            margin: 6px auto 0;
            width: 17px;
        }

            .check_btn input[type="checkbox"] + label:after {
                cursor: pointer;
                background-repeat: no-repeat;
                display: inline-block;
                -webkit-transition: all 300ms ease-in;
                -moz-transition: all 300ms ease-in;
                transition: all 300ms ease-in;
                background: url(images/check.svg) 0px 2px no-repeat;
                width: 14px;
                height: 22px;
                content: '';
                position: absolute;
                top: -8px;
                right: 0px;
                transform: rotate(0deg);
                z-index: 999999999999999;
            }

        .check_btn input[type="checkbox"]:checked + label + span {
            background: #7642F3; /*Active*/
        }

        .check_btn input[type="checkbox"]:checked + label:after {
            background: url(/images/check.svg) 0px 2px no-repeat;
        }

    .check_btn span {
        background: #78C1FA;
        display: inline-block;
        width: 45px;
        height: 35px;
        position: absolute;
        top: -17px;
        right: -23px;
        transform: rotate(45deg);
        z-index: 1;
    }

.customcard:focus {
    border: 3px solid #158EFF;
}

.customcard.active {
    border: 3px solid #7642F3; /*Active*/
}

.bgtitlename {
    width: 100%;
    /*background: #90d5da33;*/
    background: #E4F3FE;
}

    .bgtitlename.active {
        width: 100%;
        /*background: #90d5da33;*/
        background: #ECEEF6;
    }

.customcard img {
    width: 102% !important;
}

.fs-7 {
    font-size: 18px;
}

/*-------------------------*/

.ct-toggle {
    display: flex;
    border: 1px solid #999;
    border-radius: 4px;
    overflow: hidden;
    width: 48%;
}

    .ct-toggle button {
        flex: 1 1 50%;
        padding: 8px 0;
        background: #fff;
        border: 0;
        cursor: pointer;
        font-weight: 500;
        color: #444;
    }

        .ct-toggle button + button {
            border-left: 1px solid #999;
        }

        .ct-toggle button.active {
            background: #00AEEF; /* blue */
            color: #fff;
        }

        .ct-toggle button.inactive {
            background: #ccc; /* grey */
            color: #777;
        }

        .ct-toggle button.disabled {
            background: #00AEEF;
            color: #fff;
            cursor: not-allowed;
            pointer-events: none;
        }

.btn-group .btn.multiselect[title*="please select" i],
.btn-group .btn.multiselect[title*="please select" i] .multiselect-selected-text {
    color: #595c5f !important; /* placeholder grey */
}

/* 1) Grey out the select’s text when the selected <option> has value="0" (your placeholder) */
select:has(option[value="0"]:checked) {
    color: #595c5f !important; /* your grey placeholder color */
}

/* 2) Keep the dropdown items themselves black */
select option {
    color: #000;
}

    /* 3) Make the placeholder line inside the dropdown also grey */
    select option[value="0"] {
        color: #595c5f;
    }
