@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: italic;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    background: #fff;
    color: black !important;
    transition: all 0.5s ease;
    z-index: 999;
}

.sidebar.close {
    width: 78px;
}

.sidebar .logo-details {
    padding-top: 20px;
}

.sidebar .logo-details i {
    font-size: 25px;
    color: #111;
}

.logo {

    height: 45.8px;

}

.sidebarclose {
    width: 43.24px;
    display: none;
}

.sidebar.close .sidebarlogo {
    display: none;
}

.sidebar.close .sidebarclose {
    display: block;
    width: 43.24px;
}

.sidebar .logo-details .logo_name {
    font-size: 22px;
    color: #111;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.1s;
}

.sidebar.close .logo-details .logo_name {
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
}


.sidebar .nav-links {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 30px 0 150px 0;
    overflow: auto;
}

.nav-links li a {
    display: flex !important;
    gap: 10px !important;
}

.nav-links img {
    width: 32px;
    height: 32px;
}

.nav-link {
    padding: 8px 12px !important;
    margin-left: 10px;
    width: 90%;
    border-radius: 10px;
    background-color: #F3F4F6 !important;
}

.nav-link span {
    color: #000 !important;
}

.sidebar.close .nav-links {
    overflow: visible;

}

.sidebar .nav-links::-webkit-scrollbar {
    display: none;
}

.sidebar .nav-links li {
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
    padding-left: 26px;
}

.sidebar .nav-links li .iocn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar.close .nav-links li .iocn-link {
    display: block;
}

.sidebar .nav-links li i {
    height: 50px;
    /* min-width: 78px; */
    text-align: center;
    line-height: 50px;
    color: #111;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 16px;
}

.sidebar .nav-links li.showMenu i.arrow {
    transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow {
    display: none;
}

.sidebar .nav-links li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sidebar .nav-links li a .link_name {
    font-size: 18px;
    transition: all 0.4s ease;
}

.sidebar.close .nav-links li a .link_name {
    opacity: 0;
    pointer-events: none;
}

.sidebar .nav-links li .sub-menu {
    padding: 6px 6px 14px 80px;
    margin-top: -10px;
    /* background: #fff; */
    display: none;
}

.sidebar .nav-links li.showMenu .sub-menu {
    display: block;
}

.sidebar .nav-links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a:hover {
    opacity: 1;
}

.sidebar.close .nav-links li .sub-menu {
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
}

.sidebar.close .nav-links li:hover .sub-menu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
}

.sidebar .nav-links li .sub-menu .link_name {
    display: none;
}

.sidebar.close .nav-links li .sub-menu .link_name {
    font-size: 18px;
    opacity: 1;
    display: block;
}

.sidebar .nav-links li .sub-menu.blank {
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
    top: 50%;
    transform: translateY(-50%);
}

.profile-details {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.profile-details li a {
    font-size: 18px;
    display: flex !important;
    gap: 10px !important;
    text-decoration: none !important;
}


.home-section {
    position: relative;
    height: 100%;
    left: 260px;
    width: calc(100% - 260px);
    transition: all 0.5s ease;
    /* z-index: 1; */
}

.sidebar.close~.home-section {
    left: 78px;
    width: calc(100% - 78px);
}

.sidebar.close .profile-details ul li a span {
    display: none !important;
}

.sidebar.close .nav-links li {
    margin: 0 auto !important;
    justify-content: center !important;
    align-items: center !important;
}

.sidebar.close .nav-links .nav-link a {
    margin-left: 5px !important;
}

.home-content {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    height: 76px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.home-section .home-content {
    /* padding-top: 20px; */
    /* height: 60px; */
    display: flex;
    align-items: center;
}

.home-section .home-content .bx-menu,
.home-section .home-content .text {
    font-size: 35px;
}

.home-section .home-content .bx-menu {
    cursor: pointer;
}

.home-section .home-content .text {
    font-size: 26px;
    font-weight: 600;
}

.dashboard {
    padding: 30px 35px;
    background: #faf9ff;
    /* height: 100vh; */
    /* height: calc(100vh - 140px); */
}

.success_icon {
    width: 25px;
    height: 25px;
    object-fit: cover;
    position: relative;
    left: 72px;
    top: -24px;
}


.noactive {
    color: #667085;
    font-size: 18px;
}

.greatericon {
    width: 13px;
    height: 13px;
    margin-left: 2px;
    margin-right: 2px;
}

.box {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: #E0E2E7;
}

.boxes {
    border: 2px dashed #E0E2E7;
    border-collapse: separate;
    border-spacing: 20px !important;
    padding: 25px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    background-color: #F9F9FC;
    justify-content: center;
}

.btn {
    padding: 5px 7px;
    border-radius: 10px;
}

.boxess {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.icon {
    width: 18px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: red;
    border: none;
    color: #fff;
    position: absolute;
    top: -16px;
    left: 15px;
}

.circle {
    border: none;
    background-color: #E0E2E7;
    width: 70px;
    height: 45px;
    border-radius: 50%;
}

.para {
    font-size: 17px;
    font-weight: 400;
    width: 80%;
}

.copyicon {
    width: 30px;
    height: 30px;
    padding: 2px 6px;
    background-color: #269FFC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.img {
    object-fit: cover;
    height: 100% !important;
    width: 20% !important;
}

.text {
    font-size: 17px;
}

.safely {
    background-color: #fff;
}

@media (max-width : 500px) {
    .para {
        width: 100%;
    }

    .productdetail {
        padding: 30px;
    }

    .icon {
        width: 28px;
        height: 28px;
        padding: 3px 6px;
    }

    .text {
        font-size: 12px;
    }

    .req {
        font-size: 12px;
    }

    .img {
        object-fit: cover;
        height: 100% !important;
        width: 50% !important;
    }
}




@media (max-width: 768px) {
    .sidebar {
        left: -260px;
    }

    .sidebarlogo {
        display: none;
    }

    .sidebarclose {
        display: block;
    }

    .sidebar.close {
        left: -260px;
        width: 260px;
    }

    .home-section {
        width: 100%;
        left: 0;
    }

    .footer {
        width: 100%;
        left: 0;
    }

    .sidebar.close~.home-section {
        left: 0;
        width: 100%;
    }

    .home-content {
        position: fixed;
        height: 50px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .shape1,
    .shape2 {
        display: none;
    }

    .login-container {
        width: 100% !important;
        padding: 40px 20px !important;
    }


}

.loginline {
    width: 100%;
    height: 26px;
}

.shape1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 209.08px;
    height: 209.08px;
}

.shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 209.08px;
    height: 209.08px;
}

.loginlogo {
    width: 300px;
}

.login-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(0, 0, 0, 10%);
    position: relative;
    overflow: hidden;
    padding: 50px 30px;
    width: 486.21px;
    height: 431px;
    margin-top: 60px;
    z-index: 9999;
}

.login-form {
    width: 100%;
    position: relative;
    z-index: 2;
}

.login-form h2 {
    font-size: 35.73px;
    color: #000;
}

.input-group {
    margin-bottom: 1rem;
    position: relative;
}

.input-group input {
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: rgba(105, 72, 223, 20%);
    outline: none;
    height: 57.88px;
    border-radius: 10px;
    padding: 0px 20px;
    color: #000;
    font-size: 15.14px;
}

.input-group input::placeholder {
    color: #000;
}

.input-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.login-btn {
    background-color: #6c48ff;
    color: white;
    border: none;
    height: 50px;
    font-size: 18px;
    border-radius: 60px;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.arrow {
    position: absolute;
    top: -10px;
    right: -6px;
    width: 70px;
    height: 70px;
}

.login-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(141deg, #5D38E0 1%, transparent 20%, transparent 85%, #5D38E0 95%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}


.createbtn {
    height: 40px;
    padding: 0px 12px;
    background-color: #5D38E0;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    border: none;
}

.profileimg img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
}


.submenu {
    display: none;
    position: absolute;
    top: 60px;
    right: 5px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 180px;
    z-index: 10;
}

.submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu ul li {
    text-align: left;
    padding: 12px 10px;
}

.submenu ul li a {
    color: #333;
    text-decoration: none;
    display: block;
}






.dashboardh1 {
    color: #171A1F;
    font-size: 36px;
}

.dashboardh2 {
    color: #323842;
    font-size: 20.44px;
}

.progressticketbox1,
.progressticketbox2,
.progressticketbox3 {
    width: 31%;
    height: 168.36px;
}

.progressticketbox1 {
    background-color: rgba(97, 97, 255, 50%);
    border-radius: 7.81px;

    padding: 35px 25px;
}

.progressticketbox2 {
    background-color: #B2D6FF;
    border-radius: 7.81px;
    padding: 35px 25px;
}

.progressticketbox3 {
    background-color: #FFC4AE;
    border-radius: 7.81px;
    padding: 35px 25px;
}

.progressticket p {
    color: #323842;
    font-size: 20px;
}

.progressticket h2 {
    font-size: 41.67px;
    color: #171A1F;
}



.ticketTable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

th,
td {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

th {
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    font-weight: 600;
    color: #323842;
}

.ticketTable tr {

    border-bottom: 1px solid #DEE1E6;
}

.ticketTable .bg-primary {
    background-color: #379AE6 !important;
    border-radius: 15.63px;
    height: 31.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ticketTable .bg-danger {
    background-color: #DE3B40 !important;
    border-radius: 15.63px;
    height: 31.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.prefrebox {
    width: 41.67px;
    height: 41.67px;
    border-radius: 3.91px;
    background: #F3F4F6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prefre {
    width: 15.63px;
    height: 15.63px;
}

.sortbtn {
    height: 40.37px;
    border-radius: 3.91px;
    border: 1px solid #BCC1CA;
    background-color: #fff;
    padding: 0px 10px;
    font-size: 15.63px;
}

.dashboardh3 {
    color: #9095A0;
    text-decoration: underline;
    font-size: 17.23px;
    cursor: pointer;
}

.dashboardh4 {
    color: #379AE6;
    font-size: 17.23px;
    cursor: pointer;
}

.tickethead {
    font-size: 28px;
}

.leftbox {
    background-color: #F8F9FA;
}

.ticketimg {
    width: 24px;
    height: 24px;
}


.nav-tabs .nav-link {
    border: none !important;
    height: 45px;
    background: none !important;
    width: 100%;
    color: rgba(0, 0, 0, 60%);
    font-size: 14px;
}

.nav-tabs .nav-link:hover {
    color: rgba(0, 0, 0, 60%);

}

.nav-tabs {
    --bs-nav-tabs-border-color: transparent !important;
}

.tickettab.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #3434EC !important;
    font-weight: bold;
    border-radius: 8px;
    background-color: rgba(0, 0, 255, 10%) !important;
}

.has-search .input {
    height: 35px;
    background: #F3F4F6;
    border-radius: 6px;
    border: none;
    outline: none;
    padding-left: 2.375rem;
    color: #BCC1CA;
    font-size: 14px;
    width: 300px;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: block;
    font-size: 16px;
    text-align: center;
    pointer-events: none;
    color: #171A1F;
}


.detailselect {
    height: 32px;
    width: 133px;
    background: #5D38E0;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    padding: 0px 10px;
}

.detailh3 {
    font-size: 16px;
    color: #1E1E1E;
}

.detailh2 {
    font-size: 18px;
    color: #1E1E1E;
}

.detailp {
    font-size: 12px;
    color: rgba(30, 30, 30, 50%);
    line-height: 20.5px;
}

.detailbox {
    height: 104px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px 25px;
}

.detailinput {
    font-size: 12px;
    color: rgba(30, 30, 30, 50%);
    line-height: 20.5px;
    border: none;
    outline: none;
}

.analyticsbox1 {
    background: #fff;
    border-radius: 7.42px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 25px 34px;
}

.analyticsbox1 h1 {
    font-size: 39px;
    color: #171A1F;
}

.analyticsbox1 h2 {
    font-size: 17px;
    color: #424955;
}

#myChart {
    height: 400.68px !important;
}

.progressbar {
    height: 40px;
    background-color: rgba(52, 52, 236, 50%);
}

.progressbar .progress {
    height: 40px !important;
    background-color: #3434EC !important;
    width: 50%;
    border-radius: 0px !important;
}

.analyticsp {
    color: #9095A0;
    font-size: 14px;
}

.dotimg {
    width: 19px;
    height: 19px;
}

.ticketsdetail h2 {
    color: #323842;
    font-size: 17px;
}

.ticketsdetail h3 {
    color: #6E7787;
    font-size: 17px;
}


#myChart2 {
    width: 251.17px !important;
    height: 251.17px !important;
}

#myChart3 {
    width: 251.17px !important;
    height: 251.17px !important;
}

.ratedotimg {
    width: 14px;
    height: 14px;
}

#myChart4 {
    height: 180.22px !important;
    width: 180.7px !important;
}


.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 48%;
}

label {
    margin-bottom: 8px;
    font-size: 15px;
    color: #000000;
}

.form-control {
    border: 1px solid #DEE1E6;
    border-radius: 5px;
    font-size: 13px;
    background-color: rgba(200, 200, 200, 20%) !important;
    height: 50px;
}

textarea.form-control {
    resize: none;
}

.textarea {
    height: 194px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #5D38E0;
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #472CC3;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #DEE1E6 !important;
}



/* chat ui */


.lefticonimg {
    width: 22px;
    height: 22px;
}

.lefth2 {
    font-size: 20px;
    color: #323842;
}


.left {
    padding: 20px 20px 0px;
    background: #ffff;
    border: 1px solid #DEE1E6;
}

.center {
    padding: 20px 20px 0px;
    background: #ffff;
    border: 1px solid #DEE1E6;
}

.right {
    padding: 20px 20px 0px;
    background: #ffff;
    border: 1px solid #DEE1E6;
}



.box-body {
    position: relative;
    overflow-x: hidden;
}

.box-body {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;

}

.direct-chat-messages {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.scroll {
    height: 83vh;
    overflow-y: auto;
}

.direct-chat-messages,
.direct-chat-contacts {
    -webkit-transition: -webkit-transform .5s ease-in-out;
    -moz-transition: -moz-transform .5s ease-in-out;
    -o-transition: -o-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}


.direct-chat-msg {
    margin-bottom: 10px;
}

.direct-chat-msg,
.direct-chat-text {
    display: block;
}

.direct-chat-info {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}

.direct-chat-img {
    border-radius: 50%;
    float: left;
    width: 40px;
    height: 40px;
}

.leftchatmsg {
    border: 1px solid #9095A0;
    background: #E0E1FA;
    border-radius: 4px;
    text-align: center;
    font-size: 15px;
    padding: 14px;
    text-wrap: wrap;
    width: 100%;
    word-break : break-word;
}

.rightchatboxtext {
    border: 1px solid #DEE1E6;
    background: #FFFFFF;
    border-radius: 4px;
    text-align: center;
    font-size: 15px;
    padding: 14px;
    text-wrap: wrap;
    width: 100%;
    word-break : break-word;
}

.timestamp {
    font-size: 12px;
    color: #6E7787;
}

.onlinedotimg {
    position: absolute;
    bottom: -6px;
    right: 0;
}

.onlinedotimg img {
    width: 13px;
    height: 13px;
}

.detailimg {
    width: 28px;
    height: 28px;
    border-radius: 50px;
}

.lefth3 {
    font-size: 14px;
    overflow : hidden;
}

.gray {
    color: #6E7787;
}

.black {
    color: #323842;
}

.detailssimg {
    width: 16px;
    height: 16px;
}

.lefth3detail {
    font-size: 10px;
    background: #F8F5FA;
    border-radius: 14px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A67DB8;
    width: fit-content;
}

.lefth3 .badge {
    color: #DE3B40 !important;
    background: #FDF2F2 !important;
    font-size: 12px;
    font-weight: 400;
}

.arrowimg {
    width: 28px;
    height: 28px;
    cursor: pointer;
}


.infoicon {
    width: 16px;
    height: 16px;
}

#leadInfo {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
}

#leadInfo.show {
    max-height: 1000px;
    /* Set a large enough value to fully show content */
}

#toggleArrow.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.chat-footer {
    border: 1px solid #DEE1E6;
    padding: 20px 15px;
}

.messageimg {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.msgsendbtn {
    background: transparent;
    border: none;
}

.msgsendimg {
    width: 22px;
    height: 22px;
}

.messageinput {
    outline: none;
    font-size: 15px;
    border: none;
    width: 350px;
}
 @media(max-width : 500px){
    .messageinput {
        width: 100%;
    }
}
.useronlinedotimg {
    position: absolute;
    left: 28px;
    top: 22px;
}

.useronlinedotimg img {
    width: 11px;
    height: 11px;
}

.userlist h2 {
    margin-bottom: 0;
    font-size: 14px;
    color: #424955;
}

.userlist h1 {
    margin-bottom: 0;
    font-size: 12px;
    text-wrap: nowrap;
    color: #323842;
}

.activebox {
    background-color: #F3F4F6;
}

.selectchat {
    color: #ffffff;
    background-color: #5D38E0;
    border-radius: 5px;
    width: 90px;
    height: 36px;
    padding: 0px 10px;
}

/* chat ui */

/* profile ui */

.profile-picture {
    position: relative;
}
.profile-picture img {
    border: 4px solid #ddd;
    width: 140px;
    height: 140px;
}

.savebtn{
    background: #5D38E0;
    height: 45px;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}


.form-label {
    font-weight: 600;
}

