﻿.field-validation-error > span {
    color: #DC3545 !important;
}

.validation-summary-errors > ul > li {
    color: #DC3545 !important;
}




.input {
    width: 30px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    margin: 0 10px;
    text-align: center;
    font-size: 16px;
    cursor: not-allowed;
    pointer-events: none;
}

    .input:focus {
        border-bottom: 1px solid orange;
        outline: none;
    }

    .input:nth-child(1) {
        cursor: pointer;
        pointer-events: all;
    }

.test {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
    opacity: 0.5;
}

.displaynone {
    display: none;
}

.upload_photo_wrap img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 5%;
    cursor: pointer;
}

.cr-boundary {
    width: 300px !important;
    height: 200px !important;
    margin: unset !important;
}

.croppie-container .cr-slider-wrap {
    margin-left: 25px !important;
    text-align: unset !important;
}

.remove_profile {
    position: absolute;
    cursor: pointer;
    padding: 3px;
    margin-left: -20px;
}

.view-image {
    margin: 10px 0px;
}

    .view-image img {
        max-width: 250px;
        max-height: 250px
    }

    .view-image span {
        width: 25px;
        height: 25px
    }

.divViewImage {
    position: relative;
}

    .divViewImage .viewImage {
        position: absolute;
        /*left: 108px;*/
        cursor: pointer;
        padding: 3px;
        margin-left: -20px;
    }

.divViewImage {
    position: relative;
}

    .divViewImage .viewImage {
        position: absolute;
        /*left: 108px;*/
        cursor: pointer;
        padding: 3px;
        margin-left: -20px;
    }

.form-control[type=file] {
    overflow: hidden;
    padding: 9px 14px;
}

.r-image-preview {
    position: relative;
    margin-bottom: 1.5rem;
    max-width: 250px;
    max-height: 250px;
    margin-top: 5px;
}

    .r-image-preview img {
        max-width: 250px;
        max-height: 250px;
    }

    .r-image-preview .r-image-icon {
        position: absolute;
        right: 152px;
        top: 5px;
        font-size: 1rem;
        background-color: white;
        color: #fff;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
        transition: 0.3s;
    }

        .r-image-preview .r-image-icon:hover {
            color: #fff;
            background-color: rgba(0,0,0,1);
        }


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}


    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: relative;
    cursor: pointer;
    height: 26px;
    width: 50px;
    background-color: lightgray;
    display: inline-block;
    -webkit-transition: .4s;
    transition: .4s;
}


    .slider:before {
        position: absolute;
        content: "OFF";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: 900;
        text-align: center;
        width: 100%;
    }

/* Styles for the switch when checked */
input:checked + .slider {
    background-color: #f15a22;
}

    input:checked + .slider:before {
        content: "ON";
        transform: translate(-50%, -50%);
        color: white;
        font-weight: bolder;
        width: 100%; /* Ensure text takes full width of the button */
    }

/* Styles for the switch focus */
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

/*
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: lightgray;
    -webkit-transition: .4s;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

    .slider:before {
        position: absolute;
        content: "Off";
        height: 26px;
        width: 26px;
        color: white;
        -webkit-transition: .4s;
        transition: .4s;
        font-weight: 900;
        text-align: center;
        line-height: 26px;
    }

input:checked + .slider {
    background-color: #f15a22;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    content: "On";
    color: white;
    font-weight: bolder;
}

*/



.actslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: lightgray;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 180px;
}

    .actslider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 360px;
    }

input:checked + .actslider {
    background-color: #f15a22;
}

input:focus + .actslider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .actslider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    content: "";
    transform: translateX(30px);
    background-color: #fff;
    border-radius: 360px;
}




/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }













k-grid-header th.k-header > .k-link, .k-grid tr td, .k-grid tr th {
    line-height: 28px !important;
}

.k-grid th, .k-grid td {
    border-radius: 0 !important;
}

.k-editor, .k-grid, .k-menu, .k-scheduler {
    border-radius: 0 !important
}

    .k-grid tbody tr:nth-child(even) {
        background-color: #f1f1f1;
    }

    .k-grid tbody tr td {
        border: none !important;
        /*color: #a1a5b7 !important;*/
        color: #3f4254 !important;
    }

        .k-grid tbody tr td a {
            /*color: #a1a5b7 !important;*/
            color: #3f4254 !important;
        }

            .k-grid tbody tr td a.e-delete-icon {
                color: #FC5252 !important;
            }

    .k-grid tbody tr td,
    .k-grid thead tr th {
        font-size: 0.9rem;
    }

.k-grid-header th.k-header > .k-link,
.k-grid-header th.k-header {
    font-weight: 500 !important;
    color: #7e8299 !important;
    /*text-transform: uppercase;*/
}

.k-grid-filter .k-i-filter {
    color: #a1a5b7 !important;
}

.k-pager-numbers .k-state-selected {
    background-color: #047fb8 !important;
    color: #fff !important;
    border: none !important;
    border-radius: .475rem !important;
}

.k-pager-numbers .k-link, .k-pager-numbers .k-state-selected, .k-pager-wrap > .k-link {
    min-width: 1.6rem !important;
    height: 2.1rem !important;
    line-height: 2.1rem;
}

.k-gantt-toolbar .k-state-default, .k-grid .k-grouping-header, .k-grid-header, .k-grid-header-wrap, .k-grouping-header .k-group-indicator, .k-header, .k-pager-wrap, .k-pager-wrap .k-link, .k-pager-wrap .k-textbox {
    border-color: #dfdfdf !important;
}


    .k-autocomplete, .k-block, .k-button-group .k-tool, .k-calendar th, .k-content, .k-dateinput.k-state-disabled > .k-textbox:hover, .k-dropdown-wrap, .k-dropzone-active, .k-editable-area, .k-editor-dialog .k-tabstrip-items, .k-filter-row > th, .k-footer-template td, .k-grid td, .k-grid td.k-state-selected, .k-grid-content-locked, .k-grid-footer, .k-grid-footer-locked, .k-grid-footer-wrap, .k-grid-header, .k-grid-header-locked, .k-grid-header-wrap, .k-group, .k-group-footer td, .k-grouping-header, .k-grouping-header .k-group-indicator, .k-header, .k-input, .k-maskedtextbox.k-state-disabled > .k-textbox:hover, .k-pager-refresh, .k-pager-wrap, .k-pager-wrap .k-link, .k-panel > .k-item > .k-link, .k-panelbar .k-content, .k-panelbar .k-panel, .k-panelbar > .k-item > .k-link, .k-popup.k-align .k-list .k-item:last-child, .k-separator, .k-slider-track, .k-splitbar, .k-state-default, .k-state-default .k-select, .k-state-disabled, .k-textbox, .k-textbox > input, .k-tiles, .k-toolbar, .k-tooltip, .k-treemap-tile, .k-upload-files, .k-widget {
        border-color: #dfdfdf !important;
    }

        .k-pager-wrap .k-link {
            border: none !important;
        }

        .k-grid-header .k-header {
            background-color: #fff !important;
        }

        .k-grid-header th.k-header {
            border-bottom: 1px solid #dfdfdf !important;
            border-width: 0px 0px 1px 0px !important;
        }

.k-pager-wrap {
    background-color: #fff !important;
}


.k-pager-refresh:hover {
    background-color: transparent !important;
}

.k-border-danger {
    border: 1px solid red;
}

.k-pager-sizes.k-label .k-icon,
.k-pager-refresh .k-icon {
    color: #a1a5b7 !important;
}

.k-pager-wrap .k-pager-info {
    color: #7e8299 !important;
}


.bootstrap-datetimepicker-widget .btn {
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin: 0;
}

.bootstrap-datetimepicker-widget span, .bootstrap-datetimepicker-widget table td {
    padding: 0;
    height: 30px !important;
    line-height: 30px !important;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

    .pagination li {
        margin: 5px;
        cursor: pointer;
    }

.boldtext {
    font-weight: 600 !important;
}

.page-link {
    background-color: white !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    text-align: center;
    color: #f15a22 !important;
    font-size: 20px !important;
    font-weight: bolder !important;
}

    .page-link:hover {
        background-color: #f15a22 !important;
        border: none !important;
        border-radius: 5px !important;
        color: #fff !important;
        font-size: 20px !important;
        font-weight: bolder !important;
    }


    .page-link active {
        background-color: #f15a22 !important;
        border: none !important;
        border-radius: 5px !important;
        color: #fff !important;
        font-size: 20px !important;
        font-weight: bolder !important;
        box-shadow: 0 0 0 0.25rem rgba(250, 166, 26, 0.25);
    }

.page-link {
    text-align: center;
    line-height: 40px; /* Adjust this value based on your design */
}

.devavailability {
    padding-top: 20px !important;
}

.centered-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
}

/* profile page style */
.profile-page .container-fluid {
    padding: 0 114px;
}

.profile-banner {
    padding: 115px 0 105px 0;
    margin-top: -35px;
    background: url(../../images/profile-banner.svg) no-repeat;
}

.profile-page .dr-dashboard-title-search {
    background-color: #ffffff;
}

.profile-banner h1 {
    color: #F15A22;
    font-family: 'sharp_sans_no1bold';
    font-size: 64px;
    font-style: normal;
    font-weight: normal;
}

    .profile-banner h1 span {
        display: block;
        color: #263238;
        margin-top: 20px;
        font-family: 'sharp_sans_no1semibold';
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
    }

.profile-page .dr-dashboard-dtl {
    padding-bottom: 0;
}

.profile-page .search-field .form-control {
    width: 388px;
}

.profile-page .dr-dashboard-title-search {
    padding: 28px 40px;
}

.profile-middle-section h2 {
    line-height: 22px;
    margin-bottom: 10px;
    color: #F15A22;
    font-family: 'sharp_sans_no1semibold';
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
}

.profile-middle-section p {
    color: #263238;
    font-family: 'sharp_sans_no1medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 144%;
}

.profile-content span {
    display: table;
}

    .profile-content span em {
        display: table-cell;
        color: #9D9B9B;
        font-family: 'sharp_sans_no1medium';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 144%; /* 25.92px */
    }

    .profile-content span img {
        vertical-align: -2px;
        margin-right: 5px;
    }

.profile-star {
    margin: 30px 0 40px 0;
}

    .profile-star a {
        margin-right: 7px;
    }

    .profile-star span {
        color: #263238;
        display: block;
        margin-top: 5px;
        font-family: 'sharp_sans_no1medium';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 144%;
    }

.profile-contact-detail h3 {
    color: #F15A22;
    font-family: sharp_sans_no1semibold;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.profile-contact-detail a {
    display: block;
    margin-bottom: 30px;
}

.profile-contact-detail span {
    color: #9D9B9B;
    font-size: 18px;
}

.profile-contact-detail a.profile-phone-number {
    color: #263238;
    font-size: 18px;
    font-family: sharp_sans_no1semibold;
}

p.profile-address, .profile-contact-detail a.profile-mail-link {
    color: #646464;
    font-size: 18px;
    font-family: sharp_sans_no1semibold;
    font-weight: normal;
}

.specialization-icon span {
    width: 70px;
    height: 70px;
    display: block;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(255, 206, 126, 0.32);
}

.specialization-icon {
    margin-right: 20px;
}

.specialization-content {
    margin-bottom: 60px;
}

    .specialization-content:nth-last-child(2) {
        margin-bottom: 40px;
    }

.profile-middle-section .specialization-content h2 {
    color: #263238;
    font-family: sharp_sans_no1semibold;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 144%;
}

.profile-price {
    color: #F15A22;
    margin-left: 70px;
    text-align: right;
    font-family: 'sharp_sans_no1bold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 144%;
}

.specialization-content p {
    margin-bottom: 0;
    color: #A3A3A3;
    font-family: 'sharp_sans_no1medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 144%;
}

.specialization-section {
    position: relative;
    border-left: 1px solid #D2D2D2;
    border-right: 1px solid #D2D2D2;
    padding: 0 50px 48px 45px;
    margin: 0 20px;
}

.sprofile-graph-btn, .sprofile-calender-btn {
    display: inline-block !important;
}

.sprofile-graph-btn {
    width: 80px;
    margin-right: 10px;
}

    .sprofile-graph-btn .next-btn {
        float: right;
    }

    .sprofile-graph-btn button {
        display: inline-block;
    }

.profile-graph-img img {
    width: 100%;
}

.specialization-section .btn.btn-primary {
    width: 100%;
    font-family: sharp_sans_no1semibold;
    font-size: 24px;
    height: 48px;
    padding: 0 10px;
    line-height: 43px;
}

    .specialization-section .btn.btn-primary img {
        margin-left: 20px;
        vertical-align: -1px;
    }

.sprofile-graph-right {
    position: relative;
    top: -7px;
}

.profile-page .dr-dashboard-header {
    padding-right: 0;
}

@media (max-width:1500px) {
    .profile-page .container-fluid {
        padding: 0 50px;
    }

    .profile-page .search-field .form-control {
        width: 250px;
        padding-left: 50px;
        height: 50px;
    }

    .profile-banner h1 {
        font-size: 55px;
    }

        .profile-banner h1 span {
            font-size: 20px;
        }

    .specialization-section {
        margin: 0 10px 0 0px;
        padding: 0 30px 48px 30px;
    }

    .profile-middle-section h2 {
        font-size: 25px;
        line-height: 28px;
    }

    .profile-price {
        font-size: 20px;
    }

    .sprofile-graph-btn {
        width: 70px;
        margin-right: 0;
    }

    .sprofile-graph-right {
        width: 130px;
    }

    .sprofile-calender-btn img {
        width: 30px;
    }

    h2.appointment-title {
        font-size: 17px;
    }
}

@media (max-width:1024px) {
    h2.appointment-title {
        font-size: 25px;
    }

    .profile-graph-img img {
        width: auto;
        margin: 0px auto;
        display: block;
    }

    .specialization-section {
        border-right: 0;
        padding: 0 0px 48px 50px;
        margin: 0 0 0 30px;
    }

    .profile-appoinment-section {
        margin-top: 50px;
        margin-bottom: 30px;
    }
}

@media (max-width:1024px) {
    .profile-appoinment-section {
        margin-top: 10px;
    }

    .sprofile-graph-btn {
        width: 90px;
        margin-right: 20px;
    }

    .sprofile-graph-right {
        width: 144px;
    }

    .profile-banner {
        padding: 80px 0 50px 0;
    }

    .specialization-section {
        border-right: 0;
        padding: 40px 0px;
        margin: 40px 0px;
        border-left: 0;
        border-top: 1px solid #D2D2D2;
        border-bottom: 1px solid #D2D2D2;
    }
}

@media (max-width:767px) {
    h2.appointment-title {
        font-size: 18px !important;
        top: -7px;
        position: relative;
    }

    .profile-page .container-fluid {
        padding: 0 20px;
    }

    .profile-page .dr-dashboard-title-search {
        padding: 20px 20px;
    }

    .message-notification a:not(:last-child) {
        margin-right: 15px !important;
    }

    .profile-banner h1 {
        font-size: 35px;
    }

        .profile-banner h1 span {
            font-size: 18px;
            line-height: 25px;
        }

    .profile-content span {
        margin-top: 20px;
    }

    .specialization-section {
        padding: 30px 0px 40px 0px;
        margin: 30px 0px 20px 0px;
    }

    .profile-middle-section h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .profile-price {
        margin-left: 10px;
    }

    .specialization-content {
        margin-bottom: 50px;
        display: block !important;
    }

    .specialization-section .btn.btn-primary {
        font-size: 18px;
    }

        .specialization-section .btn.btn-primary img {
            margin-left: 10px;
            vertical-align: -2px;
        }

    .sprofile-graph-btn {
        width: 75px;
        margin-right: 10px;
    }

    .sprofile-graph-right {
        width: 123px;
        float: right;
    }

    .profile-graph-img img {
        width: 100%;
    }

    .profile-price {
        text-align: left;
        margin-left: 0;
        margin-top: 15px;
    }

    .profile-middle-section .specialization-content h2 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width:767px) {
    .sprofile-graph-right {
        width: 153px;
        float: right;
    }
}




.main-toggle {
    height: 20px;
    border-radius: 30px;
    width: 65px !important;
}

    .main-toggle span {
        font-size: 8px;
        /*width: 17px;*/
        /*left: 48px !important;*/
        border-radius: 50% !important;
    }

    .main-toggle.on span {
        left: 46px !important;
    }

    .main-toggle span::before {
        content: 'Active';
        left: -36px;
        font-size: 8px;
    }

    .main-toggle span::after {
        content: 'Inactive';
        right: -43px;
        font-size: 8px;
    }

    .main-toggle span::before, .main-toggle span::after {
        top: 4px;
    }
.kendo-title {
    color: #f15a22 !important;
    font-size:18px  !important;
}
.blank-star {
    color: #faa61a !important;
}
.pac-container{
    z-index:1100 !important
}

.det-appmt-card h2 {
    font-size: 1.5rem;
}
.gmnoprint {
    top: 10px !important;
}
.chat-listing {
    background-color: rgb(252, 252, 252);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    padding: 15px;
}

    .chat-listing .user {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        .chat-listing .user:not(:last-child) {
            border-bottom: 1px solid rgb(226, 226, 226);
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

        .chat-listing .user .user-image {
            padding-right: 15px;
        }

            .chat-listing .user .user-image img {
                border-radius: 50%;
                height: 45px;
                width: 45px;
                max-width: 45px;
                max-height: 45px;
            }

            .chat-listing .user .user-image.rounded img {
                border-radius: 0.4rem;
            }

        .chat-listing .user .user-detail {
            font-family: "DM Sans", serif;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 4px;
        }

            .chat-listing .user .user-detail h6 {
                font-weight: 700;
                margin-bottom: 0;
            }

            .chat-listing .user .user-detail p {
                font-size: 12px;
                font-weight: 700;
                color: #9B9B9B;
                margin-bottom: 0;
            }

        .chat-listing .user .message-detail {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            .chat-listing .user .message-detail p {
                font-size: 16px;
                color: #9B9B9B;
                margin-bottom: 0;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 1;
            }

            .chat-listing .user .message-detail svg {
                fill: #9B9B9B;
                min-width: 15px;
            }

                .chat-listing .user .message-detail svg.read {
                    fill: #3D69CB;
                }

            .chat-listing .user .message-detail .unread-message {
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background-color: #3D69CB;
                color: #FFFFFF;
                height: 20px;
                width: 20px;
                min-height: 20px;
                min-width: 20px;
                max-height: 20px;
                max-width: 20px;
                font-weight: 700;
                font-size: 12px;
            }

.chat-screen {
    background-color: #FCFCFC;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

    .chat-screen .screen-header {
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 30px 30px 16px 30px;
    }

@media (max-width: 575px) {
    .chat-screen .screen-header {
        padding: 16px;
    }
}

.chat-screen .screen-header .user-image {
    border-radius: 50%;
    height: 45px;
    width: 45px;
    max-width: 45px;
    max-height: 45px;
}

.chat-screen .screen-header h6 {
    margin-bottom: 2px;
    font-weight: 700;
}

.chat-screen .screen-header .active-status {
    color: #34A853;
    margin-bottom: 0;
    position: relative;
    padding-left: 10px;
    font-size: 14px;
}

    .chat-screen .screen-header .active-status::before {
        content: "";
        height: 7px;
        width: 7px;
        background-color: #34A853;
        border-radius: 50%;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }

.chat-screen .screen-body {
    padding: 0 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: calc(100vh - 310px);
    overflow-x: hidden;
    overflow-y: auto;
}

    .chat-screen .screen-body .message {
        display: flex;
        flex-direction: column;
        width: -moz-fit-content;
        width: fit-content;
        padding: 10px 15px;
        max-width: 70%;
    }

@media (max-width: 575px) {
    .chat-screen .screen-body .message {
        max-width: 100%;
    }
}

.chat-screen .screen-body .message:not(:last-child) {
    margin-bottom: 16px;
}

.chat-screen .screen-body .message.send {
    background-color: #3D69CB;
    color: #FFFFFF;
    margin-left: auto;
    border-radius: 5px 5px 0px 5px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

    .chat-screen .screen-body .message.send img {
        margin-left: 6px;
        width: 14px;
    }

.chat-screen .screen-body .message.receive {
    border: 1px solid rgba(0, 0, 0, 0.04);
    color: rgb(28, 28, 28);
    border-radius: 5px 5px 5px 0px;
}

    .chat-screen .screen-body .message.receive span {
        color: rgb(155, 155, 155);
    }

.chat-screen .screen-body .message p {
    margin-bottom: 2px;
}

.chat-screen .screen-body .message span {
    font-size: 14px;
    font-weight: 700;
}

.chat-screen .screen-body .new-message-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

    .chat-screen .screen-body .new-message-date .day-badge {
        background-color: #f3f3f3;
        padding: 5px 30px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
    }

        .chat-screen .screen-body .new-message-date .day-badge p {
            color: #9B9B9B;
            margin-bottom: 0;
            font-weight: 700;
        }

    .chat-screen .screen-body .new-message-date span {
        color: #9B9B9B;
        font-size: 14px;
    }

.chat-screen .screen-footer {
    padding: 0px 30px 16px 30px;
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .chat-screen .screen-footer {
        padding: 16px;
    }
}

.chat-screen .screen-footer .upload-data .dropdown-menu {
    background-color: transparent;
    border: 0;
}

    .chat-screen .screen-footer .upload-data .dropdown-menu li {
        margin-bottom: 10px;
        background-color: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.04);
        color: rgb(28, 28, 28);
    }

    .chat-screen .screen-footer .upload-data .dropdown-menu .dropdown-item {
        display: flex;
        align-items: center;
        font-weight: 700;
        padding: 10px 12px;
    }

        .chat-screen .screen-footer .upload-data .dropdown-menu .dropdown-item img {
            margin-right: 5px;
            width: 20px;
            height: 20px;
        }




