@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8973ea;
    --secondry-color: #9076f04d;
    --darkmood: #241187;
    --silent-color: #d3c7ff4d;
    --error-show: #f00ac8;
    --bgcolor: #f3f3f3;
    --font-Montserrat: "Montserrat", system-ui;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bgcolor) !important;
    font-family: var(--font-Montserrat);
    font-weight: normal;
    font-size: 1rem;
    color: #000;
    font-style: normal;
    letter-spacing: 0.5px;
}

/* modals */
.myspiner12 {
    background-color: #dcdcdc;
    text-align: center;
    opacity: 0.8;
    z-index: 9999;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    user-select: none;

}

.myspiner12 img {
    display: inline-block;
    width: 70px;
    height: 70px;
    top: 45%;
    position: fixed;
    left: 48%;
}

.modal {
    background-color: #3231315e !important;
}

.modal-header {
    background-color: var(--primary);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 17px;
    color: #fff;
    font-weight: 400;
}

.modal-header .mybtn-close {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
    border: 0;
    padding: 0px 5px;
}

.modal-header .mybtn-close:hover {
    color: #000 !important;
    background-color: #fff;
    padding: 0px 5px;
    border-radius: 4px;
}

.sec-mod-body {
    padding: 20px 10px;
    min-height: 100%;
    max-height: 440px;
    overflow: auto;
}

.modal-footer {
    padding: 10px;
}

.twomodal-footer {
    border: 0px !important;
}

a {
    color: none;
    text-decoration: none !important;
}

.padding-lr {
    padding: 0px;
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--bgcolor) !important;
    z-index: 999;
    padding: 0px 0px 8px 0px;
    border-radius: 4px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px, rgba(0, 0, 0, 0.06) 0px 1px 0px;*/
}

.navbarcode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 5px 10px;
}
.logo {
    max-width: 50%;
    height: auto;
    margin: auto;
}
.sidebar.collapsed .sideslidsmall .logo {
    max-width: 100%;
}
/*.logo {
    max-width: 94%;
    height: auto;
    margin: auto;
}
*/
.logo img {
    width: 100%;
    height: auto;
}

.logo-menu .bar-icon {
    background-color: #fff;
    padding: 8px 8px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;

}

.logo-menu .bar-icon i {
    font-size: 16px;
    color: var(--primary);
}

.logo-menu .bar-icon i:hover {
    color: var(--darkmood);
}

.logo-menu .notifictio-icon {
    background-color: transparent;
    padding: 5px 5px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: left;
}

.logo-menu .notifictio-icon i {
    font-size: 14px;
    color: var(--primary);
}

.welcom .anker-color {
    font-size: 14px;
    cursor: pointer;
    color: var(--primary);
}

.welcom .mrdropmenu {
    background-color: #fff;
    margin-top: 10px !important;
    padding: 0px;
    min-width: 100%;
    border-radius: 10px;
}

.mrdropmenu .dropdown-item {
    color: var(--primary);
    font-size: 13px;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
    padding: 8px;
}

.tpbor-rad {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bobor-rad {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.welcom .mrdropmenu .dropdown-item:hover {
    color: var(--primary);
    background-color: var(--secondry-color);
}

.welcom .mrdropmenu .dropdown-item i {
    color: var(--primary);
    font-size: 13px;
    cursor: pointer;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 4px;
    background-color: transparent;
}

.webciew {
    display: block;
}

.phoneview {
    display: none;
}

/* ==========sidebar manage full condition============= */
.sidebar {
    width: 240px;
    background-color: #fff;
    color: #4c4c4c;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform .3s ease-in-out;
    padding-top: 0px;
    z-index: 9;
}

.sidebar ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.sidebar-content ul {
    list-style: none;
    padding-left: 0px;
    padding-top: 10px;
}

.side-item {
    padding: 5px 6px;
    color: #4c4c4c;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    border-radius: 8px;
    background-color: transparent;
    margin: 6px 0px;
}

.side-item:hover {
    color: var(--darkmood);
    background-color: var(--hovercolor);
}

.side-item.active {
    background-color: var(--secondry-color);
    color: var(--darkmood) !important;
}

.side-item:hover i {
    color: var(--darkmood);
}

.side-item.active i {
    color: var(--darkmood) !important;
}

.sidebar .side-item span {
    display: block;
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar.collapsed .side-item span {
    display: none;
}

.sidebar.collapsed .dropdown-menu .side-item span {
    display: block;
}

.sidebar.collapsed .dropdown-menu {
    position: absolute !important;
    left: 80px !important;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    max-height: 400px;
    overflow: auto;
}

.sidebar-content .dropdown-menu {
    position: relative !important;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(0px, 0px) !important;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    padding: 0px;
    border-radius: 0px;
    border: 0px;
    border-left: 1px solid var(--darkmood);
    width: 95%;
    margin-left: auto !important;
}

.dropdown-menu .side-item {
    margin: 3px 6px;
}

.sidebar-content {
    padding: 10px 10px 120px 10px;
    overflow: auto;
    height: 100%;
    user-select: none;
}

.sidebar.collapsed .sidebar-content {
    overflow: inherit;
    height: 100%;
}

.sidebar.collapsed .side-item i {
    margin: auto;

}

.sidebar.collapsed .side-item svg {
    margin: auto;

}

.side-item i {
    background: transparent;
    color: #000;
    padding: 10px;
    border-radius: 50%;
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-item svg {
    width: 17px;
    height: 24px;
}

.sidebar.collapsed+.contentarea {
    margin-left: 80px;

}

/* =========== start content================ */
.contentarea {
    padding: 0px;
    margin-left: 240px;
    height: 100%;
    transition: margin-left 0.0s ease-in-out;
}

/*.sectionone {
    padding: 10px 0px;
    height: 100%;
}*/
.pageconetntarea {
    padding: 10px 0px;
    height: 100%;
}
.mycontent {
    background-color: #fff;
    padding: 15px 5px;
    border-radius: 8px;
    height: 88vh;
    overflow: auto;
}

.mycontent-modal {
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow: auto;
}

.dashboardcards {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}

.dashbanner {
    width: 100%;
    height: auto;
}

.dashbanner img {
    width: 100%;
    height: 100%;
}

.dashimageon {
    width: 100%;
    height: auto;
}

.dashimageon img {
    width: 100%;
    height: 100%;
}

.inputbox {
    width: 100%;
}

.inputbox label {
    font-size: 14px;
    color: #000;
    margin-bottom: 4px;
}

.inputbox input,
select {
    font-size: 14px;
    height: 35px;
    width: 100%;
    color: #000;
    border: 1px solid #c7c7c7;
}

.my-selecter {
    font-size: 14px !important;
    border: 1px solid #c7c7c7 !important;
    height: 35px;
    padding: 4px 2.25rem 6px 0.75rem !important;
}

.inputbox input:focus {
    box-shadow: none !important;
    border-color: #c7c7c7 !important;
}

.my-selecter:focus {
    box-shadow: none !important;
    border-color: #c7c7c7 !important;
}
.pageheader {
    padding: 5px 0px 20px 0px;
}
.pageheding {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}





.headingareas {
    padding: 5px 0px 20px 0px;
}

.headingareas h3 {
    font-size: 14px;
    color: var(--primary);
}

.alldataarea {
    padding: 10px 0px;
}

/*==== ========== table ======================= */
table,
th,
td {
    border: 1px solid #b3b3b3 !important;
    border-collapse: collapse;
}

.responsive-table {
    width: 100%;
    overflow: auto;
}

.tabledata {
    width: 100%;
}

.tabledata thead {
    background-color: var(--secondry-color);
    color: #fff;
}

.tabledata thead tr th {
    border: 1px solid #8f8e8e !important;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 10px;
    padding: 3px 6px;
    letter-spacing: .5px;
    white-space: nowrap;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e4eaec;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b9b9b9;
}

.tablebody td {
    font-size: 10px;
    color: #000;
    padding: 4px 10px;
    letter-spacing: .5px;
}

.actionbtn-table {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.actionbtn-table .my-deleteicon {
    font-size: 11px;
    padding: 3px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background-color: #fff;
    color: #f00101;
    border: 1px solid #f00101;
}

.actionbtn-table .my-deleteicon:hover {
    color: #fff;
    background: #f00101;
}

.actionbtn-table .my-editicon {
    font-size: 11px;
    padding: 3px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.actionbtn-table .my-editicon:hover {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.actionbtn-table .plusegreen {
    font-size: 11px;
    padding: 3px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.actionbtn-table .plusegreen:hover {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btnfilter {
    background-color: #eeeeee;
    color: #fff;
    font-size: 16px;
    padding: 4px 8px;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.formarea {
    padding: 10px 0px;
}

.formarea-category {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 10px 0px 5px 0px;
}

/* ===============Style for the input field ================*/



.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

/* 18-march */
.btnaras-category {
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 10px;
    height: 100%;
}

.btn-save {
    padding: 5px 11px;
    color: #ffff;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 26px;
    gap: 6px;
    cursor: pointer;
}


.btn-save:hover {
    color: #fff;
    background: linear-gradient(124deg, #b4a3fa 0%, #a290f1 49%, #8d78eb 100%);
}

.btn-green {
    padding: 5px 11px;
    color: #fff;
    background-color: #00c500;
    border: 1px solid #00c500;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 26px;
    gap: 6px;
    cursor: pointer;
}

.btn-green:hover {
    color: #fff;
    background: linear-gradient(124deg, #00bb00 0%, #00c500 49%, #00a500 100%);
}

.resetbtn {
    padding: 5px 11px;
    color: #ffff;
    background-color: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 26px;
    gap: 6px;
    cursor: pointer;
}

.resetbtn:hover {
    color: #fff;
    border: 1px solid #ff0000;
    background: linear-gradient(124deg, #ff0000 0%, #f75656 49%, rgb(255, 77, 77) 100%);
}

.btn-cancel {
    padding: 4px 11px;
    color: #ff0000;
    background-color: transparent;
    border: 1px solid #ff0000;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 26px;
    gap: 6px;
}

.btn-cancel:hover {
    color: #fff;
    background: #ff0000;
}

.errorline span {
    color: #ff0000;
    font-size: 12px;
}

/* sweet alert css=============== */
div:where(.swal2-container) h2:where(.swal2-title) {
    font-size: 24px !important;
}

div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
    font-size: 14px;
    padding: 4px 10px !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
    background-color: transparent !important;
    border: 1px solid #ff0000 !important;
    color: #ff0000 !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):hover {
    background-color: #ff0000 !important;
    color: #fff !important;
}

/* upload image iocn area */



.popup-group {
    padding: 4px;
}

.heading-grp {
    margin: 10px 0px;
}

.heading-grp h2 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 400;
    text-align: left;
}

.in-cre-grp {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0px;
    z-index: 99;
    background-color: #fff;
}

.popup-msg {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
}

.popup-msg .attchsingel-img {
    width: 100%;
    height: auto;
    margin: 8px 0px;
}

.attchsingel-img img {
    width: 100%;
    height: 100%;
}

.popup-msg p:nth-child(1) {
    font-size: 14px;
    color: #000;
    text-align: left;
    margin-bottom: 10px;
}

.popup-msg p:nth-child(2) {
    font-size: 12px;
    text-align: right;
    margin-bottom: 5px;
}

.attac-iocn p {
    text-align: right;
    margin-bottom: 4px;
}

.attac-iocn p a {
    font-size: 12px;
    color: var(--primary);
    text-align: right;
}

.attac-iocn i:hover {
    background-color: var(--primary);
    color: #fff;
}

.attac-iocn span {
    color: #000;
    white-space: nowrap;
}

.small-data {
    max-width: 200px;
}
    .small-data p{
        margin:0px;
    }
    .small-data p span{
        min-width:100px;
        font-weight:500;
    }

    .big-data {
        white-space: nowrap;
        max-width: 200px;
    }

.truncate-text span {
    color: #ff0000 !important;
}

.group-mambers p {
    text-align: right;
    margin-bottom: 5px;
}

.group-mambers p a {
    color: var(--primary);
}

.group-mambers .truncate-name span {
    font-size: 13px;
    color: #000;
}

.group-mambers .truncate-name span:nth-child(n+3) {
    display: none;
}

.group-mambers .truncate-name span:nth-child(2):after {
    content: ' ...';
    color: #555;
}

.message-td {
    max-width: 200px !important;
}

.message-area {
    max-width: 100%;
    max-height: 100px;
    min-width: 180px;
    min-height: 100%;
    overflow: auto;
    padding-right: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.message-area p:nth-child(1) {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    line-height: 20px;
}

.message-area p:nth-child(2) {
    text-align: right;
    margin-bottom: 1px;
}

.message-area a {
    font-size: 12px;
    color: var(--primary);
    text-align: right;
}

.message-area span {
    font-size: 12px;
    color: #000;
    text-align: right;
}

.message-area::-webkit-scrollbar {
    display: none;
}

.message-area:hover {
    scrollbar-width: auto;
}

.message-area:hover::-webkit-scrollbar {
    display: block;
    width: 3px;
}

/* ---------------------- */
.pagelogin {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inputbox2 {
    width: 100%;
}

.inputbox2 label {
    font-size: 16px;
    color: #000;
    margin-bottom: 4px;
}

.inputbox2 input,
select {
    font-size: 14px;
    height: 40px;
    width: 100%;
    color: #000 !important;
}

.right-side {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
}

.loginarea {
    padding: 16px;
    border-radius: 8px;
    background: linear-gradient(0deg, rgb(179 163 255) 33%, rgb(196 186 249) 68%);
    box-shadow: rgb(195 184 255) 0px 5px 15px;
}

.loginform {
    padding: 60px 20px;
}

.loginform h2 {
    font-size: 32px;
    color: #000;
    text-align: center;
    padding: 10px 10px 20px 10px;
}

.left-side-login {
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 30px;
}

.left-side-logincontent {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logologin {
    width: 90%;
    height: auto;
    user-select: none;
}

.logologin img {
    width: 100%;
    height: 100%;
}

.textpart-login {
    padding: 30px 0px;
}

.textpart-login h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.textpart-login p {
    font-size: 14px;
    color: #000;
}

.logininput {
    position: relative;
}

.logininput i {
position: absolute;
    right: 10px;
    top: 31px;
    cursor: pointer;
    font-size: 12px;
}

.myspiner {
    background-color: #282828;
    text-align: center;
    opacity: 0.7;
    z-index: 9;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
}

.myspiner .spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
    top: 50%;
    position: fixed;
    left: 50%;
}

/*=======================member popup ===================  */
.member-name {
    padding: 5px 2px;
    margin: 5px 0;
    cursor: pointer;
}

.member-name:hover {
    background-color: #eaf2f5;
}

.member-name.active {
    border-radius: 8px;
}

.profilepic .profile-text {
    border-radius: 50px;
    aspect-ratio: 1;
    width: 40px;
    padding: 10px 8px;
    height: 40px;
    background: var(--primary);
    font-size: 18px !important;
    text-align: center;
    color: white !important;
    line-height: 21px !important;
    text-transform: capitalize;
}

.profilepic .profile-text i {
    font-size: 18px !important;
}

.label-point {
    display: flex;
    align-items: center;
    justify-content: left;
}

.label-point label {
    margin-bottom: 0px;
    margin-top: 0px;

}

.chek-point {
    display: flex;
    align-items: center;
    justify-content: end;
}

.select-member {
    cursor: pointer;
    background-color: #fff;
    padding: 4px 4px;
}

.select-member:hover {
    border-radius: 4px;
    cursor: pointer;
    background-color: #eaf2f5;
}

.select-member label {
    cursor: pointer;
}

.colr-spn {
    color: #004710;
    font-size: 13px;
    font-weight: 400;
    margin-right: 20px;
}

/* ============= */
.date-span {
    text-align: center;
    margin: 20px 0px;
}

.date-span span {
    background-color: #c1d4db;
    color: #000;
    padding: 3px 8px;
    font-size: 12px;
    text-align: center;
    border-radius: 9px;
}

.three-dot {
    position: absolute;
    right: 6px;
    top: 3px;
    display: none;
}

.three-dot i {
    color: #000;
    font-size: 12px;
}

.three-dot .mrdropmenu {
    padding: 5px 5px;
}

.three-dot .mrdropmenu .delete-msg {
    color: var(--primary);
    font-size: 13px;
}

.three-dot .mrdropmenu .delete-msg:hover {
    color: #f00101;
}

.three-dot .mrdropmenu .delete-msg:hover i {
    color: #f00101;
}

.three-dot .mrdropmenu a i {
    font-size: 15px;
    margin-right: 2px;
    color: var(--primary);
}

.reciver-side {
    width: 100%;
}

.reciver-side ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0px;
}

.reciver-side ul li {
    text-align: left;
}

.reciver-side ul li .small-time {
    margin-left: 5px;
    font-size: 12px;
}

.reciver-side ul li .singel-chek {
    font-size: 11px;
    color: #9f9c9c;
    margin-left: 3px;
}

.reciver-side ul li .double-chek {
    font-size: 11px;
    color: #9f9c9c;
    margin-left: 3px;
}

.read-chek {
    font-size: 11px;
    color: var(--primary);
    margin-left: 3px;
}

.reciver-side .msg-area {
    max-width: 70%;
    margin-right: auto;
    text-align: left;

}

.reciver-side .msg-area .msg-content {
    position: relative;
    padding: 8px 20px 8px 14px;
    background: #efefef;
    text-align: left;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
    max-width: fit-content;
    margin-right: auto;
}

.reciver-side .msg-area .msg-content:before {
    display: block;
    clear: both;
    content: '';
    position: absolute;
    top: -6px;
    left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 15px;
    border-color: transparent transparent #efefef;
    transform: rotate(-140deg);
}

.reciver-side .msg-area .msg-content:hover .three-dot {
    display: block;
}

.reciver-side .msg-content p {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
    display: grid;
}

.wid-img {
    max-width: 250px;
    height: auto;
}

/*================================ sender======== */
.sender-side {
    width: 100%;
}

.sender-side ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0px;
}

.sender-side ul li {
    text-align: right;
}

.sender-side .msg-area .msg-content:hover .three-dot {
    display: block;
}

.sender-side ul li .small-time {
    margin-right: 12px;
    font-size: 12px;
}

.sender-side ul li .singel-chek {
    font-size: 11px;
    color: #9f9c9c;
    margin-left: 3px;
}

.sender-side ul li .double-chek {
    font-size: 11px;
    color: #9f9c9c;
    margin-left: 3px;
}

.sender-side .msg-area {
    max-width: 70%;
    margin-left: auto;
    text-align: left;
}

.sender-side .msg-area .msg-content {
    position: relative;
    padding: 8px 20px 8px 8px;
    background: var(--secondry-color);
    text-align: left;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
    max-width: fit-content;
    margin-left: auto;
}

.sender-side .msg-area .msg-content:before {
    display: block;
    clear: both;
    content: '';
    position: absolute;
    bottom: -6px;
    right: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 15px;
    border-color: transparent transparent var(--secondry-color);
    transform: rotate(37deg);
}

.replaymessse .replay-content p {
    background-color: #fff !important;
    padding: 8px !important;
    border-radius: 8px !important;
    color: #000 !important;
    font-size: 13px !important;
    margin-bottom: 5px !important;
}

.replaymessse .replay-msg p {
    color: #000 !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.sender-side .msg-area .msg-content p {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

.wid-img {
    max-width: 250px;
    height: auto;
}

/*  */
.doc-file {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}

.doc-icon {
    width: 40px;
    height: 40px;
}

.doc-info span {
    font-size: 13px;
    color: #000;
}

.doc-info i {
    color: var(--primary);
    font-size: 20px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 5px;
    text-align: center;
    border: 1px solid var(--primary);
    margin-left: 10px;

}

.popup-history {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
}

.popup-history p {
    margin-bottom: 0px;
}

.replay-content img {
    max-width: 100px;
    height: auto;
}

.replay-msg img {
    max-width: 250px;
    height: auto;
}


.form-group input,
.form-group select {
    font-size: 10px;
    height: 27px;
    width: 100%;
    color: #000;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    padding: 0px 4px;
}

.form-group textarea {
    font-size: 10px !important;
}

.form-group label {
    display: inline-block;
    margin-bottom: 1px;
    font-size: 10px;
}

.form-check label {
    display: inline-block;
    margin-bottom: 1px;
    font-size: 10px;
}

.form-control:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
    color: #000;
}

.fileupload {
    padding: 3px !important;
    font-size: 12px !important;
}

.headericons .welcom {
    display: inline-flex;
}

.headericons h2 {
    display: inline-flex;
    font-size: 16px;
    margin-bottom: 0px;
    margin-left: 5px;
}

/* .imgadmin {
      height: 35px;
    width: 35px;
    cursor: pointer;
} */

.imgadmin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    border: 1px solid var(--primary);
}

.imgadmin h3 {
    font-size: 17px;
    margin-bottom: 0px;
    margin: auto;
    height: 33px;
    width: 33px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background-color: #8973ea;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slidhid {
    display: none;
}

.sidebar.collapsed .slid {
    display: none;
}

.sidebar.collapsed .slidhid {
    display: block;
    width: 75%;
    height: auto;
    margin: auto;
}

.error-text {
    color: var(--error-show);
    font-size: 10px;
    margin-top: 2px;
}

.error-input {
    border-color: var(--primary) !important;
}

.dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--darkmood);
    width: 9px !important;
    height: 9px !important;
}

.sidebar.collapsed .dropdown-arrow {
    display: none !important;
}

.dropdown .dropdown-toggle.show .dropdown-arrow {
    transform: rotate(90deg);
}

.dropdown-toggle.active {
    background-color: var(--secondry-color);
    color: var(--darkmood) !important;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown .dropdown-toggle.show {
    background-color: var(--silent-color);
    color: var(--darkmood) !important;
}

.dropdown .dropdown-toggle.show i {
    color: var(--darkmood) !important;

}

.sidebar.collapsed .dropdown-toggle::after {
    display: none !important;
}

.note-editor .note-toolbar .note-color-all .note-dropdown-menu,
.note-popover .popover-content .note-color-all .note-dropdown-menu {
    min-width: 345px !important;
    z-index: 9;
    margin-top: 7px;
}

.note-editor .note-toolbar .note-dropdown-menu.note-check a i,
.note-popover .popover-content .note-dropdown-menu.note-check a i {
    display: none;
}

.note-editor .note-toolbar .note-dropdown-menu,
.note-popover .popover-content .note-dropdown-menu {
    min-width: 100% !important;
    margin-top: 7px;
}

.note-modal-footer {
    padding: 0px 20px !important;
    margin-bottom: 15px !important;
}

.note-modal-body .checkbox input {
    height: 15px !important;
}

.sn-checkbox-open-in-new-window {
    display: inline-flex;
}

.sn-checkbox-use-protocol {
    display: inline-flex;
}

.showpages {
    width: 100px;
}

.ml-auto {
    margin-left: auto;
}

/* --------------- pagination only   -------------- */
.pagination-container {
    display: flex;
    align-items: center;
    padding: 21px 7px;
    gap: 15px;
    justify-content: end;
}

.pagination-container p {
    margin-bottom: 0px;
    font-size: 10px;
}

.pagination {
    display: inline-flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    padding: 4px 9px;
    background-color: #f1f1f1;
    border: 2px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 11px;
}

.pagination li a:hover {
    background-color: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

.pagination .active a {
    background-color: var(--primary);
    color: white;
}

.pagination .disabled a {
    color: #ccc;
    pointer-events: none;
    background-color: #f9f9f9;
    border-color: #ddd;
}

.areauser {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px 10px;
    z-index: 9999;
    background-color: #ffff;
    border-top: 1px solid #8973ea;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.sidebar.collapsed .headericons h2 {
    display: none;
}

.sidebar.collapsed .areauser {
    text-align: center;
    display: block;
}

.sidebar.collapsed .logo-menu {
    text-align: center;
}

.sidebar.collapsed .fullscreen {
    display: none;
}

.halfscreen {
    display: none;
}

.sidebar.collapsed .halfscreen {
    display: block;
}

.phone {
    display: none;
}

.icononly {
    position: fixed;
    right: 10px;
    bottom: 12px;
}

.icononly a i {
    color: #ffff;
    font-size: 15px;
    border: 1px solid var(--primary);
    padding: 6px;
    border-radius: 4px;
    background-color: var(--primary);
    cursor: pointer;
}

.logbtn {
    color: var(--primary);
    font-size: 14px;
}

.logbtn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logbtn:hover {
    color: var(--darkmood);
}

.sidebar.collapsed .logbtn {
    display: block;
    align-items: center;
    font-size: 12px;
    text-align: center;
}

.sidebar.collapsed .imgadmin {
    margin: auto;
}

.sidebar.collapsed .logo-menu {
    margin-top: 5px;
}

.form-group input~radio {
    height: 12px;

}

.inputgroup label {
    display: inline-block;
    margin-bottom: 1px;
    font-size: 13px;
}

.tabbtn .nav-link {
    padding: 4px 10px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    border: 0px;
    cursor: pointer;
}

.tabbtn .nav-link.active {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border: 0px;
}

.tabbtntabs {
    border-bottom: 0px;
}

.tab-pane {
    padding: 10px;
}

.accorbtn {
    color: var(--primary);
}

.accorbtn:not(.collapsed) {
    background-color: #fff;
    color: var(--darkmood);
}

.accorbtn:focus {
    z-index: 3;
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../iocns/arrowdown.svg);
    transform: rotate(-180deg);
}

.accordion-button::after {
    background-image: url(../iocns/arrowclose.svg);
    transform: rotate(0deg);
}

/* width */
::-webkit-scrollbar {
    width: 1px;
    height: 2px;
}

/* track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: var(--secondry-color);
    border-radius: 6px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondry-color);
}

.inputtable {
    width: 100%;
    height: 20px;
    border: 1px solid #8973ea;
    outline: 0px;
    color: #000;
    padding: 0px 4px;
    font-size: 10px;
    border-radius: 2px;
    min-width: 30px;
}

.selecttableinpu {
    width: 100%;
    height: 20px;
    border: 1px solid #8973ea;
    outline: 0px;
    color: #000;
    padding: 1px 18px 1px 4px;
    font-size: 10px;
    border-radius: 2px;
}

.selecttable {
    width: 100%;
    min-width: 80px;
}

.form-select {
    background-position: right 0px center;
    cursor: pointer;
}

.singel-selecttable {
    width: 100%;
    min-width: 40px;
}

.sweettitle {
    font-size: 16px !important;
}

.text-line {
    font-size: 13px !important;
}

.sweetconfirm-btn,
.sweet-cancel-btn {
    font-size: 12px !important;
    padding: 4px 10px !important;
}

.sweet-icon {
    font-size: 10px;

}

.sidebar.collapsed .sideslidsmall {
    overflow: auto !important;
}

.sidebar.collapsed .sideslidsmall .my-sidebrop {
    position: inherit;
}

.sidebar.collapsed .sideslidsmall .my-sidebrop .dropdown-masters {

    top: 15% !important;
}

.image-td {
    max-width: 50px;
    height: auto;
    margin: auto;
    cursor: pointer;
}

.image-td img {
    width: 100%;
    height: 100%;
}

.skumasteroffcanva.show:not(.hiding),
.skumasteroffcanva.showing {
    width: 82%;
}

.vpoosscanva.show:not(.hiding),
.vpoosscanva.showing {
    width: 68%;
}

.offcanvas-title {
    font-size: 14px;
}

.btn-close {
    font-size: 9px;
    color: var(--primary) !important;
    opacity: 1;
}

.btn-close:hover {
    opacity: 1;
    color: var(--darkmood) !important;
}

.btn-close:focus {
    box-shadow: none;
}

.skumasteroffcanva .offcanvas-header {
    padding-bottom: 5px;
}

.skumasteroffcanva .offcanvas-body {
    padding-top: 5px;
}

.img-enlargable {
    cursor: zoom-in;
}

/* Overlay */
.img-overlay {
    background-color: #1200245b;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 10000;
    cursor: zoom-out;
}

/* Close button */
.img-close-btn {
    position: absolute;
    top: 4px;
    right: 11px;
    font-size: 30px;
    color: var(--primary);
    cursor: pointer;
    font-weight: 400;
    z-index: 10001;
    user-select: none;
}

.img-close-btn:hover {
    color: var(--darkmood);
}

.choices__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    min-height: 27px;
    padding: 3px;
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    background-color: #fff;
    height: 27px;
    overflow: auto;
}

.choices__input {
    flex-grow: 1;
    min-width: 60px;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    background-color: #fff;
}

.choices__input:focus {
    outline: none;
    box-shadow: none !important;
}

.choices__list--multiple {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.choices__list--multiple .choices__item {
    background-color: var(--silent-color);
    color: var(--darkmood);
    border-radius: 2px;
    padding: 0px 4px;
    border: 1px solid var(--darkmood);
    margin: 2px 2px;
    font-size: 10px;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
    position: relative;
    padding: 4px;
    font-size: 10px;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
    background-image: url(../iocns/cross.svg) !important;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
    display: none;
}

.choices__list--dropdown .choices__item--selectable[data-select-text],
.choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 2px;
}

.remarktd {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-aprolvel ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    border-right: 1px solid var(--primary);
    padding-right: 10px;
}

.list-aprolvel li {
    background-color: var(--silent-color);
    padding: 2px 5px 5px;
    border-radius: 2px;
    color: var(--primary) !important;
    font-size: 10px;
    margin-bottom: 8px;
}

.list-aprolvel li a {
    color: var(--primary);
}

.list-aprolvel li:hover a {
    color: var(--darkmood);
}

.list-aprolvel li a.active {
    color: var(--darkmood);
}

.side-item title {
    font-size: 100px;
}

.whitespac {
    white-space: nowrap;
}

/* ====================Media Quary========================= */
/* ======================================================== */
@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1440px;
    }
}

@media (max-width: 991px) {
    .loginform {
        padding: 30px 10px;
    }
}

@media (max-width: 767px) {
    .mycontent {
        padding: 10px;
    }

    .phone {
        display: block;
    }

    .loginarea {
        padding: 10px 15px;
    }

    .logo-menu {
        display: none;
    }

    .sidebar-content {
        padding: 10px 10px 100px 10px;
        overflow: auto;
        height: 100%;
    }

    .left-side-login {
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom: 1px solid #7058e8;
        padding: 20px 10px;
    }

    .modal-backdrop {
        display: block !important;
    }

    .right-side {
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0px;
    }

    .logologin {
        width: 100%;
        height: auto;
        user-select: none;
    }

    .logout i {
        font-size: 21px;
        color: #000;
    }

    .sidebar {
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        transform: translateX(-100%);
    }

    .sidebar.collapsed {
        width: 250px;
        transform: translateX(0%);
    }

    .sidebar.collapsed .side-item span {
        display: block;

    }

    .sidebar.collapsed .slidhid {
        display: none;
    }

    .sidebar.collapsed .slid {
        display: block;
        width:35%;
    }

    .sidebar.collapsed .logbtn {
        display: flex;
    }

    .sidebar.collapsed .imgadmin {
        margin: 0;
    }

    .sidebar.collapsed .dropdown-menu {
        position: relative !important;
        top: 0px !important;
        left: 0px !important;
    }

    .sidebar.collapsed .sideslidsmall .my-sidebrop .dropdown-menu {
        position: relative !important;
        top: 0px !important;
        left: 0px !important;
        max-height: 100% !important;
    }

    .sidebar.collapsed .dropdown-arrow {
        display: block !important;
        margin-left: auto !important;
    }

    .sidebar.collapsed .side-item svg {
        margin: 0;
    }

    .contentarea {
        margin-left: 0px;
    }

    .sidebar.collapsed+.contentarea {
        margin-left: 0px;
    }

    .phoneview {
        display: block;
    }

    .webciew {
        display: none;
    }
}

@media (max-width: 576px) {
    .sidebar.collapsed {
        width: 215px;
    }

    .mycontent {
        padding: 7px;
    }

    .pageheding {
        font-size: 12px;
    }

    .welcom .anker-color {
        font-size: 14px;
    }

    .mrdropmenu .dropdown-item {
        font-size: 12px;
        padding: 6px;
    }

    .logo-menu {
        gap: 10px;
    }

    .btn-save {
        padding: 4px 7px;
        font-size: 11px;
        height: 21px;
    }

    .btn-green {
        padding: 4px 7px;
        font-size: 11px;
        height: 21px;
    }

    .resetbtn {
        padding: 4px 7px;
        font-size: 11px;
        height: 21px;
    }

    .headingareas {
        padding: 5px 0px 10px 0px;
    }
}

@media (max-width: 480px) {
    .dropdown-menu .side-item {
        margin: 5px 5px;

    }

    .side-item {
        font-size: 11px;
    }

    .pagination-container {
        display: block;
    }

    .mycontent {
        padding: 5px;
    }

    .pagination li a {
        padding: 4px 6px;
        font-size: 9px;
    }

    .pagination li {
        margin: 0 3px;
    }

    .sidebar.collapsed {
        width: 200px;
    }

    .logo-menu {
        gap: 5px;
    }

    .logo-menu .bar-icon {
        padding: 5px 5px;
    }

    .welcom .anker-color {
        font-size: 12px;
    }

    .logo-menu .bar-icon i {
        font-size: 12px;
    }
}