@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* font-family: "Montserrat", sans-serif; */


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat';
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    font-family: 'Montserrat';
    line-height: 25px;
    margin: 0 0 20px;
}


/***** Font Files *****/

@font-face {
    font-family: 'BlenderPro-Medium';
    src: url(../fonts/BlenderPro-Medium.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Cutmark';
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    /* font-family: 'Rajdhani'; */
    font-size: 42px;
    line-height: 1;
    color: #000;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h3 {
    font-family: 'Cutmark';
    font-size: 21px;
    line-height: 1.2;
    color: #111010;
    font-weight: 300;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h4 {
    font-family: 'BlenderPro-Medium';
    font-size: 24px;
    line-height: 1.2;
    color: #111010;
    font-weight: 300;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Cutmark';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Montserrat';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    /* background: #fff url('../images/arrow.png') no-repeat right !important; */
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* Sidebar SEction Start */

.dashboard_page-box {
    background: #fff;
    position: relative;
    z-index: 9;
}

section.side_bar {
    height: 100%;
    position: absolute;
    top: 0;
    min-height: fit-content;
    bottom: 0;
    left: 1%;
    background: #fff;
    z-index: 11;
    transition: 0.5s;
    right: 0;
    padding: 0px 0px 100px;
    width: 14.7%;
}

.side-bar-logo {
    text-align: center;
    border-bottom: 1px solid #fff;
    background: #fff;
    padding: 41px 0px;
}

.side-bar-logo img,
.side-bar-logo a {
    width: auto;
    object-fit: cover;
}

.profile-pic {
    position: relative;
}

.profile-pic img {
    width: 100%;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}

.dashboard_page-box .col-xl-2.col-lg-3.col-md-4 {
    padding: 0;
}

.dashboard_page-box .col-xl-10.col-lg-9.col-md-8 {
    padding: 0;
}

.side-bar-profile {
    text-align: center;
    padding: 20px 0;
}

.side-bar-profile h6 {
    font-size: 10px;
    color: #ffffff;
    text-transform: capitalize;
}

.side-bar-profile img {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    object-fit: cover;
}

.side-bar-profile h5 {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
}

ul.slidebar_menu a {
    font-size: 14px;
    text-transform: uppercase;
    color: #101010;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 0 0 15px;
    margin-bottom: 15px;
    width: 100%;
    height: 60px;
    transition: 0.3s ease-in-out;
    font-family: 'BlenderPro-Medium';
}

ul.slidebar_menu a:hover,
ul.slidebar_menu a.active {
    background: #e90004;
    color: #fff;
    border-radius: 7px;
}

ul.slidebar_menu a img {
    transition: .2s all;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 7px;
    object-fit: contain;
}

ul.slidebar_menu a:hover img,
ul.slidebar_menu a.active img {
    filter: invert(1);
}

.side-bar-logout-box a {
    background: #e90004;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid #fff;
    height: 70px;
    letter-spacing: 1px;
    width: 100%;
    margin: 0 auto;
    border-radius: 6px;
    margin-top: 60px;
    margin-bottom: 10px;
    position: absolute;
    bottom: 0px;
}

.side-bar-logout-box a i {
    font-size: 18px;
    font-weight: 600;
}

.dashbord-right-box {
    width: 100%;
    height: 100%;
}

.subchild {
    display: none;
    margin-left: 20px;
    position: relative;
}

.slidebar_menu li:hover>.subchild {
    display: block;
    position: absolute;
    right: -170px;
    z-index: 999;
    background: #174d56;
    width: 170px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    top: 60px;
}

.slidebar_menu li a.active+.subchild {
    display: block;
    position: absolute;
    right: -170px;
    z-index: 999;
    background: #174d56;
    width: 170px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    top: 60px;
}

.slidebar_menu li a.active+.subchild a {
    justify-content: center;
}

li.list-item {
    position: relative;
}

.profile-pic {
    position: relative;
}

.profile-pic h3 {
    background: #fff;
    width: fit-content;
    padding: 5px 20px;
    margin: 0;
    border-radius: 6px;
    color: #151515;
    font-size: 15px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
}

.profile-pic img {
    width: 100%;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}


/* Sidebar SEction End */


/*  Header Nav Bar Start */

.search-nav {
    background: #ffffff;
    position: relative;
    z-index: 9;
    padding: 24px 30px 24px 30px;
}

.header-search button {
    width: 60px;
    height: 45px;
    background: #ebebeb00;
    border: 0;
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.header-search input {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 1px solid #dddddd;
    border-radius: 7px;
    height: 60px;
    padding-right: 80px;
    font-family: 'Montserrat';
    background: transparent;
}

.header-search input::placeholder {
    text-transform: uppercase;
}

ul.header-profile-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
    margin-right: 20px;
}

ul.header-profile-list li {
    position: relative;
    z-index: 1;
}

a.mailbox i {
    font-size: 22px;
    color: #918f8f;
    position: relative;
    z-index: 1;
    border: 1px solid #dbdbdb;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

a.mailbox span {
    width: 7px;
    height: 7px;
    background: #e90004;
    padding: 1px;
    position: absolute;
    top: 11px;
    right: 16px;
    border-radius: 16px;
    z-index: 1;
}

.mail-box {
    position: relative;
}

.user-profile-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    cursor: pointer;
    border-left: 1px solid #e7e7e7;
    margin-left: -10px;
    padding-left: 15px;
}

.user-profile-img img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
    border: 3px solid #e90004;
}

.user-profile-info h4 {
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.search-nav .row {
    align-items: center;
}

.notification-box {
    position: relative;
}

.side-bar-logo img,
.side-bar-logo a {
    width: auto;
    object-fit: cover;
}


/* Mail Box */

ul.mail-messages {
    position: absolute;
    right: 0;
    width: 230px;
    background: #e90004;
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
    top: 55px;
}

ul.mail-messages li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}

ul.mail-messages li .mail-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

ul.mail-messages li:hover {
    background: #000;
}

ul.mail-messages li .mail-info h6 {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
}

ul.mail-messages li .mail-info span {
    font-size: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: -13px;
}

ul.mail-messages li {
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    transition: .2s all;
}

ul.mail-messages li:last-child {
    border: 0;
}


/* Mail Box */


/* Notification Box */

ul.notification-messages-list {
    position: absolute;
    right: 0;
    top: 55px;
    width: 230px;
    background: #e90004;
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
}

ul.notification-messages-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}

ul.notification-messages-list li .notification-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

ul.notification-messages-list li:hover {
    background: #000;
}

ul.notification-messages-list li .notification-info h6 {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
}

ul.notification-messages-list li .notification-info span {
    font-size: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: -13px;
}

ul.notification-messages-list li {
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    transition: .2s all;
}

ul.notification-messages-list li:last-child {
    border: 0;
}

.notification-dropdown-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.notification-dropdown-btns a {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    background: #212529;
    padding: 5px 8px;
    border-radius: 5px;
    width: 48%;
    justify-content: center !important;
    border: 1px solid #000;
}

ul.notification-messages-list li:hover .notification-dropdown-btns a {
    background: #e90004;
}


/* Notification Box */


/* Profile Box */

.user-profile-dropdown {
    position: absolute;
    left: 0;
    width: 150px;
    top: 55px;
    background: #e90004;
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
    display: grid;
}

.user-profile-dropdown a {
    padding: 10px;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    transition: .2s all;
    text-align: center;
}

.user-profile-dropdown a:last-child {
    border: 0;
}

.user-profile-dropdown a:hover {
    background: #000000;
}

.user-profile-info h4>span {
    display: block;
    font-size: 12px;
    color: #777777;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.user-profile-info h4>i {
    position: absolute;
    right: -20px;
    top: 0;
}

.header-search {
    position: relative;
    width: 100%;
}

.header-search a {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #7c7c7c;
}

.bookmark-icon {
    font-size: 18px;
    color: #6b6b6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d7d7d7;
    border-radius: 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.upload-section {
    margin: auto;
}

.upload-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.upload-box {
    border: 1px dashed #ccc;
    border-radius: 6px;
    background-color: #f4f4f4;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.upload-box input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-box i {
    font-size: 20px;
    margin-bottom: 8px;
}

.upload-box p {
    margin: 0;
    font-size: 12px;
    color: #000;
}

.upload-note {
    font-size: 12px;
    margin-top: 6px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.uploaded-files {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.uploaded-files li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 13px;
}

.uploaded-files li .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.uploaded-files li .left i {
    font-size: 16px;
}

.uploaded-files li i.fa-xmark {
    color: red;
    cursor: pointer;
}


/* Profile Box */


/* Page Content */

.main-wrap {
    background: #eeeeee;
    padding: 30px 30px;
    border-radius: 10px 0 0 10px;
    position: relative;
    z-index: 1;
    height: 100vh;
}

/* Profile Page Start */

.setting-main-all {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    height: 100%;
    border-radius: 10px 0 0 0;
}

.prf-heading h2 {
    font-size: 28.31px;
}

.setting-main-all ul#myTab {
    border: 1px solid;
    margin: 20px 0;
    padding: 0;
    border-radius: 5px;
    border: 0;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.setting-main-all .nav-link {
    text-transform: uppercase;
    border-radius: unset;
    background: transparent;
    border-radius: 5px;
    color: #000;
    font-size: 12px;
    border: 1px solid #c0c0c0;
    font-weight: 500;
}

.setting-main-all form label {
    font-size: 14px;
    color: #171717;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.setting-main-all form input,
.setting-main-all form select {
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
    background: unset;
    height: 50px;
    font-size: 12px;
    padding: 0 20px;
    margin-bottom: 30px;
    color: #000;
    border: 2px solid #e7e7e7;
    appearance: auto;
}

.prf-input input[type="password"]::placeholder {
    font-size: 12px;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.setting-main-all form input::placeholder {
    text-transform: uppercase;
}

.prf-heading.prfhde {
    position: absolute;
    top: 105px;
    left: 60px;
    width: 50%;
}

.prf-heading.prfhde h2 {
    margin: 0;
    font-size: 22px;
}

.setting-main-all .nav-link.active {
    color: #fff;
    position: relative;
    background: #e90004;
    border-radius: 4px;
    border: 0;
}

.setting-main-all form textarea {
    width: 100%;
    border-width: 1px;
    border-color: rgb(0 0 0 / 24%);
    border-style: solid;
    border-radius: 5px;
    background: unset;
    padding: 10px 20px;
    margin-bottom: 30px;
    color: #fff;
    height: 100px;
    resize: none;
}

.setting-main-all form button {
    font-size: 14px;
    color: #ffffff;
    background: #e90004;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 5px;
    border: 0;
    letter-spacing: 1px;
    font-family: 'BlenderPro-Medium';
}

.pofile-chg-box h5 {
    font-size: 25px;
    color: rgb(20 20 20);
    text-transform: uppercase;
}

.pofile-chg-box ul li img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 3px 1px #fff;
}

.pofile-chg-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.pofile-chg-box button {
    border-width: 1px;
    border-color: #ebebeb;
    border-style: solid;
    border-radius: 5px;
    background-color: rgb(29 29 29 / 0%);
    height: 50px;
    text-transform: uppercase;
    padding: 0 50px;
    font-size: 14.79px;
    color: #434343;
    font-weight: 500;
    font-family: 'BlenderPro-Medium';
}

.pofile-chg-box {
    padding: 0 20px;
}

.prf-top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid #d7d7d7;
}

.follower-box {
    border: 1px solid;
    border-radius: 20px;
    padding: 30px 20px;
    background: #1d1d1d;
    margin-bottom: 20px;
}

ul.followers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.follower-box h4 {
    font-size: 32px;
    font-family: "BlenderPro";
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    margin-bottom: 0;
}

ul.followers p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.502);
    text-transform: uppercase;
}

.followers-btn {
    display: flex;
    justify-content: center;
}

.Setting-main-box {
    border-radius: 15px;
    height: 100%;
}

.setting-main-all form input::placeholder {
    color: #8b8b8b;
}

.prf-input h2 {
    font-size: 20px;
    color: #1b1b1b;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

ul.anual-review-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review-doc-name a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.review-doc-name i {
    font-size: 35px;
}

.review-doc-name i.fa-solid.fa-file-word {
    color: #2c3e93;
}

.review-doc-name i.fa-solid.fa-file-pdf {
    color: #e90004;
}

ul.anual-review-list li {
    width: 45%;
    margin: 10px 0;
}

.review-doc-name h4 {
    font-size: 21px;
    margin: 0;
}

.review-doc-name i.fa-solid.fa-download {
    color: #000;
    font-size: 20px;
    width: 50px;
    text-align: end;
}


/* Profile Page End */


/* Profile Page  */


/* Login Page */

.login-pagee {
    height: 100vh;
}

.login-pag-logo {
    text-align: center;
    margin-bottom: 50px;
}

.login-pag-logo img {
    width: 15%;
}

.log-form.chg1 {
    background: #fff;
    padding: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 115%;
    height: 100%;
    display: block;
    align-content: center;
    padding-right: 100px;
}

.log-form-heading h2 {
    font-size: 31px;
    color: #292e38;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.log-form-heading p {
    font-size: 14px;
    color: #9e9595;
    font-family: 'BlenderPro-Medium';
}

.log-form-input label {
    font-size: 14px;
    font-family: 'BlenderPro-Medium';
    color: #9e9595;
    margin: 10px 0 0;
}

.log-form-input input {
    width: 100%;
    height: 50px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #a7a7a7;
    margin: 10px 0;
    font-size: 14px;
    font-family: 'BlenderPro-Medium';
}

.log-form-input input::placeholder {
    color: #7c7c7c;
    text-transform: uppercase;
}

.view-pass {
    position: relative;
    z-index: 1;
}

.view-pass i {
    position: absolute;
    bottom: 26px;
    right: 2%;
    margin: auto;
    display: flex;
    align-items: center;
}

.btn-contact-log button {
    width: 100%;
    height: 55px;
    font-size: 15px;
    color: #fff;
    background: #e90004;
    border: 0;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
    margin: 15px 0;
}

.log-form-footer a {
    font-size: 14px;
    color: #a5aab5;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.login-with ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 30px;
    gap: 20px;
}

.login-with ul li {
    width: 100%;
    text-align: center;
    background: #1976d2;
    height: 55px;
    display: grid;
    place-content: center;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
}

.login-with ul li i {
    color: #fff;
}

li.back-colour {
    background: #121212 !important;
}

li.back-colour1 {
    background: #d84938 !important;
}

.login-image img {
    width: 90%;
    margin-left: auto;
    display: block;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.log-form-footer {
    text-align: end;
}


/* Login Page */


/* Chat Page */

.chat-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    max-width: 100%;
    background: #fff;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.chat-icons button {
    border: 0;
    background: transparent;
    border-right: 1px solid #dddddd;
    padding: 0 10px 0 0;
}

.chat-icons button:last-child {
    border: 0;
}

.chat-input-wrapper .emoji-icon {
    font-size: 18px;
    margin-right: 10px;
    color: #aaa;
}

.chat-input-wrapper .chat-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
}

.chat-input-wrapper .chat-icons {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.chat-input-wrapper .chat-icons .icon {
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
}

.chat-input-wrapper .mic-btn {
    border: none;
    cursor: pointer;
    border-width: 1px;
    border-color: rgb(216, 216, 216);
    border-style: solid;
    border-radius: 5px;
    background-color: rgb(242, 241, 241);
    width: 52px;
    height: 48px;
    position: relative;
    right: 0%;
    bottom: 0;
    top: 0;
    margin: 0px;
}

.chat-input-wrapper .mic-btn .fa-microphone {
    color: red;
    font-size: 18px;
}

.sideNav2 {
    height: 100%;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(55px);
    border-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: auto;
    /* border: 1px solid #ffffff21; */
    padding: 0;
    /* height: 640px; */
    /* overflow-y: scroll; */
}

.chat-top-input {
    padding: 0 20px 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddebf4;
}

.client-input {
    position: relative;
}

form.chat-top-input-form input {
    width: 355px;
    height: 50px;
    font-size: 14px;
    font-family: montserrat;
    padding: 15px 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    border: 1px solid #000;
    margin: auto;
    right: 30px;
    z-index: 9;
}

.client-input input {
    background: #ffffff;
    border-radius: 5px;
    color: #101010;
    text-transform: inherit;
    border: 0;
}

.client-input button {
    color: #000;
    background: transparent;
    font-size: 14px;
    border: 0;
    position: relative;
    margin: auto;
    right: 0;
}

.group {
    display: grid;
    grid-template-columns: 54px calc(100% - 55px);
    grid-template-rows: repeat(2, 30px);
    width: calc(100% - 10px);
    /* margin: 10px; */
    padding: 2px 30px;
    list-style-type: none;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
}

.avatar {
    grid-row: 1 / span 2;
    /* background-color: white; */
    border-radius: 50%;
    height: 100%;
    width: 100%;
    display: flex;
    /* padding: 10px; */
    position: relative;
}

.GroupName {
    font-weight: 500;
    padding: 0px 10px;
    font-family: 'Montserrat';
    font-size: 16px;
    color: #000;
    line-height: 40px;
}

.GroupDescrp {
    width: 100%;
    padding: 0px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    color: #000;
    line-height: 17px;
}

span.time {
    font-size: 11px;
    color: #cfdbe3;
    position: absolute;
    right: 5px;
    bottom: 0;
    top: 50%;
}

span.non-active-dot {
    border: 1px solid #fff;
    width: 10px;
    height: 10px;
    background: #d4e1ea;
    padding: 1px;
    position: absolute;
    top: 25px;
    right: 12px;
    border-radius: 10px;
    z-index: 1;
}

.avatar img {
    height: 45px;
    width: 45px;
    margin: auto;
    border-radius: 50%;
}

span.n-message {
    position: absolute;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e90004;
    color: #fff;
    z-index: 99;
    right: 0;
    top: 0;
}

li.group.actve-chat {
    background: #e90004;
}

span.non-active-dot.active {
    background-color: #e90004;
}

.MessageContainer {
    flex: 1;
}

.chat-box {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.chat-header.dot-relative {
    position: relative;
}

.chat-header {
    padding: 27.5px 20px;
    border-bottom: 1px solid #ddebf4;
    display: flex;
    justify-content: space-between;
}

.chat-header.dot-relative span.dot {
    width: 10px;
    height: 10px;
    right: unset;
    left: 15%;
    top: 43%;
    transform: translateY(-55%);
    position: absolute;
    color: #000;
    background: #e90004;
    border-radius: 60px;
}

.chat-header span {
    font-size: 17px;
    font-weight: 500;
    font-family: 'BlenderPro-Medium';
    text-transform: uppercase;
}

.chat-messages {
    flex: 1;
    padding: 35px;
    overflow-y: auto;
}

.message {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 24px;
}

.message.sent {
    justify-content: flex-end;
}

.message img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-position: top;
}

.message.received .text {
    background: transparent;
    color: #8ea1b4;
}

.message .text {
    padding: 10px 15px;
    border-radius: 5px;
    max-width: 60%;
    position: relative;
    font-size: 14px;
    font-family: 'BlenderPro-Medium';
}

.message.sent .text {
    background: #e90004;
    color: white;
}

#MessageForm {
    /* padding: 10px; */
    /* display: flex; */
    width: 100%;
    position: relative;
}

.chat-page-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

form.chat-top-input-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 5px;
}

form.chat-top-input-form a {
    width: 35px;
    border-right: 1px solid #000;
    color: #000;
}

section.Chat {
    position: relative;
    z-index: 1;
}

section.Chat::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ddebf4;
}

.chat-page-box .col-lg-4 {
    padding: 0;
}

.chat-page-box .col-lg-8 {
    padding: 0;
}

.icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.chat-header .icons i {
    border-left: 1px solid #c9d6df;
    padding: 0 10px 0 20px;
    margin-left: 0;
    color: #e90004;
    font-size: 20px;
}

.chat-header .icons i:first-child {
    border: 0;
}

.chat-typ {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.chat-typ button {
    background: #e90004;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'BlenderPro-Medium';
    border: 0;
    border-radius: 5px;
    padding: 10px 30px;
    position: relative;
    z-index: 1;
}

.chat-typ button.admin-btn {
    background: #e9e9e9;
    color: #000;
}

.pat-btn::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #e90004;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: auto;
    transform: rotate(45deg);
    z-index: -2;
}

li.group.actve-chat * {
    color: #fff;
}

li.group.actve-chat span.non-active-dot.active {
    background: #fff;
}


/* Chat Page */


/* Home Page */

.theme-box {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 25px 20px;
}

ul.order-list {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.order-list li {
    width: 155px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding: 20px 13px;
    transition: .5s all;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 120px;
    min-width: 23.5%;
}

.order-list-box.theme-box #appointment-table {
    width: 1270px !important;
    min-width: 100%;
}

ul.order-list li:hover {
    background: #e90004;
}

ul.order-list li:hover span {
    background: #fff;
    color: #e90004;
}

ul.order-list li:hover h5 {
    color: #fff;
}

ul.order-list span {
    font-size: 15px;
    color: #fff;
    background: #e90307;
    font-family: 'BlenderPro-Medium';
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    border-radius: 5px;
}

ul.order-list h5 {
    font-size: 14px;
    color: #030303;
    text-transform: uppercase;
    margin: 15px 0 0;
    font-family: 'BlenderPro-Medium';
}

ul.service-date-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.service-date-list li {
    width: 46%;
}

ul.service-date-list li label {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

ul.service-date-list li label i {
    margin-right: 8px;
    font-weight: 100;
}

ul.service-date-list li input {
    width: 100%;
    border: 1px solid #dbdbdb;
    padding: 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 10px;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 40px 0 0;
}

.theme-btn {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
    border: 0;
    padding: 12px 40px;
    border-radius: 5px;
    background: #e90004;
}

.cancel-btn {
    background: #ededed;
    color: #000;
}

.service-date-box {
    padding: 30px 20px;
    height: 100%;
}

.order-list-box .dropdown-wrapper {
    display: flex;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.order-list-box .custom-dropdown {
    position: relative;
    border: 1px solid #ccc;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    min-width: 140px;
}

.order-list-box .custom-dropdown::after {
    content: '\f078';
    /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 12px;
}

.order-list-box .dropdown-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    /* width: 100%; */
    height: 100%;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    padding: 10px 35px 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
    font-weight: 600;
}

.order-list-box {
    margin-top: 25px;
}

ul.orde-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

ul.orde-search li:first-child {
    width: 57%;
    position: relative;
    z-index: 1;
}

ul.orde-search li:last-child {
    width: 25%;
}

ul.orde-search input {
    border-width: 1px;
    border-color: rgb(219, 219, 219);
    border-style: solid;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-size: 14px;
    padding-right: 170px;
}

ul.orde-search input::placeholder {
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}

ul.orde-search li button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 10px 60px;
}

.order-list-box table.table th,
.order-list-box table.table td {
    font-size: 14px;
    color: #021627;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
    vertical-align: middle;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.order-list-box .red {
    color: #e90004 !important;
}

.order-list-box .blue {
    background: #8accfe !important;
    padding: 4px 10px;
    border-radius: 3px;
}

.order-list-box .green {
    background: #bbf7d0 !important;
    color: #166534 !important;
    padding: 4px 10px;
    border-radius: 3px;
}

.assignment-icon button {
    width: 25px;
    height: 25px;
    border: 0;
    background: #e90004;
    display: grid;
    place-content: center;
    padding: 5px;
    margin: 4px auto;
    border-radius: 3px;
}

.assignment-icon button img {
    filter: invert(1);
}

.order-list-box table.table th {
    border: 1px solid #e5e5e5 !important;
}

.order-list-box .table {
    margin: 20px 0;
    box-shadow: 0 0 20px 0 #f7f7f7;
}


/* Home Page */


/* My Schedule Page */

.gray {
    background: #e4e4e4;
    padding: 4px 10px;
    border-radius: 3px;
}

.my-schedule-page .order-list-box .red {
    background: #e900044d;
    padding: 4px 10px;
    border-radius: 3px;
}

.my-schedule-page ul.orde-search h2 {
    font-size: 28px;
    margin: 0 0 5px;
    font-family: 'BlenderPro-Medium';
}

.my-schedule-page ul.orde-search p {
    font-size: 15px;
    font-family: 'BlenderPro-Medium';
    margin: 0;
}

.page-content.my-schedule-page ul.orde-search li:last-child {
    text-align: end;
}

.page-content.my-schedule-page ul.orde-search li a {
    padding: 15px 30px;
}

.yellow {
    background: #fef9c3;
    color: #a46225;
    padding: 4px 10px;
    border-radius: 5px;
}

.grn {
    background: #dcfce7;
    color: #158042;
    padding: 4px 10px;
    border-radius: 5px;
}

.leave-manag-box .table th,
.leave-manag-box .table td {
    text-align: left !important;
    padding: 12px 0 10px 30px;
}

.leaveform-box h2 {
    font-size: 28px;
    margin: 0 0 5px;
    font-family: 'BlenderPro-Medium';
}

.leave-input input,
.leave-input select {
    width: 100%;
    height: 60px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 14px;
    color: #909091;
    text-transform: uppercase;
    -webkit-appearance: none;
}

.leave-input label {
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    margin: 25px 0 3px;
}

.leave-input img {
    position: absolute;
    right: 70px;
    bottom: 0;
}

.leave-input {
    position: relative;
    z-index: 1;
}

.leave-input button {
    margin: 30px 0 0;
}

.leave-btn button {
    margin: 25px 0 0;
    padding: 20px 35px;
    font-size: 16px;
}

img.arrow-inp {
    right: 30px;
    bottom: 25px;
}

.leave-input textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding: 20px;
    font-size: 14px;
    color: #909091;
    text-transform: uppercase;
    -webkit-appearance: none;
    margin: 25px 0;
    display: block;
    align-content: flex-end;
    resize: unset;
}

.leave-input.lev-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.leave-input.lev-check input {
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
}

.leave-input.lev-check label {
    margin: 0;
}


/* My Schedule Page */

.file-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    padding: 15px;
    margin-bottom: 15px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.file-icon {
    width: 120px;
    height: 120px;
    background: #e0f7fa;
    color: #007c91;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 19px;
    border-radius: 4px;
    margin-right: 15px;
}

.file-info {
    flex: 1;
}

.file-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.file-info small {
    color: #555;
    display: block;
    font-weight: 600;
}

.file-buttons button {
    border: none;
    background: #e90004;
    color: white;
    padding: 12px 14px;
    border-radius: 5px;
    cursor: pointer;
    margin: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 150px;
    font-weight: 600;
}

.file-icon i {
    font-size: 40px;
    color: #000;
}

button.mobile-menu,
button.close-sidebar-button {
    height: 40px;
    width: 40px;
    display: flex;
    font-size: 14px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    align-items: center;
    transition: ease-in;
    justify-content: center;
    transition-duration: 0.5s;
    border: 2px solid #ce2838;
}

button.mobile-menu:hover,
button.close-sidebar-button:hover {
    color: #fff;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: #ce2838;
}

button.mobile-menu:hover i,
button.close-sidebar-button:hover i {
    transition: ease-in-out;
    transition-duration: 0.5s;
    transform: rotate(360deg);
}

button.mobile-menu i,
button.close-sidebar-button i {
    transition: ease-in;
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

/*Dashedboard Start*/

.documents-table .gd-responsive-table {
    overflow-x: scroll;
}

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .dashboard_page-box #sidebar {
        width: 24.666667%;
    }

    section.side_bar {
        height: 100%;
        width: 22.5%;
        padding: 0px 0px 70px;
    }

    .main-wrap {
        height: 100vh;
        padding: 10px 10px;
    }

    .user-profile-box {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .file-card {
        gap: 10px;
        margin: 5px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .documents-table .gd-responsive-table table {
        width: 800px;
    }

    .pofile-chg-box ul {
        align-items: flex-start;
        flex-direction: column;
    }

    .pofile-chg-box {
        padding: 0 0px;
    }

    .setting-main-all form button {
        padding: 15px 20px;
    }

    .prf-heading.prfhde {
        top: 92px;
        left: 42px;
    }






}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    section.side_bar {
        width: 30.5%;
    }

    .chat-page-box .col-lg-4 {
        height: 0px !important;
    }

    .user-profile-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .documents-table .gd-responsive-table table {
        width: 800px;
    }

    .pofile-chg-box ul {
        align-items: flex-start;
        flex-direction: column;
    }

    .setting-main-all form button {
        padding: 15px 20px;
    }



}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    section.side_bar {
        min-height: fit-content;
        left: 0;
        overflow: hidden;
        width: 0;
    }

    .chat-page-box .col-lg-4 {
        height: 0px !important;
    }

    section.side_bar {
        transform: translateX(-110%);
        transition: 0.3s ease;
    }

    section.side_bar.show {
        transform: translateX(0);
        width: 300px;
        padding: 15px;
        max-width: 80%;
        box-shadow: 0px 0px 14px 5px #0000001f;
    }

    ul.header-profile-list {
        margin-right: 0px;
        margin-top: 25px;
        justify-content: space-between;
    }

    .user-profile-box {
        justify-content: space-between;
        flex-wrap: wrap;
        border: none;
    }

    .main-wrap {
        padding: 10px 0px;
    }

    .side-bar-logo {
        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .documents-table .gd-responsive-table table {
        width: 800px;
    }

    .pofile-chg-box ul {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .pofile-chg-box {
        padding: 0 0px;
    }

    .theme-box {
        border-radius: 10px;
        background-color: rgb(255, 255, 255);
        padding: 15px 10px;
    }

    .setting-main-all form input,
    .setting-main-all form select {
        margin-bottom: 15px;
    }

    .setting-main-all form .address-search-container input {
        margin-bottom: 0px;
        padding-left: 40px;
    }

    .side-bar-logout-box a {
        width: 90%;
    }

    .prf-heading.prfhde {
        top: 75px;
        left: 10px;
        width: 72%;
    }

    .tab-pane .col-lg-12 .row {
        margin: 0px auto;
    }

    .tab-pane .col-lg-12 .row .row,
    .tab-pane .col-lg-12 .row .col-lg-4,
    .tab-pane .col-lg-12 .row .col-lg-6,
    .tab-pane .col-lg-12 .row .col-lg-8,
    .tab-pane .col-lg-12 .row .prf-input,
    .tab-pane .col-lg-12 .row .prf-button,
    .tab-pane .col-lg-12 .row .col-lg-12 {
        padding: 0px;
    }

    .search-nav {
        padding: 15px;
    }

    .file-card {
        gap: 10px;
        margin: 5px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .order-list-box.theme-box #appointment-table {
        width: 1530px !important;
    }


}

@media only screen and (min-width: 0px) and (max-width: 575px) {

    .chat-page-box .col-lg-4 {
        height: 0px !important;
    }


    section.side_bar {
        transform: translateX(-110%);
        transition: 0.3s ease;
    }

    section.side_bar.show {
        width: 300px;
        padding: 15px;
        max-width: 80%;
        transform: translateX(0);
        box-shadow: 0px 0px 14px 5px #0000001f;
    }

    ul.header-profile-list {
        margin-right: 0px;
        margin-top: 25px;
        justify-content: space-between;
    }

    .user-profile-box {
        justify-content: space-between;
        border: none;
        flex-wrap: wrap;
    }

    .main-wrap {
        padding: 10px 0px;
    }

    .side-bar-logo {
        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .documents-table .gd-responsive-table table {
        width: 800px;
    }

    .pofile-chg-box ul {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .pofile-chg-box {
        padding: 0 0px;
    }

    .theme-box {
        border-radius: 10px;
        background-color: rgb(255, 255, 255);
        padding: 15px 10px;
    }

    .setting-main-all form input,
    .setting-main-all form select {
        margin-bottom: 15px;
    }

    .setting-main-all form .address-search-container input {
        margin-bottom: 0px;
        padding-left: 40px;
    }

    .side-bar-logout-box a {
        width: 90%;
    }

    .prf-heading.prfhde {
        top: 75px;
        left: 10px;
        width: 72%;
    }

    .tab-pane .col-lg-12 .row {
        margin: 0px auto;
    }

    .tab-pane .col-lg-12 .row .row,
    .tab-pane .col-lg-12 .row .col-lg-4,
    .tab-pane .col-lg-12 .row .col-lg-6,
    .tab-pane .col-lg-12 .row .col-lg-8,
    .tab-pane .col-lg-12 .row .prf-input,
    .tab-pane .col-lg-12 .row .prf-button,
    .tab-pane .col-lg-12 .row .col-lg-12 {
        padding: 0px;
    }

    .search-nav {
        padding: 15px;
    }

    .file-card {
        gap: 10px;
        margin: 5px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .order-list-box.theme-box #appointment-table {
        width: 1530px !important;
    }

    .chat-input-wrapper .chat-input {
        flex: 1;
        font-size: 13px;
        max-width: 100%;
        width: 100%;
    }

    .chat-input-wrapper {
        padding: 5px 5px !important;
        gap: 0px;
    }

    .chat-input-wrapper .chat-icons {
        display: flex;
        gap: 1px;
        margin-left: 1px;
    }



}


/*Media Query End*/