/* /////////// common css //////////////// */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    transition: 0.4s linear;
    scroll-behavior: smooth;
}

section {
    transition: 0.4s linear;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Noto Sans", system-ui;
}


body {
    font-family: "Noto Sans", system-ui;
    font-size: 14px;
}

.heading_description {
    color: #808287;
}

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


a:hover {
    color: #000;
}

.main_btn {
    padding: 12px 40px 12px 40px;
    color: #fff;
    background-color: #008080;
    border: 1px solid #008080;
    font-weight: 500;
    transition: 0.5s linear;
}

.main_btn:hover {
    background-color: #6272af;
    border-color: #6272af;
}

/* ////////////// index ////////////////*/

#wrapper {
    padding-left: 0;
    transition: all 0.5s ease;
    position: relative;
    margin-top: 55px;
}

#sidebar-wrapper {
    z-index: 0;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100vh;
    margin-left: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #424A5D;
    transition: all 0.5s ease;
    padding-bottom: 130px;
    top: 49px;
}

#wrapper.toggled #sidebar-wrapper {
    width: 200px;
}

#wrapper #sidebar-wrapper .short_img {
    display: none;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper .full_img {
    transition: all 0.5s ease;
    display: none;
}

#wrapper.toggled #sidebar-wrapper .short_img {
    display: block;
    transition: all 0.5s ease;
    width: 22%;
    padding: 10px 0;
}

.sidebar-brand {

    padding: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.sub-menu ul li.show.active a {
    background: #fdd576;
    color: #000 !important;
    font-weight: bold;
}


.sidebar-brand img {
    transition: all 0.5s ease;
    width: 50%;
    padding: 13px 0;
}

.sidebar-brand span {
    font-size: 16px;
    font-weight: bold;
}

.sidebar-nav {
    position: relative;
    top: 25px;
    width: 180px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav>li {
    margin-bottom: 10px
}

.sidebar-nav>li a span {
    align-items: center;
    width: 100%;
    font-size: 13px;
}

.sidebar-nav>li a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 8px;
    font-size: 14px;
}

.sidebar-nav>li a svg {
    margin-right: 10px;
}


.sub-menu ul li {
    list-style: none;
    position: relative;
}

.sub-menu ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 11px;
    width: 5px;
    height: 1px;
    background-color: #fff;
}

.sub-menu ul li a {
    color: #fff;
}

.sidebar-nav>li>a:hover,
.sidebar-nav>li.active>a {
    text-decoration: none;
    color: #fff;
    background: #4c5465;
    font-weight: 600;
}

.sidebar-nav>li>a i.fa {
    font-size: 14px;
    width: 30px;
}

#navbar-wrapper {
    width: 100%;
    position: absolute;
    z-index: 2;
}

#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}

#navbar-wrapper .navbar {
    border-width: 0 0 0 0;
    background-color: #ffd777;
    font-size: 24px;
    margin-bottom: 0;
    border-radius: 0;
}

#navbar-wrapper .navbar a {
    color: #757575;
}

#navbar-wrapper .navbar a:hover {
    color: #008080;
}

#content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px 15px 0px 15px;
    top: 100px;
    display: flex;
    flex: d;
    flex-direction: row;
    height: 100%;
    overflow: hidden;
    background-color: #f1f1fa;
}

#wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -200px;
}

.price-brk-css {
    font-size: 18px;
    color: #5A8EE8;
    line-height: 1.1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px !important;
    position: absolute !important;
    top: 0px !important;
    right: 0px !important;
    width: 25px !important;
    padding: 0px !important;
    border-radius: 4px !important;
}

@media (min-width: 992px) {
    #wrapper {
        padding-left: 180px;
        width: 100%;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 180px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    #navbar-wrapper {
        position: relative;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 60px;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    #wrapper {
        /* padding-left: 60px; */
    }

    #sidebar-wrapper {
        /* width: 60px; */
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #navbar-wrapper {
        position: relative;
    }

    #wrapper.toggled {
        padding-left: 200px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }
}

@media (max-width: 767px) {

    #wrapper {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 0;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 100%;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #navbar-wrapper {
        position: relative;
    }

    #wrapper.toggled {
        padding-left: 325px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
        width: 0;
    }
}


/* main lead css */
.lead-bg {
    background-color: #424A5D;
    padding: 5px 10px;
    border-radius: 10px;
    align-items: center;
}

.lead-bg h5 {
    margin-bottom: 0;
    color: #fff;
    font-weight: bold;

}

.lead-bg button {
    font-size: 23px;
    padding: 3px;
}

.lead-list {
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}


.lead-list-box {
    border-bottom: 1px solid #ccc;
}



.lead-theory {
    width: 100%;
}

.lead-search .input-group {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.lead-search .input-group-text {
    background: transparent;
    border: 0;
    padding: 15px;
    color: #bbb;
    padding-right: 0;
}

.lead-search .form-control {
    background: transparent;
    border: 0;
}

.form-control:focus {
    box-shadow: none;
}

.unread-title h6 {
    margin: 0;
}

.unread-title {
    padding: 10px;
    background: #8995B4;
    color: #fff;
    font-weight: 600;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 1;
}

.lead-upper h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    /* Prevents text from wrapping to the next line */
    overflow: hidden;
    /* Ensures the text that overflows is hidden */
    text-overflow: ellipsis;
    /* Displays three dots for overflowed text */
    width: 200px;
    /* Adjust width as needed */
}

.lead-upper span {
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
}

.lead-dsec p {
    font-size: 13px;
    color: #9B9B9B;
    margin: 0;
}

.lead-no {
    color: #9B9B9B;

}

.badge {
    border-radius: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #535353;
    font-weight: 500 !important;
}

.badge.bg-danger {
    background-color: #F7A9A9 !important;
}

.badge.bg-primary,
.btn-primary {
    background-color: #82B0F5 !important;
}

.badge.bg-warning {
    background-color: #F5C382 !important;
}

.badge.bg-success {
    background-color: #55D68D !important;
}



.lead-unread-list {
    min-height: auto;
    /* overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px; */

}

.lead-list-scroll {
    /* padding-bottom: 40px; */
    padding-bottom: 0px;
    /* padding-bottom: 200px; */
    /* max-height: 433px !important; */
    overflow-y: auto !important;
    overflow-x: hidden;
    height: 77vh;
    /* height: 100vh; */

}

/* width */
/* .lead-unread-list::-webkit-scrollbar {
    width: 10px;

} */

.lead-list-scroll::-webkit-scrollbar {
    width: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;


}


/* Track */
.lead-list-scroll::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
.lead-list-scroll::-webkit-scrollbar-thumb {
    background: #35415D;
    border-radius: 10px;
    overflow: hidden;
}

/* Handle on hover */
.lead-list-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.lead-list-box.active,
.lead-list-box:hover {
    background: #e4ecff;
}

/* lead form */

.lead-form-panel {
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.lead-header {
    padding: 4px 10px;
    background-color: #424A5D;
}

.lead-values {
    color: #fff;
}

.btn {
    border: 0;
}

.user-lead-form {
    padding: 12px;
}

.form-heading h6 {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0;
}

.form-label {
    color: #898989;
    margin-bottom: 2px;
    margin-top: 6px;
}

.add-child-age .form-select {
    width: 50%;
    margin-left: 5px;
}

.add-child-age {
    background: #f1f1fa;
    padding: 10px;
    border-radius: 6px;
}

.price-box {
    background-color: #f1f1fa;
    border-radius: 5px;
}

.price-table .table {
    margin: 0;
}

.price-table table tr td {
    vertical-align: middle;
}

.price-table .table tr th,
.price-table .table tr td {
    padding: 0;
}

.price-table .table tr th,
.price-table .table tr td .form-control {
    border: 0;
    text-align: center;
}

.price-table .table-heading {
    background: #8995B4;
    padding: 5px 10px;
    font-weight: bold;
    color: #fff;
}

tr.table-value-head {
    background: #f1f1fa;
}

tr.table-value-head td {
    padding: 7px;
    text-align: center;
    font-weight: 600;
    background-color: #CDD8F2;
}

.price-table .table tr th {
    background-color: #eee;
    width: 20%;
    vertical-align: middle;
    font-weight: normal;
}

.price-table .table .table-total-title {
    background-color: #35415D;
    padding: 8px;
    color: #fff;
    text-align: center;
}

.price-table .table-total-value {
    font-size: 20px;
    text-align: center;
}

.btn-danger {
    background-color: #FF5C5C;
    border-radius: 0;
}

.hotel-form-confirm {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
}

input.form-control {
    padding: 4px 10px;
}

.form-lead-action {
    background-color: #424A5D;
    padding: 10px;
    border-radius: 10px;
}

/* lead chat */
.lead-chat-main {
    border-left: 1px solid #e5e5e5;
    padding: 5px;

}

.chat-lead-window {
    border-radius: 10px;
    overflow: hidden;
    background-image: url('../images/whatsapp_bg.jpg');
    position: fixed;
    bottom: 0;
    background-repeat: repeat;
    background-size: contain;
}

.chat-head {
    background: #3e9369;
    padding: 4px 10px;
    position: sticky;
    top: 0;
    z-index: 2;
    border-radius: 0px 10px 0px 0px;
}

.chat-head .chat-icon {
    width: 40px;
}

.chat-name {
    font-size: 16px;
    color: #fff;
}

.chat-user-box span {
    position: relative;
    right: 0;
    top: 55%;
    font-size: 12px;
    opacity: 0.6;
    right: auto;
    text-align: end;
}

.chat-user-box p {
    line-height: normal;
    font-size: 13px;
    margin: 0;
    word-break: break-all;
}

.chat-user-box {
    background: #fff;
    position: relative;

    margin-left: 12px;
    padding: 3px 10px;
    margin-bottom: 10px;
    display: inline-flex;
    flex-direction: column;
    margin-right: 30px;
    z-index: 1;

}

.chat-user-box::before {
    content: '';
    position: absolute;
    top: 9px;
    left: -4px;
    background: #fff;
    height: 0;
    width: 0;
    transform: rotate(215deg);
    z-index: -1;
    border-top: 25px solid #fff;
    border-left: 33px solid #ffffff;
}

.chat-admin-box span {
    position: relative;
    right: 0;
    top: 55%;
    font-size: 12px;
    opacity: 0.6;
    right: auto;
    text-align: end;
}

.chat-admin-box p {
    line-height: normal;
    font-size: 13px;
    margin: 0;
    word-break: break-word;
}

button#sendMsg svg {
    background: #ffff;
    padding: 0px;
    box-shadow: 1px 1px 40px #ddd;
    border-radius: 27px;
    width: 35px;
    height: 35px;
    padding: 7px;
    line-height: 35px;
}

.chat-admin-box {
    background: #D7F1DB;
    position: relative;

    margin-right: 12px;
    padding: 3px 10px;
    margin-left: auto;
    margin-bottom: 10px;
    display: inline-flex;
    flex-direction: column;
    margin-left: 30px;
    z-index: 1;
}

.chat-admin-box::after {
    content: '';
    position: absolute;
    top: 9px;
    right: -4px;
    background: #fff;
    height: 0;
    width: 0;
    transform: rotate(215deg);
    z-index: -1;
    border-top: 25px solid #D7F1DB;
    border-left: 33px solid #D7F1DB;
}

.chat-show-day {
    text-align: center;
    margin: 2px 0;
}

.chat-box-lead {
    overflow: auto;
}

/* width */
.chat-box-lead::-webkit-scrollbar {
    width: 10px;

}

/* Track */
.chat-box-lead::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.chat-box-lead::-webkit-scrollbar-thumb {
    background: #35415D;
    border-radius: 10px;
    overflow: hidden;
}

/* Handle on hover */
.chat-box-lead::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.chat-footer {
    margin: 10px;
    position: relative;
}

.chat-footer .form-control {
    border: 0;
    border-radius: 10px;
    resize: none;
}

.chat-footer .chat-send {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.lead-box-position {
    position: relative;
}

@media only screen and (max-width:1300px) {
    .chat-lead-window {
        z-index: 2;
    }
}

@media only screen and (min-width: 1369px) {
    .lead-list-scroll {
        padding-bottom: 0px;
        /* padding-bottom: 204px; */
        /* max-height: 433px !important; */
        overflow-y: auto !important;
        overflow-x: hidden;
        height: 77vh !important;
        /* height: 100vh !important; */
    }
}


/* Set up the flex container */
.content-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    /* Prevent the entire window from scrolling */
}

/* Wrap1: this section will not scroll */
.wrap1 {
    flex: 0 0 25%;
    /* Keep it to the width of its content */
    overflow: auto;
    /* Prevent any scroll within this container */
}

.lead-hidden {
    overflow: hidden;
}

/* Wrap2: this section will handle scrolling */
.wrap2 {
    flex: 1;
    /* Allow wrap2 to take up the remaining space */
    overflow-y: hidden;
    /* Vertical scrolling enabled within this container */
    height: 100%;
    /* Full height within the flexbox */
    padding: 0 10px 0 15px;
    /* Optional: padding for aesthetics */
}

/* Additional styling for elements within wrap2 */
.lead-form-panel {
    padding: 0px;
    /* Add some padding within the panel */
    background-color: #fff;
    /* Background color for the panel */
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.main-wrap {
    overflow: hidden;
    display: flex;
    height: 100vh;
    width: 100%;

}


.lead-body {
    /* display: flex; */
    height: 100vh;
    /* Full viewport height */
    /* overflow: hidden; */
    overflow-y: scroll;
    overflow-x: hidden;
    /* Prevent overflow on lead-body */
}

.user-lead-form {
    flex: 0 0 65%;
    /* Take up remaining space */
    overflow-y: auto;
    /* Enable scrolling within the form */
}

.chat-lead-main {
    position: relative;
    /* Needed for positioning chat-footer */
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    max-height: 100vh;
    /* Prevent overflow */
}

.chat-lead-window {
    height: calc(100vh - 72px);
    /* Adjust height minus chat-footer height */
    overflow-y: auto;
    /* Enable scrolling within the chat window */
    z-index: 999;
    width: -webkit-fill-available;
    margin-right: 15px;
}

.chat-footer {
    position: fixed;
    /* Fixed at the bottom within chat-lead-main */
    bottom: 0;
    /* width: 100%; */
    width: inherit;
    background: #fff;
    /* Background color to make footer visible */
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow */
    z-index: 2;
    margin: 0;
    margin-right: 15px;
}

.access-row ul {
    width: 100%;
    margin: 0;
}

.access-row ul li {
    width: 23%;
    display: inline-block
}

/* login */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.login {
    background-image: url(../images/bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-box {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: white;
    /* Ensure background color covers the box area */
}


.password-container {
    position: relative;
}

input[type="password"] {
    width: 100%;
    padding-right: 40px;
    /* Leave space for the icon */
    box-sizing: border-box;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
}

.eye-icon::before {
    content: "\f06e";
    /* FontAwesome eye icon */
    font-family: "FontAwesome";
}

.eye-icon.hide::before {
    content: "\f070";
    /* FontAwesome eye-slash icon */
}

.login-box {
    background-color: #ffffffe6 !important;
    box-shadow: 1px 1px 48px #90c2ff8f;
    border-radius: 25px;
}

.no-chat {
    min-height: 300px;
    /* margin-right: 12px; */
    padding: 3px 10px;
    margin-left: auto;
    margin-bottom: 10px;
    /* display: inline-flex; */
    flex-direction: column;
    /* margin-left: 30px; */
    z-index: 1;
    max-width: 100%;
    align-self: center;
    /* Align to the right */
    margin: 10px auto;
}

.no-chat img {
    filter: grayscale(1);
}

.sub-menu ul li a {
    font-size: 13px;
    word-break: break-word;
    display: block;
    padding: 7px;
    padding-left: 25px;
}

.sub-menu ul {
    padding-left: 2px;
    font-size: 14px;
    background: #363e51;
}



/* chat box css start */


.chat-admin-box {
    background: #D7F1DB;
    position: relative;
    margin-right: 12px;
    /* Adjusts spacing from the right */
    padding: 10px;
    /* Padding around the content */
    margin-left: auto;
    /* Automatically pushes the box to the right */
    margin-bottom: 10px;
    display: flex;
    /* Keeps it flexible for text alignment inside */
    flex-direction: column;
    align-items: flex-end;
    /* Aligns content to the right inside the box */
    max-width: 80%;
    /* Ensures the chat bubble doesn't take full width */
    float: right;
    /* Aligns the entire box to the right */
}



/* chat box css end */



.chat-box-lead {

    display: flex;

    flex-direction: column;

    padding: 10px;

}

.chat-show-day {

    display: flex;

    justify-content: center;

    margin: 6px 0;

}

.chat-show-day small {

    background-color: #f7f5e3;

    padding: 3px 10px;

    border-radius: 12px;

    font-size: 12px;

    mix-blend-mode: multiply;
}
.chat-icon img{
    mix-blend-mode: color-burn;
}

.chat-user-box,
.chat-admin-box {

    max-width: 70%;
    /* Limit the width of the messages */

    margin: 10px 0;

    padding: 10px;

    border-radius: 10px;

    position: relative;

}

.chat-user-box {



    align-self: flex-start;
    /* Align to the left */

    text-align: left;
    /* Text alignment */

    border-bottom-left-radius: 0;
    /* Optional: Remove the bottom left corner radius */

}

.chat-admin-box {



    align-self: flex-end;
    /* Align to the right */

    text-align: left;
    /* Text alignment */

    border-bottom-right-radius: 0;
    /* Optional: Remove the bottom right corner radius */

}


/*
.chat-user-box span, .chat-admin-box span {



} */

.chat-admin-box span {

    text-align: right;
    /* Right-align timestamps for admin messages */

}

.bg-gray {
    background: #f5f8ff;
    padding: 10px;
    border-radius: 0px;
}

.btn-quotation {
    background-color: #FF5C5C;
    color: #fff;
    border-radius: 5px;
}


.select2 {
    display: block !important;
    /* width: 100% !important; */
    padding: .15rem .75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid #ced4da !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border-radius: .25rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 0px solid #aaa !important;
    border-radius: 4px;
}

/* .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px !important;
} */

.select2-container .select2-selection--single {
    height: 32px !important;
}

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

/* css for long value of dropdown start */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 0px;
    width: 20px;
    background: #fff;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    overflow: hidden;
    /* padding-right: 22px; */
}

/* css for long value of dropdown end */

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff66;
    z-index: 9;
}

.loader .icon {

    --d: 22px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: #25b09b;
    box-shadow:
        calc(1*var(--d)) calc(0*var(--d)) 0 0,
        calc(0.707*var(--d)) calc(0.707*var(--d)) 0 1px,
        calc(0*var(--d)) calc(1*var(--d)) 0 2px,
        calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
        calc(-1*var(--d)) calc(0*var(--d)) 0 4px,
        calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
        calc(0*var(--d)) calc(-1*var(--d)) 0 6px;
    animation: l27 1s infinite steps(8);
}

@keyframes l27 {
    100% {
        transform: rotate(1turn)
    }
}

div#chat_area .chat-box-lead {
    padding-bottom: 140px;
}



/* Custom scrollbar styling for modal body */
.chat-lead-window {
    /* Ensuring the body is scrollable */
    max-height: auto;
    /* Adjust this height as per your need */
    overflow-y: auto;
}

/* Custom scrollbar styles */
.chat-lead-window::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

.chat-lead-window::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Scrollbar track background */
}

.chat-lead-window::-webkit-scrollbar-thumb {
    background-color: #71bc97;
    /* Scrollbar thumb color */
    border-radius: 10px;
    /* Rounded corners for the scrollbar thumb */
    border: 2px solid #f1f1f1;
    /* Padding around the thumb */
}

.chat-lead-window::-webkit-scrollbar-thumb:hover {
    background-color: #045f5f;
    /* Darker color on hover */
}

/* no lead css */

.no-lead-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* background-color: #fafafa; */
}

.no-lead-sec-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    /* background-color: #fafafa; */
}

.no-lead-sec img {
    width: 30%;
    height: auto;
    margin-bottom: 30px;
}

.no-lead-sec-1 img {
    width: 50%;
    height: auto;
    margin-bottom: 30px;
}

.no-lead-sec h1 {
    font-size: 26px;
    color: #424A5D;
    font-weight: 600;
    margin-bottom: 20px;
}

.no-lead-sec-1 h1 {
    font-size: 18px;
    color: #424A5D;
    font-weight: 600;
    margin-bottom: 20px;
}

.no-lead-sec p {
    font-size: 16px;
    color: #535353;
    font-weight: 400;
    margin-bottom: 20px;
}

.no-lead-sec a {
    background-color: #8995B4 !important;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.wapp-width {
    flex: 0 0 30%;
}

/* no lead css end */

/* .text-truncate {

  } */


.edit-lead .dropdown-menu {

    min-width: auto;
    padding: 0;

}

.edit-lead .dropdown-item {
    font-size: 12px;
}

.btn-link {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #5A8EE8 !important;
    text-decoration: none !important;
    padding: 0px !important;
    margin-top: 6px;
}

.modal-header {
    border-bottom: 0px solid #fff !important;
}

.modal-footer {
    border-top: 0px solid #fff !important;
}


span.select2-container.select2-container--default.select2-container--open {
    z-index: 9999 !important;
}



/* css for scroll bar */

.date-css {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin: 0px 10px;
}

.dt-length {
    display: flex !important;
    align-items: center !important;
}

.dt-length label {
    margin-left: 10px !important;
}

.select2-selection__rendered {
    width: fit-content !important;
}

.select2-container {
    padding: 0px !important;
}

.hide-arrow .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

#agentDetailsFormA {
    display: none;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

#agentDetailsFormA.show {
    display: block;
    opacity: 1;
}

#agentDetailsFormB {
    display: none;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

#agentDetailsFormB.show {
    display: block;
    opacity: 1;
}

.coll-border {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    border-radius: 4px;
}

@media (max-width: 1080px) {
    .price-brk-css {
        font-size: 16px !important;
        color: #5A8EE8;
        line-height: normal !important;
    }
}

@media (max-width: 1500px) {

    .lead-list .badge {
        font-size: 0.6rem !important;
    }

    .lead-list .btn-sm {
        padding: 3px !important;
    }
}


@media (max-width:991.9px) {
    .user-lead-form{
        padding-bottom: 250px;
    }
    .main-wrap{
        display: block;
    }
    #content-wrapper{
        padding: 5px;
    }
    .sidebar-nav {
        width: 100%;
    }

    .sub-menu ul li {
        margin-left: 10px;
    }

    .content-wrap {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .wrap1 {
        flex: 1;
    }

    .wrap2 {
        display: none;
    }

    .wrap1.wapp-width {
        display: none;
    }

    .wrapperx.w-100 {
        display: none !important;
    }

    a.btn-link.btn.text-decoration-none {
        margin: 0;
    }

    .sidebar-brand {
        padding-left: 0;
    }

    .wrap2 {
        padding-left: 0;
        padding-right: 0;

    }
    .chat-lead-window{
        margin-right: 0;
        left: 0;
        top: 56px;
    }
    .chat-footer{
        margin-right: 0;
    }
}

@media (max-width:360px){
    .price_break{
        flex-direction: column;
        margin-bottom: 20px !important;
    }
    .price_break .d-flex{
        margin-bottom: 0 !important;
    }
}

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

/* status color */

.bg-replied {
    background-color: #3ed4eb !important;
    color:  #000 !important;
}
.bg-pending {
    background-color: #F5C382 !important;
    color:  #000 !important;

}
.bg-cancelled {
    background-color: #ffa8b0 !important;
    color:  #000 !important;

}
.bg-lost {
    background-color: #bebebe !important;
    color:  #000 !important;

}
.bg-confirmed {
    background-color: #73df8c !important;
    color:  #000 !important;

}

.action-menu.dropdown-menu.show {
    display: block;
    box-shadow: 1px 10px 31px #00000027;
    border-radius: 10px;
    border: 0;
    background: #fcfcfc;
}



a.dropdown-item {
    font-size: 14px;
    padding: 7px 14px;
    color: #424a5d;
}
a.dropdown-item i {
    width: 20px;
    font-size: 15px;
    height: 20px;
    margin-right: 5px !important;
}

.candidate-list .progress-bar {
    height: 5px !important;
    border-radius: 5px !important;
    background-color: #d2d2d2 !important;
}
