:root {
    /* --main-color: #b3b3b3;
    --MenuHead: #021f68;
    --MenuHead2: #062751;
    --MenuFont: #fff;
    --Bordercolor: #9f9f9f;
    --BtnBordercolor: #060606;
    --btn-color: #e77817;
    --BtnResetOrange: #e77817;*/

    --main-color: #fff;
    --MenuHead: #021f68;
    --MenuHead2: #062751;
    --MenuFont: #fff;
    --Bordercolor: #9f9f9f;
    --BtnBordercolor: #060606;
    --btn-color: #fff;
    --BtnResetOrange: ##fff;
}


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    /*background-color:var(--btn-color);*/
}

html {
    position: relative;
    min-height: 100%;
}

.text-orange {
    color: #e77817;
}

.text-blue {
    color: var(--MenuHead);
    font-weight: 600;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.border-top-left-radius-0 {
    border-top-left-radius: 0 !important;
}

.border-top-right-radius-0 {
    border-top-right-radius: 0 !important;
}

.border-bottom-left-radius-0 {
    border-bottom-left-radius: 0 !important;
}

.border-bottom-right-radius-0 {
    border-bottom-right-radius: 0 !important;
}
/*
input[type=button], button {
    background: #d6d6d6 !important;
    padding: 5px 10px;
    border-radius: 5px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #433f3d !important;
    font-size: 14px;
}*/

.form-control:focus, .form-check-input:focus {
    /*box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #cfcfcf;*/
    box-shadow: none;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus {
    /*box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #cfcfcf;*/
    box-shadow: none;
    /* background-color: var(--btn-color);*/
}

.btn-primary:focus, .btn-primary:active:focus {
    /*box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #cfcfcf;*/
    box-shadow: none;
    background-color: var(--btn-color);
}



.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    /*background-color: var(--btn-color) !important;*/
    /* border: 1px solid var(--BtnBordercolor) !important;*/
    background-color: var(--MenuHead);
}

.input-group-text {
    font-size: 13px !important;
    /*font-weight: 600;*/
}

.input-group-lg > .form-select, .input-group-sm > .form-select {
    padding-right: 1rem;
    line-height: normal !important;
}

.form-check-input[type=radio] {
    margin-top: 0;
}

label {
    display: inline-block;
    color: #414141;
    font-size: 14px;
}

/* LOADER START */
/*New Code*/
#ssloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5); /* Bootstrap modal-like */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* modal z-index */
    opacity: 1;
    transition: opacity 0.3s ease;
}

#ssloader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===== Spinner ===== */
.spinner-border {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    vertical-align: text-bottom;
    border: 0.25em solid rgba(255, 255, 255, 0.25);
    border-right-color: var(--main-color) !important;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}


/*Old Code 28/10/2025
.ssoverlay {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999999;
    background: #fff;
}

.ssloader {
    display: flex;
    position: absolute;
    transform: translate(-50%, -50%);
    // animation: animate 0.8s linear infinite; 
    animation: zoom-in-zoom-out 1s ease infinite;
    border-right-color: transparent;
    justify-content: center;
    align-items: center;
    top: 40%;
    left: 0;
    right: 0;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.7, 0.7);
    }

    50% {
        transform: scale(0.8, 0.8);
    }

    100% {
        transform: scale(0.7, 0.7);
    }
}
End Old Code 28/10/2025
*/

/*.ssoverlay {
    background: rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    text-align: center;
}

.ssloader {
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: rgb(93, 93, 93) 0px 2px 20px;
    border-radius: 50px;
    padding: 10px;
    display: block;
    z-index: 1001;
    background: rgb(255, 255, 255);
}*/
/*@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-moz-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.ssloader {
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}*/
/* LOADER END */
/* MODAL START */
.modal-header {
    background-color: var(--main-color);
    padding: 7px 1rem;
}

.before_login_modal .modal-header {
    background-color: #000a4f !important;
}

.before_login_modal button, .before_login_modal button:hover {
    background-color: #000a4f !important;
}
/*    .companylist .companylist:hover, .companylist:active, .companylist:visited {
   
}*/


.modal-header h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0px;
}

.modal-content .close {
    width: 38px;
    position: absolute;
    height: 38px;
    background-color: #ea0a1c;
    color: #fff;
    opacity: 1;
    right: 0px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    border-top-right-radius: .2rem;
    font-size: 1.5rem;
    z-index: 9;
}

    .modal-content .close:hover {
        background-color: #ea0a1c;
        color: #fff;
        opacity: 1 !important;
    }

.modal-backdrop.show {
    opacity: 0;
}
/* MODAL END */

.btn-primary {
    background-color: var(--main-color) !important;
    border: 0px;
    padding: 7px 20px;
    font-size: 16px;
    color: #fff !important;
    cursor: pointer;
}

.btn-secondary {
    padding: 7px 20px;
}

body {
    background: #efefef;
    /*font-family: "Nunito", sans-serif;*/
    font-family: Calibri, Helvetica, sans-serif;
    line-height: 1.15;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}

.form-control {
    height: 30px;
    font-size: 13px !important;
    line-height: normal;
}

    .form-control:focus {
        border-color: #cbcbcb;
    }

.bigger_table {
    table-layout: fixed;
    word-break: break-word;
    width: 100%;
    margin: 0;
}

.bootbox .modal-header .btn-close:after {
    content: "\f00d";
    font-family: FontAwesome;
}

.bootbox .modal-header {
    padding: 0;
}

.bootbox .modal-footer {
    padding: 5px .75rem;
}

.table > thead > tr > th {
    /*padding: 8px;*/
    padding: 2px 15px;
    background-color: var(--btn-color);
    color: #fff;
    font-size: 13px;
}

table thead {
    background-color: #e1e8f2;
}

.table > :not(caption) > * > * {
    padding-top: 4px;
    font-size: 14px;
    padding-bottom: 4px;
}

.table-hover > tbody > tr:hover {
    --bs-table-accent-bg: rgb(179 179 179);
    color: #f3f3f3;
}

.tab-content > .tab-pane {
    padding: 10px 0;
}

.tab-pane-title {
    background: #8f8c8c;
    color: #fff;
    padding: 5px 10px 7px 10px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px;
}

.my-container {
    transition: 0.4s;
    padding-top: 3.5rem;
    margin-left: 48px;
}

.active-nav {
    margin-left: 0 !important;
}

.active-cont {
    margin-left: 190px;
}

.active-filter {
    /*margin-left: 225px;*/
    margin-left: 0;
    width: 100%;
}

#menu-btn {
    color: #a9a9a9;
    align-items: center;
    display: flex;
}

/*.modal-dialog {
    margin-top: 7em;
}

.modal-header button {
    background: #000;
}

.modal-footer {
    justify-content: space-between;
    padding: 1rem;
}*/

.modal-header .btn-close {
    width: 18px;
    position: absolute;
    height: 18px;
    background-color: #ea0a1c;
    color: #fff;
    opacity: 1;
    right: 0;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    border-top-right-radius: .3rem;
    font-size: 1.5rem;
    background-image: none;
}

.login_bg {
    background-image: url(../image/login_bg.jpg);
    background-size: cover;
    height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    /*display: flex;
    align-items: center;*/
    margin-bottom: 0 !important;
}

.LoginPage {
    padding: 5px 0;
    background: #fff;
    position: fixed;
    width: 100%;
    box-shadow: 0 .15rem 1.75rem #21283226 !important;
}

    .LoginPage .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: auto;
        margin-top: .125rem;
        right: 0;
    }

    .LoginPage .dropdown-menu li {
        border-bottom: 1px dashed #ccc;
    }

    .LoginPage .navbar-light .navbar-nav .nav-link {
        color: rgba(0, 0, 0, 1);
        font-size: 15px;
        text-transform: uppercase;
    }

    .LoginPage.navbar-light .navbar-nav .nav-link {
        color: rgba(0, 0, 0, .55);
        font-size: 15px;
        text-transform: uppercase;
        text-align: right;
    }

.login_frm {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1rem 1rem;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 27%;
    z-index: 99;
}

.LoginModal label {
    display: inline-block;
    font-size: 15px;
    margin-bottom: 5px;
}

.LoginModal .form-control {
    height: 32px;
    font-size: 14px;
}

.LoginModal i {
    color: #797979;
    font-size: 18px;
}

.LoginModal input[type=button] {
    height: 40px;
    margin: 10px auto;
    font-size: 18px;
    background: #e77817 !important;
    border: 1px solid #e77817 !important;
    color: #D8EDFC !important;
    display: block;
    text-transform: uppercase;
}

.logo {
    /*width: 130px;*/
    width: 200px;
    /* margin: auto;*/
    margin: 3px auto 0;
}

    .logo img {
        width: 100%;
    }

#menu-btn i.fa-bars {
    background: var(--btn-color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    /*margin-left: 5rem;*/
}

/*.login_alert {
    height: 25px;
}*/

.LoginModal .alert {
    padding: 2px 0;
    text-align: center;
    margin: 0;
}

.dropdown-menu {
    position: absolute !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #939393;
}

.buttons {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    min-width: 10rem;
    min-height: 10rem;
    margin: 4em auto 2em auto;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    /*border: 1px solid #a5a4a4;
    box-shadow: 0px 1px 7px -2px #5f5858;*/
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .buttons .accepting {
        background: #000;
        color: #fff;
    }

    .buttons .canceling {
        background: #d03f2b;
        color: #fff;
    }

.buttons__popup {
    border: none;
    padding: 0.7rem 5rem;
    border-radius: 8px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 25px;
}

.fancy-text-form {
    margin: 20px 0;
    position: relative;
}

    .fancy-text-form > input,
    .fancy-text-form > select {
        border-bottom-width: 2px;
        box-shadow: none;
        outline: none;
        padding: 15px 0px 5px;
        font-size: 14px;
    }

.white-blue-box {
    color: #4b5e67;
    border: 2px solid transparent;
    /*border-bottom-color: #0e78d2;*/
    border-bottom-color: #ccc;
    display: inline-block;
    transition: 0.15s ease-out all;
    font-weight: bold;
    font-size: 13px !important;
}

.fancy-text-form > input + label,
.fancy-text-form > select + label {
    position: absolute;
    color: #777;
    font-weight: bold;
    /*font-style: italic;*/
    left: 0px;
    top: 16%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.15s ease-out all;
    font-size: 13px;
}

.white-blue-box:focus + label,
.white-blue-select:focus + label,
input.focusFancy + label,
select.focusFancy + label {
    top: 0px;
    font-size: 12px;
    color: #746464;
}

.PWshowhide_icon {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 9;
}

    .PWshowhide_icon i {
        font-size: 20px;
        color: #494b50;
    }

.cool-button {
    position: relative;
    display: inline-block;
    padding: 1rem 6rem;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

    .cool-button::before, .cool-button::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        transition: 0.5s;
        mix-blend-mode: overlay;
    }

    .cool-button:hover::before, .cool-button:hover::after {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .cool-button::after {
        opacity: 0;
        transition: opacity 0.5s;
    }

    .cool-button:hover::after {
        opacity: 1;
        animation: shimmer 2s infinite;
    }

@keyframes shimmer {
    0% {
        background-position: -200% -200%;
    }

    100% {
        background-position: 200% 200%;
    }
}

/* Glowing effect */
.cool-button:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.5), 0 0 35px rgba(255, 255, 255, 0.3);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.5), 0 0 35px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, 0.7), 0 0 70px rgba(255, 255, 255, 0.5);
    }
}

/* Button 1 */
.btn-1 {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    animation: gradient 3s infinite alternate;
}

    .btn-1::before {
        background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
        clip-path: polygon(0 0, 100% 0, 50% 50%);
    }

    .btn-1::after {
        background: linear-gradient(135deg, #feb47b 0%, #ff7e5f 100%);
        clip-path: polygon(50% 50%, 100% 100%, 0 100%);
    }

/* Button 2 */
.btn-2 {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    animation: gradient 3s infinite alternate;
}

    .btn-2::before {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        clip-path: polygon(0 0, 100% 0, 50% 50%);
    }

    .btn-2::after {
        background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
        clip-path: polygon(50% 50%, 100% 100%, 0 100%);
    }

.header {
    padding: 5px 0;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    width: 100%;
    box-shadow: 0 2px 20px rgba(1, 41, 112, 0.1);
}

ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
}

    ul.menu li {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
        margin: 5px 7px;
        align-items: center;
        display: flex;
        justify-content: center;
        transition: all .5s ease-in-out;
        background: var(--btn-color);
    }

        ul.menu li a {
            text-decoration: none;
            color: var(--MenuFont);
            font-size: 16px;
        }

/* ul.menu li:hover {
            background: #e7e7e7;
        }*/

/*ul.menu li ul{
            display: none;
        }*/

/*ul.menu li ul {
            display: block;
            position: absolute;
            width: 270px;
            top: 45px;
            background: #fff;
            padding: 0;
            right: 0;
            border: 1px solid #d6d6d6;
            -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
        }

        ul.menu li ul li {
            background: none;
            border: 0;
            width: auto;
            height: auto;
            padding: 0;
            display: block;
        }

        ul.menu li ul li:hover {
            background: none;
        }*/

.profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-bottom: 0;
}

.icon_menu {
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 5px 2px;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: all .5s ease-in-out;
    background: #d6d6d6;
}

    .icon_menu a {
        text-decoration: none;
        color: #6c6c6c;
        color: #433f3d !important;
        font-size: 16px;
    }

.middle_sec {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    justify-content: center;
}

/*.menu_hdng {
    position: fixed;
    width: 100%;
    margin-top: -1px;
    z-index: 9;
    background-color: #d6d6d6 !important;
}*/

.menu_hdng {
    padding: 4px 0;
    /*margin-bottom: 7px;*/
    margin-bottom: 3px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}

    .menu_hdng h4 {
        margin-bottom: 0;
        border-bottom: 0;
        float: left;
        padding: 2px 15px;
        color: var(--MenuHead);
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
    }

/*.menu_hdng h4 {
        font-size: 14px;
    }*/

.content_wrp {
    /*padding-top: 10px;*/
    padding-top: 6px;
}

.content_wrp_long_height {
    padding-top: 100px;
}

.form_wrp {
    position: relative;
    border-radius: 6px;
    padding: 10px 12px;
    margin: 0 0 9px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    -webkit-box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}

.fields {
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

    .fields .input-field {
        display: flex;
        /*width: calc(100% / 3 - 15px);*/
        width: calc(100% / 4 - 15px);
        flex-direction: column;
        margin: 4px 0;
        position: relative;
    }

.row .input-field {
    position: relative;
}

.input-field label {
    font-size: 13px;
    font-weight: 500;
    color: #2e2e2e;
    vertical-align: top;
}

.input-field input, .input-field select, .input-field textarea {
    outline: none;
    font-size: 13px !important;
    font-weight: 400;
    color: #333;
    border-radius: 5px !important;
    border: 1px solid #ccc;
    padding: 0 15px !important;
    height: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10);
    margin: 3px 0 6px;
}

    .input-field input:is(:focus, :valid), .input-field select:is(:focus, :valid), .input-field textarea:is(:focus, :valid) {
        box-shadow: 0 3px 6px rgba(0,0,0,0.13);
    }

    .input-field input[type="date"] {
        color: #707070;
    }

        .input-field input[type="date"]:valid {
            color: #333;
        }

/*.ShowDV {
    display: none;
}

.menu li a:hover .ShowDV {
    display: block;
    color: green;
    font-size: 25px;
}*/

/*.ShowDV {
    top: 100%;
    left: 30%;
    margin-top: 10px;
    width: 40%;
    opacity: 0;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.4;
    visibility: hidden;
    pointer-events: none;
}

.DVIcon:hover + .ShowDV {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}*/


textarea.form-control {
    min-height: calc(2.5em + .75rem + 2px);
}

@media (max-width: 750px) {
    .fields .input-field {
        width: calc(100% / 2 - 15px);
    }
}

@media (max-width: 550px) {
    .fields .input-field {
        width: 100%;
    }
}

/*.authentication {
    width: 40px;
    height: 40px;
    background: #d6d6d6;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    margin-top: 12px;
    border: 2px solid #b4b4b4;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 2px 4px 1px #cfcfcf;
}

.authenticate_icon {
    width: 70%;
    margin-top: 1.2rem;
    float: right;
}*/

.authentication img {
    padding-top: 8px;
}

.accordion-button {
    /*padding: 5px 12px;*/
    padding: 5px 7px;
    font-size: 12px;
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        color: #343434;
        background-color: #e9ecef;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    }

    .accordion-button::after {
        background-size: 20px;
    }

.accordion-body {
    padding: 10px 10px;
}

.accordion-item {
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
}

.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
    position: relative;
}

    .wizard .nav-tabs:after {
        content: "";
        width: 80%;
        border-bottom: solid 2px #ccc;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        top: 38%;
        z-index: -1;
    }

    .wizard .nav-tabs .nav-item .nav-link {
        width: 30px;
        height: 33px;
        margin-bottom: 4%;
        background: #c9c8c8;
        border: 2px solid #9f9f9f;
        color: #585858;
    }

        .wizard .nav-tabs .nav-item .nav-link i {
            font-size: 17px;
        }

        .wizard .nav-tabs .nav-item .nav-link:hover {
            color: #333;
            border: 2px solid #333;
        }

        .wizard .nav-tabs .nav-item .nav-link.active {
            background: #e0e0e0;
            border: 2px solid #575656;
            color: #383736;
        }

        .wizard .nav-tabs .nav-item .nav-link:after {
            content: " ";
            position: absolute;
            left: 50%;
            transform: translate(-50%);
            opacity: 0;
            margin: 0 auto;
            bottom: 0px;
            border: 5px solid transparent;
            border-bottom-color: #0d6efd;
            transition: 0.1s ease-in-out;
        }

.nav-tabs .nav-item .nav-link.active:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 6px solid transparent;
    border-bottom-color: #383736;
}

.wizard .nav-tabs .nav-item .nav-link svg {
    font-size: 25px;
}

.sub_heading {
    position: relative;
    margin-top: 2rem;
}

    .sub_heading::after {
        position: absolute;
        bottom: -5px;
        content: '';
        background: #000;
        width: 50px;
        height: 1px;
    }

    .sub_heading::before {
        position: absolute;
        bottom: -2px;
        content: '';
        background: #000;
        width: 70px;
        height: 1px;
    }


.table_wrp {
    /*width: 100%;
    border-collapse: collapse;*/
    /*background-color: #fefefe;*/
    border-collapse: collapse;
    /*border-radius: 5px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    width: 100%;
    margin: 1rem 0;
    /*overflow: hidden;*/
    font-size: 13px;
    /*border: 1px solid #e3e3e3;*/
    border: 1px solid #746a6a;
}

.table i {
    font-size: 17px;
    color: #686868;
}

.table td,
.table th {
    /*padding: 6px 15px;*/
    padding: 1px 15px;
    border: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.5 !important;
}

.table th {
    /*background-color: #92c9e6;*/
    color: #000;
    /*border-right: 1px solid #fff;*/
    border-right: 1px solid #746a6a;
}

/*.table tbody tr:nth-child(even) {
    background-color: #d1d1d1;
}*/
.table tbody tr {
    background-color: #d1d1d1;
}

/*responsive*/

/*@media (max-width: 500px) {
    .table_wrp {
        padding: 1rem;
    }

    .table {
        margin-top: 3rem;
        overflow: visible;
    }

        .table tbody tr:nth-child(even) {
            background-color: #ffffff;
        }

        .table thead {
            display: none;
        }

        .table,
        .table tbody,
        .table tr,
        .table td {
            display: block;
            width: 100%;
        }

            .table tr {
                margin-bottom: 15px;
                border: 1px dashed #ccc;
                padding-bottom: 0;
                background: #ebebeb;
                border-bottom: 0;
            }

            .table td {
                padding-left: 0;
                text-align: left;
                position: relative;
                margin-bottom: 0;
                padding-top: 20px;
                padding-bottom: 10px;
                background: none !important;
            }

    .table-custom tbody td {
        border-right: 1px solid rgba(0, 0, 0, 0) !important;
        padding-left: 13px;
    }

    .table td .form-control {
        margin-top: 5px;
    }

    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 100%;
        padding-left: 13px;
        font-size: 15px;
        font-weight: bold;
        text-align: left;
        top: 0;
    }

    .table td i {
        text-align: center;
    }

    .table-responsive {
        max-height: 100%;
    }

    .CertificateCheck {
        text-align: left;
    }

    .middle_sec {
        display: none;
    }
}*/

/* Tooltip container */
.toolTip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;
    margin-top: 3rem;*/
}

    /* Tooltip text */
    .toolTip .tooltiptext {
        visibility: hidden;
        width: auto;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px 20px;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 50%;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Tooltip arrow */
        .toolTip .tooltiptext::after {
            content: "";
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
            transform: rotate(180deg);
        }

    /* Show the tooltip text when you mouse over the tooltip container */
    .toolTip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.disable_icon {
    cursor: not-allowed;
    opacity: 0.5;
}

.addMoreBtn {
    position: absolute;
    top: 0;
    right: 10px;
    color: #fff !important;
    font-size: 20px;
}

.previewImg {
    height: 50px;
    width: 100px;
    background: #d9d8d8;
    padding: 3px;
}

.uploadImg {
    gap: 1rem;
}

    .uploadImg .input-field {
        flex-basis: 500px;
    }

.img-thumbs {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin: 1.5rem 0;
    padding: 0.75rem;
    overflow: hidden;
}

.table-responsive .wrapper-thumb {
    height: auto;
}

.wrapper-thumb {
    position: relative;
    display: inline-block;
    margin: 0;
    height: 124px;
}

.img-preview-thumb {
    background: #fff;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0.125rem 0.125rem 0.0625rem rgba(0, 0, 0, 0.12);
    margin-right: 1rem;
    width: 100%;
    padding: 0.25rem;
    height: 100%;
    object-fit: cover;
}

.table_img {
    width: 75px;
    height: 50px;
}

    .table_img img {
        /*object-fit: fill;*/
        object-fit: contain;
    }

.remove-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .7rem;
    top: -8px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}


.column {
    float: left;
    width: 25%;
}

/* The Modal (background) */
/*#lightboxModal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}*/

    /* Modal Content */
    /*#lightboxModal .modal-content {*/
        /*position: relative;
        background-color: #fefefe;
        margin: auto;
        padding: 0;
        width: 90%;
        max-width: 1200px;*/
        /*position: relative;
        background-color: transparent;
        margin: auto;
        padding: 0;
        width: auto;
        max-width: fit-content;
    }*/

    /* The Close Button */
    /*#lightboxModal .close {*/
        /*color: white;
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;*/
        /*color: white;
        position: absolute;
        top: -13px;
        right: -11px;
        font-size: 25px;
        font-weight: bold;
        background: #000;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        line-height: 25px;
        text-align: center;
    }

        #lightboxModal .close:hover,
        #lightboxModal .close:focus {
            color: #999;
            text-decoration: none;
            cursor: pointer;
        }

    #lightboxModal i {
        font-size: 30px;
    }*/

.mySlides {
    height: 500px;
}

    .mySlides img {
        width: 100%;
        height: 100%;
        /*object-fit: cover;*/
        object-fit: contain;
    }

.mySlides {
    display: none;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
/*#lightboxModal .prev,
#lightboxModal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}*/

/* Position the "next button" to the right */
/*#lightboxModal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}*/

    /* On hover, add a black background color with a little bit see-through */
  /*  #lightboxModal .prev:hover,
    #lightboxModal .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }*/

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

img {
    margin-bottom: -4px;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.demo {
    opacity: 0.6;
}

    .active,
    .demo:hover {
        opacity: 1;
    }

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



.item_grid_pic {
}

@media (max-width: 767px) {
    .img-thumbs .carousel-inner .carousel-item > div {
        display: none;
    }

        .img-thumbs .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
}

.img-thumbs .carousel-inner .carousel-item.active,
.img-thumbs .carousel-inner .carousel-item-next,
.img-thumbs .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .img-thumbs .carousel-inner .carousel-item-end.active,
    .img-thumbs .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .img-thumbs .carousel-inner .carousel-item-start.active,
    .img-thumbs .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.img-thumbs .carousel-inner .carousel-item-end,
.img-thumbs .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.img-thumbs .carousel-inner {
    overflow: visible;
}

.img-thumbs .card {
    background-color: transparent;
    border: none;
    margin: 0 5px;
}

.input-field .chosen-container {
    width: 100% !important;
    position: relative;
    color: #333;
    border-radius: 5px;
    margin: 3px 0 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}

/*.table .chosen-container {
    position: absolute;
    display: block;
    color: #333;
    border-radius: 5px;
    margin: 3px 0 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}*/

.chosen-container-single .chosen-single {
    height: 30px;
}

.chosen-container-single .chosen-search input[type=text] {
    height: 25px;
}

.PrevnextBtn .prev, .PrevnextBtn .next {
    cursor: pointer;
    position: absolute;
    top: 40px;
    width: auto;
    padding: 0 10px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.PrevnextBtn .prev {
    left: -7px;
    top: 14rem;
}

.PrevnextBtn .next {
    right: -7px;
    top: 14rem;
}

.tab-content {
    /*padding-top: 2rem;*/
    margin-top: 0.5rem;
    /*padding: 0 2rem;*/
}

.search_icon {
    position: absolute;
    top: 15px;
    right: 10px;
}


.search_icon_with_label {
    position: absolute;
    top: 25%;
    right: 10px;
    font-size: 16px !important;
}

.table .search_icon_with_label {
    position: absolute;
    top: 18%;
    right: 10px;
    font-size: 16px !important;
}

.table .plus_icon {
    position: absolute;
    right: -9%;
    top: 6px;
    z-index: 9;
    cursor: pointer;
    font-size: 19px !important;
}

.table-custom {
    margin: 0;
    border: 1px solid #746a6a;
}

.table-bordered > :not(caption) > * {
    border-width: 0;
}

.table-custom thead th {
    background: #d6d6d6;
    text-align: center;
    position: sticky;
    top: -1px;
    z-index: 99;
    padding: 6px 15px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45) !important;
}

.table-custom thead tr.subrow {
    border-top: 1px solid #fff;
}

    .table-custom thead tr.subrow th {
        top: 22px;
    }

.table-custom tbody th, .table-custom tfoot th {
    bottom: -20px;
}

.table-custom tfoot tr.SAmount th {
    bottom: 85px;
    background-color: #fff;
    position: sticky;
    border-right: #fff;
}

.table-custom tfoot tr.DAmount th {
    bottom: 42px;
    background-color: #fff;
    position: sticky;
    border-right: #fff;
}

.table-custom tfoot tr.TAmount th {
    background-color: #fff;
    position: sticky;
    border-right: #fff;
}

.table-custom tbody th, .table-custom tfoot th {
    background: #ededed;
    text-align: center;
    position: sticky;
    bottom: -1px;
    z-index: 99 !important;
}

.table-custom tbody td {
    background: #fdfdfd;
    color: #626262 !important;
    /*border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;*/
    border-right: 1px solid rgba(0, 0, 0, 0.30);
    border-bottom: 1px solid rgba(0, 0, 0, 0.45) !important;
    font-size: 13px;
}

    .table-custom tbody tr:last-child td {
        border-bottom: 0px !important;
    }

.table tbody td a i {
    color: var(--MenuHead);
    font-size: 20px;
    cursor: pointer;
}

.table-custom tbody tr:hover td {
    background: none;
    /*cursor: pointer;*/
}

.table-custom tbody td:last-child, .table-custom thead th:last-child {
    border-right: 0 !important;
}

.EnquiryDetailModal .modal-dialog {
    height: 550px;
}

.EnquiryDetailModal .modal-dialog-scrollable .modal-content {
    overflow: visible;
}

.table-responsive {
    max-height: 43vh;
    /* max-height: 66vh;*/
}

.chosen-table {
    height: 400px;
}

.smart_search {
    position: absolute;
    z-index: 99;
    background: #fff;
    /*left: 7rem;*/
    padding: 10px 10px 5px;
    font-size: 14px;
    width: 100%;
    top: 0;
    border-radius: 8px;
    box-shadow: 1px 4px 6px 2px #e5e5e5;
}

.smt_search_text {
    cursor: pointer;
    padding: 4px 8px 4px;
    font-size: 13px;
}

    .smt_search_text:hover {
        background-color: #3875d7;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
        background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
        color: #fff;
    }

.enquiry_hdng {
    padding: 11px 0px 0 14px;
}

    .enquiry_hdng h4 {
        margin-top: 10px;
    }


/*.card {*/
   /* background-color: transparent;*/
    /*overflow: hidden;
}*/

.overflow_hidden {
    overflow: hidden;
}
.card-header {
    background-color: rgba(0, 0, 0, .05);
}

/*.nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
    .nav-tabs > li {
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .nav-tabs > li {
        margin-bottom: 10px !important;
        position: relative;
    }

.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
    right: 0;
}

.hvr-underline-from-left:before {
    bottom: -2px !important;
    background: #e77817 !important;
}

.nav-tabs > li.active > a {
    background: none !important;
    border: 0 !important;
    border-bottom: 2px solid #e77817 !important;
}

.nav-tabs > li > a {
    border: 0;
    height: 27px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 !important;
    text-decoration: none;
    color: #000;
}

    .nav-tabs > li > a i {
        padding-right: 5px;
        font-size: 14px;
    }*/

.submenu.dropdown-menu {
    min-width: 16rem;
    right: 0 !important;
    /* left: -95px !important; */
}

.chosen-container .chosen-results {
    text-align: left;
}

.chosen-container-single .chosen-single {
    text-align: left;
}

.frgtpassword a {
    color: #000;
    font-size: 15px;
    text-decoration: none;
}

.sampleQuantity {
    width: 70%;
    margin-top: -4px;
}

.SaveRestBtn {
    width: 80px;
}

.modal:nth-child(2n-1) {
    background: rgba(0,0,0,0.5);
    /*z-index: 1051;*/
    z-index: 1056;
}

.modal:nth-child(2n) {
    background: rgba(0,0,0,0.5);
}

.is-invalid .chosen-single {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}






/*.Profile-warm {
    float: right;
    width: 22%;
    position: relative;
    background-color: #fff;
    margin-right: 0px;
}

.profile {
    position: relative;
    margin-top: 0;
    float: left;
    width: 100%;
}

.dropdown_pro {
    float: left;
    float: left;
    width: 100%;
    position: relative;
}

.profile img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(1,41,112,0.8);
    cursor: pointer;
    float: left;
    margin-right: 10px;
    background-color: var(--main-color);
}
*/
.dropdown-content {
    display: none;
    position: absolute;
    /* min-width: 230px;*/
    min-width: 180px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 9;
    transition: all 2s;
    top: 40px;
    right: 0;
}

    .dropdown-content a {
        color: #000;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown-header {
    display: block;
    text-align: center;
}

.dropdown-content .dropdown-header {
    text-align: center;
    font-size: 14px;
    padding: 8px 7px;
    display: block;
    margin-bottom: 0;
    color: #6c757d;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}

    .dropdown-content .dropdown-header h6 {
        font-size: 14px;
        margin-bottom: 0;
        font-weight: 600;
        color: #444;
    }

    .dropdown-content .dropdown-header span {
        font-size: 12px;
    }

.dropdown_pro:hover .dropdown-content {
    display: block;
    /*width: 100%;*/
}

.profile ul {
    background-color: #fff;
    border-radius: 5px;
    padding: 8px;
    transition: all .5s;
    z-index: 9;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

    .profile ul::before {
        content: '';
        position: absolute;
        /*background-color: #fff;*/
        height: 10px;
        width: 10px;
        top: -7px;
        transform: rotate(45deg);
        right: 0;
    }

    .profile ul li {
        list-style: none;
        text-align: left;
        font-size: 15px;
        padding: 4px 5px;
        display: flex;
        align-items: center;
        transition: all .5s;
        cursor: pointer;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.175);
        width: auto;
        height: auto;
        background: transparent;
        margin: 0;
        color: #000;
        justify-content: left;
        /*line-height: 35px;*/
        line-height: 25px;
    }

        .profile ul li:hover {
            background-color: #eee;
        }

        .profile ul li i {
            margin-right: 7px;
            color: var(--MenuHead);
        }

.profile span {
    font-size: 14px;
    font-weight: 500;
}

.Profile-Notification {
    position: relative;
}

.profilepopup {
    border-bottom: none !important;
}

.Profile-Notification .badge-number {
    position: absolute;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
    top: 6px;
    right: -5px;
    background: #ff0000 !important;
}

.Profile-Notification .dropdown-content {
    min-width: 330px;
    top: 35px;
}

.Profile-Notification .profile ul {
    right: 91px;
    width: 300px;
    height: auto;
}

/*.dropdown-content .dropdown-header {
    text-align: center;
    font-size: 14px;
    padding: 8px 7px;
    display: block;
    margin-bottom: 0;
    color: #6c757d;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}*/

.Profile-Notification .profile .notification-item {
    display: flex;
    align-items: center;
    padding: 4px 7px;
    transition: 0.3s;
}

.color_theme {
    position: relative;
}

    .color_theme span {
        width: 30px;
        height: 30px;
        border: 1px solid black;
        border-radius: 50px;
        float: left;
        margin-right: 4px;
        margin-left: 4px;
    }

.Profile-Notification ul li:hover {
    background: transparent;
}



::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

.pollSlider-over {
    position: fixed;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    bottom: -100vh;
    height: 100vh;
    z-index: 1010;
    padding: 0px;
    margin: 0px;
    left: 0px;
    right: 0px;
}

.pollSlider {
    position: fixed;
    width: 100%;
    background: #fcfcfc;
    bottom: -70vh;
    height: 70vh;
    z-index: 1040;
    left: 0px;
}

#pollSlider-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 5px;
    background: #e77817;
    z-index: 999;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    color: #fff;
    right: 0px;
    cursor: pointer !important;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, .3);
}

.pollSlider-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: -30px;
    background: #011852;
    z-index: 1030;
    text-align: center;
    line-height: -50px;
    font-size: 16px;
    color: #fff;
    right: 8px;
    border-radius: 50%;
    cursor: pointer !important;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, .3);
}

    .pollSlider-button:after {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        background-color: var(--main-color);
        border-radius: 10px;
        cursor: pointer !important;
    }

#exampleModalCenter_ViewMessages .modal-dialog .scrollRemarks {
    height: 60vh;
}

.scrollRemarks {
    overflow: auto;
    border: 1px #ccc solid;
    padding: 10px;
}

.accordion-container {
    position: relative;
    height: auto;
}

.set {
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--main-color);
    border-radius: 8px;
    margin-bottom: 7px;
}

    .set > a {
        display: block;
        padding: 5px;
        text-decoration: none;
        color: #555;
        font-weight: 600;
        cursor: pointer;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

        .set > a i {
            float: right;
            margin-top: 8px;
            font-size: 18px;
            margin-right: 10px;
            color: #fff;
            background-color: var(--MenuHead);
        }

        .set > a.active {
            color: #fff;
            border-radius: 8px;
        }

.notification-accordian {
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--main-color);
    border-radius: 8px;
    margin-bottom: 7px;
}

    .notification-accordian > a {
        display: block;
        padding: 5px;
        text-decoration: none;
        color: #555;
        font-weight: 600;
        cursor: pointer;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

        .notification-accordian > a i {
            float: right;
            margin-top: 8px;
            font-size: 18px;
            margin-right: 10px;
            color: #fff;
            background-color: var(--MenuHead);
        }

        .notification-accordian > a.active {
            color: #fff;
            border-radius: 8px;
        }

.content {
    background-color: #fff;
    display: none;
}

.clsRoundTitle {
    width: 6%;
    float: left;
    margin: 0;
}

    .clsRoundTitle span {
        background-color: #ce0e0e;
        display: block;
        padding: 7px;
        text-align: center;
        color: #fff;
        font-size: 13px;
        border-radius: 100px;
        width: 33px;
        height: 33px;
        line-height: 20px;
        font-weight: 800;
    }

.clsRoundicon {
    width: 4%;
    float: right;
    margin: 0;
}

    .clsRoundicon span {
        background-color: var(--MenuHead);
        display: block;
        text-align: center;
        color: #fff;
        border-radius: 100px;
        width: 29px;
        height: 29px;
        line-height: 20px;
        font-weight: 800;
    }



.commentBox.clsList {
    width: 86%;
    float: left;
    background-color: transparent;
    padding: 0;
    margin-top: 7px;
    text-align: left;
}

.commentBox h4 {
    font-size: 12px;
    margin: 0 0 5px 0;
    width: 100%;
    float: left;
}

    .commentBox h4 .clsDpt {
        width: 70%;
        float: left;
        text-align: left;
        color: #272929;
        font-weight: 600;
    }


/*chat history*/



.chat .chat-history {
    padding: 15px 10px 10px 10px;
    overflow-y: scroll;
    /*height: 575px;*/
}

    .chat .chat-history .message-data {
        margin-bottom: 12px;
    }


    .chat .chat-history .message-data-name {
        font-size: 12px;
        color: #272929;
        font-weight: 600;
        font-style: italic;
    }

    .chat .chat-history .message-data-time {
        color: #515257;
        padding-left: 6px;
        font-size: 12px;
    }

    .chat .chat-history .message {
        color: #272929;
        padding: 10px;
        line-height: 18px;
        font-weight: 400;
        font-size: 14px;
        border-radius: 5px;
        margin-bottom: 12px;
        width: 98%;
        position: relative;
    }

        .chat .chat-history .message:after {
            bottom: 100%;
            left: 7%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-bottom-color: #e8e8e8;
            border-width: 10px;
            margin-left: -10px;
        }

    .chat .chat-history .my-message {
        background: #e8e8e8;
    }

    .chat .chat-history .other-message {
        background: #f4f4f4;
    }

        .chat .chat-history .other-message:after {
            border-bottom-color: #f4f4f4;
            left: 98%;
        }

.chat .chat-message {
    padding: 10px;
}


.online, .offline, .me {
    margin-right: 3px;
    font-size: 10px;
}

.online {
    color: #ce0e0e;
}

.offline {
    color: #444753;
}

.me {
    color: #444753;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.float-right {
    float: right;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clsRoundTitle span {
    background-color: var(--MenuHead);
}

.commentBox h4 .clsDpt {
    width: 70%;
    float: left;
    text-align: left;
    color: #fff;
    font-weight: 600;
}

.commentBox h4 .clsDate {
    color: #fff;
}

.hr {
    border-bottom: 1px dashed rgba(106, 113, 133, 0.5);
}

/*#field_div {
    max-height: 275px;
    margin-bottom: 0;
    overflow-y: auto;
    position: relative;
}*/

.addMinusIcon i {
    color: var(--MenuHead) !important;
    font-size: 24px;
    cursor: pointer;
}

.Tableplusicon i {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.note_btn {
    padding: 1px 20px;
}

.note_badge {
    position: absolute;
    top: -4px;
    right: 12px;
    font-size: 13px;
    background: #6c757d !important;
}

.list_search_icon button {
    padding: 7px 13px;
    margin-right: 10px;
}

    .list_search_icon button:last-child {
        margin-right: 0;
    }

.responsive-left {
    max-height: 68vh;
    margin-bottom: 0;
    overflow-y: auto;
    position: relative;
    overflow-x: hidden;
}

.control-label {
    width: 34%;
    float: left;
    line-height: 18px;
    color: #888888;
    font-size: 14px;
}

.RadioSampleProduct .form-check-inline {
    min-height: auto;
}

.RadioSampleProduct .form-check-input[type=radio] {
    margin-top: 1px;
}

.RadioSampleProduct .form-check-label {
    font-size: 13px;
    font-weight: bold;
}

.makeOfferheader {
    background-color: #fff;
    padding: 6px 0 0 4px;
    border-bottom: 1px dashed rgba(106, 113, 133, 0.5);
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.sub_titel {
    color: var(--MenuHead);
    font-size: 16px;
    /*font-weight: 600;*/
}

.sppes {
    position: absolute;
    top: 10px;
    right: -19px;
    color: #a7a7a7;
}

.HalfDVsppes {
    position: absolute;
    top: 10px;
    right: 6px;
    color: #a7a7a7;
}

.form__div {
    position: relative;
    height: 52px;
    margin-bottom: 0rem;
}

.form__label__select {
    position: absolute;
    padding: 0 0.25rem;
    background-color: #fff;
    transition: 0.3s;
    top: -0.9rem;
    left: 0.8rem;
    color: #ababab;
    font-size: 16px;
    font-weight: 500;
    z-index: 10;
}

.form__select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    border: 2px solid #c5c5c5;
    border-radius: 0.5rem;
    outline: none;
    padding: 1rem 1rem 0.5rem 1rem;
    background: none;
    z-index: 1;
    color: #000;
}

.form__input {
    border: 1px solid #ccc;
    width: 100%;
    color: #000;
    font-weight: normal;
    padding-left: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 100%;
    background: transparent;
}

.form__label {
    top: 4px;
    position: absolute;
    left: 6px;
    color: #ababbe;
}

.color-panel .palette-color-picker-button {
    position: absolute;
    left: 60px;
    width: 23px !important;
    height: 20px !important;
}

.color-panel input {
    /*padding-left: 57px !important;*/
    height: 30px;
}

.OrDv {
    flex: 0 0 auto;
    width: 0%;
    text-align: center;
    padding: 0;
    position: relative;
}

    .OrDv div {
        height: 100%;
        width: 3px;
        margin: auto;
    }

    .OrDv h6 {
        background: #fff;
        font-size: 12px;
        text-align: center;
        padding: 6px 0;
        position: absolute;
        top: 45%;
        left: -9px;
        right: 0;
        width: 25px;
    }

.formInput .form-check-input {
    margin: 7px;
}

.ConvertCancelBtn {
    width: 100px;
}

.AccountContactWrp .accordion-button {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
}

.RadioSampleProduct {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
    top: 7px;
}

.palate_table thead th {
    z-index: 999 !important;
}

.productdesc {
    font-size: 11px;
    line-height: 13px;
    vertical-align: top;
}

/*.image-description {
    background-color: #707070;
    color: black;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

    .image-description label {
        color: #fff;
    }*/

.image_description {
    width: 700px;
    height: 400px;
    display: block;
    transition: box-shadow 0.3s;
    border: 1px solid #F8F8F8;
    background-color: #F8F8F8;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}

    .image_description:hover {
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
        -moz-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
        -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
    }

.image_block {
    float: left;
    margin: 0;
    width: 50%;
    height: 100%;
}

    .image_block img {
        width: 100% !important;
        height: 100% !important;
    }

.description_block {
    float: left;
    width: 50%;
    margin: 0;
    padding: 20px 15px;
    display: block;
}

.title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.image_content {
    margin: 0 0 20px 0;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 20px;
    height: 320px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    background: none;
    overflow-y: auto;
}

.labels span {
    float: left;
    color: green;
    font-weight: bold;
    cursor: pointer;
}


.labels a {
    color: red;
    float: right;
    font-weight: bold;
    text-decoration: none;
}

.table-responsive#divPrintReportEnq {
    max-height: 60vh;
}

#CompanyModal .modal-dialog {
    width: 425px;
}

.Atndees_hdng {
    font-size: 15px;
    padding: 0 0 0 15px;
    text-align: left;
}
/*.switches-container {
    width: 7rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--switches-bg-color);
    line-height: 1.8rem;
    border-radius: 3rem;
    height: 30px;
}

    .switches-container input {
        visibility: hidden;
        position: absolute;
        top: 0;
    }

    .switches-container label {
        width: 50%;
        padding: 0;
        margin: 0;
        text-align: center;
        cursor: pointer;
        color: var(--switches-label-color);
        font-size: 12px;
        font-weight: bold;
    }

    .switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
        transform: translateX(0%);
    }

.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);*/
/* transition: transform 1s; */
/*}

.switch {
    border-radius: 3rem;
    background: var(--switch-bg-color);
    height: 100%;
}*/
.cgs_fps_radio .form-check-label {
    font-size: 14px;
    margin: 0 0 0 17px;
}

.cost_tab_content .input-group-text {
    background: none;
    border: 0;
    /*font-weight: bold;*/
}


:root {
    --switches-bg-color: #9d9d9d;
    --switches-label-color: white;
    --switch-bg-color: white;
    --switch-text-color: #ff451b;
}

.cgs_fps_radio {
    margin-top: -6px;
}

.switches-container {
    width: 7rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--switches-bg-color);
    line-height: 1.8rem;
    border-radius: 3rem;
    height: 30px;
}

    /* input (radio) for toggling. hidden - use labels for clicking on */
    .switches-container input {
        visibility: hidden;
        position: absolute;
        top: 0;
    }

    /* labels for the input (radio) boxes - something to click on */
    .switches-container label {
        width: 50%;
        padding: 0;
        margin: 0;
        text-align: center;
        cursor: pointer;
        color: var(--switches-label-color);
        font-size: 12px;
        font-weight: bold;
        line-height: 30px;
    }

/* switch highlighters wrapper (sliding left / right) 
    - need wrapper to enable the even margins around the highlight box
*/
.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);
    /* transition: transform 1s; */
}

/* switch box highlighter */
.switch {
    border-radius: 3rem;
    background: var(--switch-bg-color);
    height: 100%;
}

    /* switch box labels
    - default setup
    - toggle afterwards based on radio:checked status 
*/
    .switch div {
        width: 100%;
        text-align: center;
        opacity: 0;
        display: block;
        color: var(--switch-text-color);
        transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
        will-change: opacity;
        position: absolute;
        top: 2px;
        left: 0;
        font-size: 12px;
        font-weight: bold;
    }

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
    transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
    transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
    color: #007bff;
}


.cs-img-preview-thumb {
    box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.1);
    margin-right: 0;
    margin-top: -5px;
    object-fit: fill;
}

.pollSliderWrap {
    padding: 15px 15px 30px 15px;
}

#btntreatmentinfo, #btncomponent {
    padding: 7px 14px;
    font-size: 15px;
    margin-left: 10px;
}

.CertificateCheck {
    text-align: center;
}

.info_qus {
    font-size: 20px;
    color: #000 !important;
    line-height: 34px;
}

/*.dt-search {
    position: absolute;
    z-index: 99999;
    right: 20px;
    top: 14px;
    width: 100%;
    background: #fcfcfc;
    display: flex;
    justify-content: end;
    padding-bottom: 10px;
}*/

.dt-search {
    position: absolute;
    z-index: 99;
    top: -40px;
    width: 100%;
    display: flex;
    justify-content: end;
    padding-bottom: 10px;
    left: 0;
    right: 0;
}

.MasterList .dt-search {
    position: absolute;
    z-index: 1;
    top: -40px;
    width: 100%;
    display: flex;
    justify-content: start;
    padding-bottom: 10px;
    left: 0;
    right: 0;
}

.dt-search label {
    float: left;
    line-height: 30px;
}

.dt-search input {
    float: right;
    /*width: 27%;*/
    width: 50%;
    margin-left: 10px;
}

#modalgoogleTranslate textarea::placeholder {
    font-size: 16px;
}

.lead_leftPnl {
    /*min-height: 81vh;*/
    height: 68vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

#ModalCenter_Logout .modal-dialog {
    width: 425px;
}

.ssloader img {
    width: 25%;
}

.edit_table_responsive {
    height: 51vh;
    overflow-y: scroll;
    margin-top: 39px;
}

.btnloadmore {
    float: left;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
}

.dt-paging {
    float: right;
    margin-top: 10px;
    position: absolute;
    bottom: -4px;
    right: 0;
}

.editTblimgthumb tbody tr td .wrapper-thumb {
    height: 57px;
}

#colorPicker {
    position: absolute;
    top: 3px;
    left: 94px;
    z-index: 9;
    width: 26px;
    height: 23px;
}

/*#txtHexValue {
    padding-left: 44px;
}*/

#divtradeshowlist {
    margin-top: -37px;
}

.form-check {
    margin-top: 7px;
}

.form-check-input {
    margin-top: 1px;
    width: 1.5em;
    height: 1.5em;
}

.table .form-check-input {
    margin-top: 2px;
    width: 1.2em;
    height: 1.2em;
}

.form-check-label {
    margin-top: 3px;
    margin-left: 5px;
    font-size: 13px;
}

.access_right_table {
    max-height: 348px;
}

.chosen-container-role-wrap {
    width: 83%;
}

.chosen-container-wrap {
    width: 68%;
}

.chosen-container {
    width: 100% !important;
}

.txtLowercase {
    text-transform: lowercase;
}

#ModalForgot .modal-dialog {
    width: 410px;
}

#btnClientFPSendOTP {
    font-size: 14px;
    padding: 4px 15px;
}

#ModalForgot label {
    padding-bottom: 5px;
}

.createproductionorderlist.table-custom tbody td {
    vertical-align: middle;
}

#NoteappModal.modal {
    z-index: 1060;
}

#Prospectlist.modal, #Leadnotelist.modal, #Merchantlist.modal, #NoteCustomerlist.modal {
    z-index: 1061;
}

.TblProductInfoImg {
    width: 70px;
    height: 40px;
    float: left;
    margin-right: 40px;
    margin-bottom: 10px;
}

    .TblProductInfoImg img {
        object-fit: contain;
    }

.ApproveLeadDtl.modal {
    z-index: 1055;
}

.TblPrint {
    position: absolute;
    z-index: 99999999;
    top: 10px;
    width: 5%;
}

#NotePrintModal, #Customernotelist {
    z-index: 1060;
}

.chk_same_as_mob {
    padding-top: .5rem !important;
}

    .chk_same_as_mob span {
        vertical-align: middle;
    }

.remainCHR {
    color: #4a4a4a;
    text-align: center;
    padding: 3px 0;
    margin: 0;
}

.pl-30 {
    padding-left: 30px;
}

.hdng_border {
    margin-bottom: 16px;
    margin-top: 6px;
    width: 66%;
    border-top: 1px solid #ccc;
}

    .hdng_border h5 {
        position: absolute;
        top: -13px;
        background: #fff;
        width: 140px;
    }

.col-lg-3 .role_chosen_dv {
    width: 276px;
}

    .col-lg-3 .role_chosen_dv .chosen-container-role-wrap {
        width: 100%;
    }

.col-md-4 .role_chosen_dv {
    width: 231px;
}

    .col-md-4 .role_chosen_dv .chosen-container-role-wrap {
        width: 100%;
    }

.inputgrplblmap {
    width: 140px;
}

#Printlist.modal {
    z-index: 1055;
}

.manageLeadNoteBtns {
    list-style: none;
    padding-right: 15px;
    margin: 0;
}

    .manageLeadNoteBtns .dropdown-content {
        top: 26px;
        z-index: 99;
    }

#MLActivityPrintModal.modal {
    z-index: 1055;
}

#MLOpLeadListModal.modal {
    z-index: 1055;
}

#MLOpLeadListCloseModal.modal {
    z-index: 1055;
}

.mt_40 {
    margin-top: 40px !important;
}

.required-asterisk {
    position: relative;
}

    .required-asterisk::after {
        content: "*";
        color: red;
        font-size: 15px;
        position: absolute;
        right: 0px;
        /*top: 7px;*/
        top: 1px;
    }


.requiredAsterisk {
    color: red;
    font-size: 13px;
    position: relative;
    margin-left: 3px;
}

.openMaster .search_icon {
    right: 9%;
}

.mastermodalcontent {
    background-color: #efefef !important;
}

.openMasterplusicon {
    position: absolute;
    right: 1%;
    top: 6px;
    z-index: 9;
    cursor: pointer;
    font-size: 16px;
}

.standard ul li {
    float: left;
    list-style: none;
}

    .standard ul li a {
        /*padding: 7px 25px 5px; middle alignment*/
        padding: 7px 30px 5px 9px;
        display: inline-block;
        border-radius: 3px 3px 0px 0px;
        background: #e1e1e1;
        font-size: 13px;
        font-weight: normal;
        color: #4c4c4c;
        transition: all linear 0.15s;
        text-decoration: none;
        border-left: 1px solid #c3b9b9;
        border-right: 1px solid #c3b9b9;
        border-top: 1px solid #c3b9b9;
    }

        .standard ul li a:hover {
            /*background: var(--main-color);*/
            background: var(--btn-color);
            text-decoration: none;
            color: #ffffff;
        }


    .standard ul li.active a, .standard ul li.active a:hover {
        background-color: var(--btn-color);
        color: #ffffff;
    }


    .standard ul li.active a {
        background-color: var(--btn-color);
        color: #fff;
        font-weight: bold;
        /*border-left: 2px solid var(--Bordercolor) !important;
        border-right: 2px solid var(--Bordercolor) !important;
        border-top: 2px solid var(--Bordercolor) !important;*/
        border-left: 2px solid #928989 !important;
        border-right: 2px solid #928989 !important;
        border-top: 2px solid #928989 !important;
    }

.tab {
    display: none;
}

    .tab.active {
        display: block;
    }

.plus_icon {
    position: absolute;
    right: -9%;
    top: 6px;
    z-index: 9;
    cursor: pointer;
    font-size: 19px !important;
}

.tab-links:after {
    display: block;
    clear: both;
    content: '';
}

.btn_required-asterisk {
    position: relative;
}

    .btn_required-asterisk::after {
        content: "*";
        color: red;
        font-size: 15px;
        position: absolute;
        right: 4px;
        top: 10px;
    }

.form-check-input:checked {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
}


.btn-reset, .btn-reset:hover, .btn-reset:active, .btn-reset:visited {
    /*  background-color: #939292 !important;
    border: 1px solid #060606 !important; #7a7a7a !important;*/
    background-color: var(--BtnResetOrange);
    color: #ffffff;
}

.AddBtn {
    top: -44px;
    right: 0;
    z-index: 9;
}


.filterdiv {
    display: flex;
    flex-direction: column;
    /*min-height: 100%;*/
    align-items: center;
    justify-content: center;
    margin: auto;
    /*max-width: 350px;*/
}

* {
    box-sizing: border-box;
}

.filterdiv > details {
    width: 100%;
    /*margin-bottom: 10px;*/
}

    .filterdiv > details summary {
        color: #000;
        padding: 8px;
        border: 1px solid #c7d3df;
        /*border-radius: 3px;*/
    }

        .filterdiv > details summary::-webkit-details-marker {
            margin-right: 14px;
        }

    .filterdiv > details > details {
        margin: 5px 0;
        margin-left: 15px;
        position: relative;
    }

        .filterdiv > details > details::after {
            content: "";
            position: absolute;
            top: -5px;
            left: -10px;
            width: 1px;
            height: calc(36px + 10px);
            background-color: #ecf2f7;
        }

        .filterdiv > details > details:last-child::after {
            height: calc(36px / 2 + 5px);
        }

        .filterdiv > details > details::before {
            content: "";
            position: absolute;
            top: calc(36px / 2);
            left: -10px;
            width: 8px;
            height: 1px;
            background-color: #c7d3df;
        }

        .filterdiv > details > details[open]:not(:last-child)::after {
            height: calc(100% + 5px);
        }

        .filterdiv > details > details summary {
            color: #000;
            padding: 8px;
            border-radius: 3px;
        }

            .filterdiv > details > details summary::-webkit-details-marker {
                margin-right: 14px;
            }

        .filterdiv > details > details > details {
            margin: 5px 0;
            margin-left: 15px;
            position: relative;
        }

            .filterdiv > details > details > details::after {
                content: "";
                position: absolute;
                top: -5px;
                left: -10px;
                width: 1px;
                height: calc(28px + 10px);
                background-color: #c7d3df;
            }

            .filterdiv > details > details > details:last-child::after {
                height: calc(28px / 2 + 5px);
            }

            .filterdiv > details > details > details::before {
                content: "";
                position: absolute;
                top: calc(28px / 2);
                left: -10px;
                width: 8px;
                height: 1px;
                background-color: #c7d3df;
            }

            .filterdiv > details > details > details[open]:not(:last-child)::after {
                height: calc(100% + 5px);
            }

            .filterdiv > details > details > details summary {
                margin: 5px 0;
                padding: 5px 10px;
                border: 1px solid #c7d3df;
                border-radius: 3px;
                color: #545f69;
                position: relative;
            }

                .filterdiv > details > details > details summary span {
                    color: #041320;
                }

.filterdiv ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.filterdiv li {
    margin: 5px 0;
    padding: 5px 10px;
    border: 1px solid #c7d3df;
    border-radius: 3px;
    color: #545f69;
    position: relative;
    margin-left: 15px;
    position: relative;
}

    .filterdiv li span {
        color: #041320;
    }

    .filterdiv li::after {
        content: "";
        position: absolute;
        top: -5px;
        left: -10px;
        width: 1px;
        height: calc(28px + 10px);
        background-color: #c7d3df;
    }

    .filterdiv li:last-child::after {
        height: calc(28px / 2 + 5px);
    }

    .filterdiv li::before {
        content: "";
        position: absolute;
        top: calc(28px / 2);
        left: -10px;
        width: 8px;
        height: 1px;
        background-color: #c7d3df;
    }

    .filterdiv li[open]:not(:last-child)::after {
        height: calc(100% + 5px);
    }

.filterheading {
    padding: 2px;
    /* border: 1px solid #c7d3df; */
    /* border-radius: 3px; */
    margin-bottom: 0px;
}

    .filterheading h6 {
        color: #000;
        /*font-weight: bold;*/
    }

    .filterheading .note_btn {
        padding: 1px 15px;
    }

.filterdiv .form-check {
    margin-top: 0;
    display: inline-block;
    min-height: auto;
}

.FilterAccordion {
    border-bottom: 1px solid #ccc !important;
}

    .FilterAccordion .accordion-item {
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

        .FilterAccordion .accordion-item button {
            background: transparent;
            /*padding-top: 7px;*/
            /*padding-bottom: 7px;*/
            padding-top: 4px;
            padding-bottom: 0;
        }

            .FilterAccordion .accordion-item button:focus {
                box-shadow: none;
            }

        .FilterAccordion .accordion-item .accordion-button::after {
            background-size: 17px;
            filter: brightness(0);
        }

    .FilterAccordion #SubAccordion .accordion-item .accordion-button::after {
        margin-right: -3px;
    }

    .FilterAccordion .accordion-item .accordion-button:not(.collapsed) {
        box-shadow: none;
    }

    .FilterAccordion .accordion-body {
        /*padding: 0px 12px 0px 25px;*/
        padding: 0px 12px 0px 15px;
    }

        .FilterAccordion .accordion-body .form-check {
            margin-top: 3px;
            margin-bottom: 0;
        }

    .FilterAccordion .form-check .form-check-input {
        margin-top: 4px;
        width: 1.2em;
        height: 1.2em;
    }

    .FilterAccordion h2 .form-check .form-check-input {
        margin-top: 4px;
        width: 1.2em;
        height: 1.2em;
    }

.w-71 {
    width: 60px;
    padding: 2px 0;
}

.ml-18 {
    margin-left: -18px;
}

.page-link {
    color: var(--btn-color);
}

    .page-link:hover {
        color: var(--btn-color);
        background-color: #d1d1d1;
    }

    .page-link:focus {
        background: none;
        box-shadow: none;
        color: var(--btn-color);
    }

.subfrom-check {
    padding: 0px 12px 0px 30px;
}

.filter_scroll {
    max-height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.LeadListFormWrp {
    min-height: 530px;
}

.italic {
    font-style: italic;
}

.btnfiltercollapsed {
    /*color: var(--btn-color);*/
    color: #000;
    font-size: 24px;
    line-height: 0px !important;
    margin-top: -9px;
    font-weight: 600;
    padding: 0 7px 0 0;
    background: none;
    border: 0;
    /*margin-right: 28px !important;*/
}

    .btnfiltercollapsed:hover {
        /* color: var(--MenuHead);*/
        color: #000;
    }

#MD_17 .menu_icon i {
    color: #eb0303;
    font-size: 15px;
}

.input-group-text {
   /* background-color: var(--main-color);
    color: #fff;*/
    background-color: transparent;
    color: #212529;
    font-weight:bold;
    align-items: flex-start;
}

#loginBox .input-group-text {
    color: #212529;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
}

.before_login_modal .input-group-text {
    color: #212529;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fff;
    opacity: 1;
    cursor: not-allowed;
}

#tblleadentrydtl_wrapper .dt-search {
    display: none;
}

#tblcataloguedtl_wrapper .dt-search {
    display: none;
}

#UserCustomerNoteList.modal {
    z-index: 1060;
}

#UserMerchantlist.modal {
    z-index: 1065;
}

.successicon {
    margin-right: 7px;
    height: 25px;
    vertical-align: top;
}

.bootbox button:focus {
    background-color: var(--btn-color);
}

.bootbox .btn-secondary:focus {
    background-color: #6c757d;
}

.bootbox-body {
    font-size: 18px;
    vertical-align: middle;
    display: flex
}

.CatalogueImg .img-preview-thumb {
    box-shadow: none;
    margin-right: 1rem;
    padding: 0;
    object-fit: contain;
}

.CatalogueImg .wrapper-thumb {
    /*background: #fff;*/
    text-align: center;
}

.CatalogueImg .remove-btn {
    font-size: 14px;
    width: 20px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0px 1px 3px 0px #cdcdcd;
}

.CatalogueImg .img-preview-thumb {
    box-shadow: none;
    margin-right: 1rem;
    padding: 0;
}

.CatalogueImg .wrapper-thumb {
    height: 184px;
}

.CatalogueImg .remove-btn {
    font-size: 14px;
    width: 20px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0px 1px 3px 0px #cdcdcd;
}

.CatalogueImg .carousel-item {
    display: block;
    float: none;
    margin-bottom: 10px;
}

.catelog-slider .carousel-control-next-icon, .catelog-slider .carousel-control-prev-icon {
    filter: invert(100%);
}

input::placeholder {
    color: #212529;
}

.catelogEditor {
    background-color: #E7E9EB;
    padding-bottom: 20px;
}

.TopEditiorIcon {
    padding: 20px 15px 10px;
}

    .TopEditiorIcon ul {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0;
    }

        .TopEditiorIcon ul li {
            margin-right: 20px;
        }

            .TopEditiorIcon ul li a img {
                width: 25px;
            }

.EditorArea {
    background-color: #fff;
    padding: 20px 16px;
    min-height: 490px;
    box-shadow: 0px 2px 5px 0px #adadad;
}

#ArtWrkUploadImageModal.modal {
    z-index: 1056;
}

#MLMerchantlist.modal {
    z-index: 1056;
}

.UCRoleWrap {
    width: 84%;
}

.UCDesignationWrap {
    width: 74%;
}

.UCUserUnder {
    width: 78%;
}

.text-white {
    color: #fff !important;
}

.btntrash {
    width: 30px;
    height: 30px;
    padding: 0;
    position: absolute;
    right: 0;
    border-radius: 0;
}

.GInput {
    width: 94%;
    float: left;
}

.GIcon {
    width: 6%;
    margin-top: 4px;
}

    .GIcon img {
        width: 45%;
    }

#tblbagcomponents span, #tblbagfabrication span {
    line-height: 27px;
}

#divcomponent .table-responsive {
    max-height: 40vh;
}

#fieldTreatdiv .table-custom tbody td, #divtreatmentinfo .table-custom tbody td, #fieldFabricdiv .table-custom tbody td, #tblfabricationDetails .table-custom tbody td, #fabricationdiv .table-custom tbody td, #fieldNonFabricdiv .table-custom tbody td, #packingitemdiv .table-custom tbody td, .TblBagCon.table-custom tbody td, .MaterialTbl.table-custom tbody td, #tblLeadProdDtlsexprt .table-custom tbody td, #tblLeadProdDtls .table-custom tbody td, #tblSDIItemInformation.table-custom tbody td {
    padding-top: 5px;
    padding-bottom: 5px;
}

.wid-94 {
    width: 95%;
}

.right-4 {
    right: -5%
}

.f-16 {
    font-size: 16px !important;
}

.f-19 {
    font-size: 19px !important;
}

.MT-1{
    margin-top:1px;
}

.ProInfoImgWrp {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    float: left;
    border: 1px solid #ccc;
}

    .ProInfoImgWrp img {
        width: 100%;
        height: 100%;
    }

.TwoRowFooter {
    background: #ededed;
    position: sticky;
    bottom: 22px;
    z-index: 99 !important;
    border-right: 0;
}

.CSProImg {
    height: 160px;
}

.CSProImg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
.MobCountCode {
    width: 75px;
}
.MobCountCode ul.chosen-results li {
        float: none;
    }
.form-check-input:focus {
    border-color: #bfbfbf;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    box-shadow: none !important;
}
.input-group-text {
    line-height: 1.4;
}

.pl-110 {
    padding-left: 110px;
}
#CatalogueproductImageModal {
    z-index: 1060;
}

.catalogueimage {
    position: absolute;
    top: 0;
    right: 0;
}

.AlbumMarketverChosenwrap {
    width: 216px;
}

.AlbumUploadFile {
    border-top-right-radius: .2rem !important;
    border-bottom-right-radius: .2rem !important;
}

.AlbumProductverChosenwrap {
    width: 214px;
}
.btn-table-custom-loadmore {
    padding: 0px;
    font-size: 10px;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    color: var(--btn-color);
    font-weight: 800;
}
.modalTblWithLoader tfoot tr {
    border: 1px solid rgba(0, 0, 0, 0.45) !important;
}

#btnTradeLoadMore {
    padding: 5px 5px 5px 0;
    font-size: 15px;
}

.leadlist_overflow{
    overflow-x: auto;
    overflow-y: hidden;
}

.tabNo {
    width: 17px;
    height: 17px;
    color: #4c4c4c;
    border: 1px solid #4c4c4c;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-size: 11px;
    margin-right: 5px;
    font-weight: normal;
}
.tabNum1 {
    width: 17px;
    height: 17px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-size: 11px;
    margin-right: 5px;
    font-weight: normal;
}
.tabNum {
    width: 17px;
    height: 17px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-size: 11px;
    margin-right: 5px;
    font-weight: normal;
    padding: 0 0 0 15px;
}
.standard ul li.active a .tabNo {
    color: #fff;
    border: 1px solid #fff;
}

.standard ul li a:hover .tabNo {
    color: #fff;
    border: 1px solid #fff;
}

.table-fabrication {
    max-height: 30vh !important;
}

#tblleadentrydtl th {
    position:static !important;
}

.CountonImgTop {
    width: 14px;
    height: 14px;
    padding: 0;
    position: absolute;
    left: 5px;
    border-radius: 0;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid #000;
    border-radius: 50%;
    line-height: 6px;
    top: 4px;
}

.CatTemplate.CatalogueImg .wrapper-thumb {
    background: #f2f2f2;
}

    .CatTemplate.CatalogueImg .wrapper-thumb img {
        background: transparent;
    }

.AlbumHdng{
    position: relative;
}

    .AlbumHdng:before {
        content: '';
        position: absolute;
        bottom: -10px;
        border: 1px solid #000;
        width: 30px;
    }

.proDtl {
    list-style: none;
    padding: 0;
}

    .proDtl li {
        margin-bottom: 1.1rem;
    }

    .proDtl li h6, .proDtl li p {
        margin-bottom: 0;
    }

    .proDtl li hr {
        margin: 5px 0;
    }

.CatalogueAlbumImg {
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 436px;
}
.CatalogueImgmodelcheck {
    width: 15px;
    height: 15px;
    padding: 0;
    position: absolute;
    right: -1px;
    top: -2px;
}

.ProStageRightPnlHdng {
    text-transform: uppercase;
    color: #e89cae;
    font-weight: bold;
}
.CatalogueImgmodelcheck:checked {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
}

.mt-43 {
    margin-top: 43px;
}

/*lightboxModal class Start*/

.lightboxModal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.lightboxModal .modal-content {

    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 0;
    width: auto;
    max-width: fit-content;
}

    .lightboxModal .close {
     
        color: white;
        position: absolute;
        top: -13px;
        right: -11px;
        font-size: 25px;
        font-weight: bold;
        background: #000;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        line-height: 25px;
        text-align: center;
    }

        .lightboxModal .close:hover,
        .lightboxModal .close:focus {
            color: #999;
            text-decoration: none;
            cursor: pointer;
        }

    .lightboxModal i {
        font-size: 30px;
    }
    .lightboxModal .prev,
    .lightboxModal .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: white;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .lightboxModal .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }
    .lightboxModal .prev:hover,
        .lightboxModal .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

/*lightboxModal class End*/


#stages > ul > li:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

#stages > ul > li {
    text-align: center;
    width: 147px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background-color: #ddd;
    position: relative;
    margin-right: 12px;
    text-indent: -15px;
    font-size: 13px;
}

    #stages > ul > li:before {
        content: "";
        border-style: solid;
        border-width: 20px 0px;
        border-color: transparent;
        border-left: 13px solid #ddd;
        position: absolute;
        top: 0px;
        right: -13px;
        z-index: 2;
    }

    #stages > ul > li:after {
        content: "";
        border-style: solid;
        border-width: 20px 0px;
        border-color: transparent;
        border-left: 13px solid white;
        position: absolute;
        top: 0px;
        right: -16px;
        background-color: #ddd;
        z-index: 1;
    }

    #stages > ul > li:last-child:before, #stages > ul > li:last-child:after {
        display: none;
    }

    #stages > ul > li.selected {
        background: var(--btn-color);
        color: #fff;
        /*  #306bb4 */
    }

        #stages > ul > li.selected:before {
            content: "";
            border-style: solid;
            border-width: 20px 0px;
            border-color: transparent;
            border-left: 13px solid var(--btn-color);
            position: absolute;
            top: 0px;
            right: -13px;
            z-index: 2;
        }

        #stages > ul > li.selected:after {
            content: "";
            border-style: solid;
            border-width: 20px 0px;
            border-color: transparent;
            border-left: 13px solid white;
            position: absolute;
            top: 0px;
            right: -16px;
            background-color: #ddd;
            z-index: 1;
        }

    #stages > ul > li:last-child {
        background: #DDD !important;
        padding-right: 0;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    }

.partialcheckbox {
    background-image: url('/image/images.png') !important;  
}

#pnlPPProductionPlan li.disabled a {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.top0{
    top:0 !important;
}

.table-custom tbody tr td .input-group-text{
    background-color: #fff !important;
}
.suggestions-list {
    z-index: 9999;
    display: none;
    top: 100%;
    left: 0;
    border: 1px solid #ccc;
}
.suggestions-list li.suggestion-item {
    cursor: pointer;
    border: none;
    margin: 0;
    padding: 4px 8px;
    font-weight: bold;
    font-size: 13px !important;
}
#ManageLeadOpCloseModal.modal {
    z-index: 1054 !important;
}