:root {
    --primary-color: #0181E2;
    --secondary-color: #70DD75;
    --btn-secondary-hover-color: #31db39;
    --btn-hover-color: #015da3;
    --outline-color: #92999E;
    --grey: #32393F;
    --very-light: #F2F5F8;
    --border-color: #D0C8C8;
    --black: #000000;
    --white: #ffffff;
}

body {
    font-family: "Poppins", serif;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: var(--black);
}

h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: var(--black);
}

h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: var(--black);
}

h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 56px;
    color: var(--black);
}

h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--grey);
}

p {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: var(--grey);
}

p:last-child {
    margin: 0;
}

.colo_white {
    color: var(--white) !important;
}

.color_primary {
    color: var(--primary-color) !important;
}

a {
    color: var(--primary-color);
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #E0DADA;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #adacac;
    border-radius: 10px;
}

input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

img {
    max-width: 100%;
}

.mb_26 {
    margin-bottom: 26px !important;
}

.fontweight_400 {
    font-weight: 400 !important;
}

.fontweight_500 {
    font-weight: 500 !important;
}

.fontweight_600 {
    font-weight: 600 !important;
}

.fontweight_700 {
    font-weight: 700 !important;
}

.font_14 {
    font-size: 14px !important;
}

.form_group {
    margin-bottom: 16px;


}

.form_group label {
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 24px;
    color: var(--grey);
    margin: 0 0 7px;

}

.form_group label span.red {
    color: #F61818;
}

.btn .material-icons-outlined {
    vertical-align: middle;
}

body .daterangepicker {
    font-family: inherit;
}

input.form-date {
    background-image: url(../images/calendar-2.svg) !important;
    background-repeat: no-repeat !important;
    background-position: left 1em center !important;
    background-size: 1em !important;
    padding-left: 2.75em;
}

select.form-control {
    background-image: url(../images/down-arrow-1.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 0.65em center !important;
    background-size: 1.25em !important;
    padding-right: 2.25em;
}

.form-control {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    padding: 8px 20px;
    height: 48px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
    transition: all .3s;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 1px #000 !important;
    border-color: transparent;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.form-control::placeholder {
    color: #92999E;
}

.form-control::-moz-placeholder {
    color: #92999E;
}

.form-control::-webkit-input-placeholder {
    color: #92999E;
}

.custom_select {
    &>div {
        border-radius: 8px;
        border: 1px solid var(--border-color);
        padding: 5px 8px;
        font-size: 14px;
        color: var(--black);
    }
}

button {
    background-color: transparent;
    border: none;
}

.theme_btn {
    padding: 12px 24px;
    background-color: #1c1c1c;
    border: 1px solid #1c1c1c;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;

}

.theme_btn.w_250 {
    width: 250px;
    max-width: 100%;
}

.theme_btn.w_200 {
    width: 200px;
    max-width: 100%;
}

.theme_btn:hover {
    background-color: #FAD201;
    border-color: #FAD201;
    color: #1c1c1c;
}

.theme_btn_outline {
    padding: 16px 64px;
    background-color: var(--white);
    border: 1px solid #1C1C1C;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
}

.green_btn {
    padding: 16px 64px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
    box-shadow: 0px 4px 12px 0px #70DD7533;
}

.green_btn:hover {
    background-color: var(--btn-secondary-hover-color);
}

.green_btn svg {
    font-size: 16px;
}

.white_btn {
    padding: 16px 64px;
    background-color: var(--white);
    border: 1px solid var(--white);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
    box-shadow: 0px 4px 12px 0px #70DD7533;
}

.white_btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.white_btn svg {
    font-size: 16px;
}

.theme_btn_outline_smalll,
.theme_btn_outline_small {
    padding: 8px 36px;
    background-color: var(--white);
    border: 1px solid #1C1C1C;
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1C;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
}

.normal_btn {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}


.grey_btn_outline {
    padding: 16px 64px;
    background-color: var(--white);
    border: 1px solid var(--outline-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--grey);
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.5s;
}

.grey_btn_outline:hover {
    background-color: var(--very-light);
    color: var(--black);
}

.theme_btn_small {
    padding: 8px 16px;
    background-color: #1c1c1c;
    border: 1px solid #1c1c1c;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.theme_btn_outline_smalll:hover,
.theme_btn_small:hover {
    background-color: #FAD201;
    border-color: #FAD201;
    color: #1c1c1c;
}

.theme_btn_outline_smalll {
    padding: 8px 16px;
}

.red_btn_small {
    padding: 8px 38px;
    background-color: red;
    border: 1px solid red;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.red_btn_small:hover {
    background-color: red;
    border: 1px solid red;

}

.site_container {
    width: 100%;
    max-width: 1600px;
    padding-left: 100px;
    padding-right: 100px;
    margin: 0 auto;
}

.upload_file_v1 {
    background: #EFF5FA;
    border: 1px dashed #0181E2;
    border-radius: 8px;
    height: 255px;
    width: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../images/pdf-file.svg), url(../images/jpg-file.svg), url(../images/png-file.svg), url(../images/word-file.svg);
    background-repeat: no-repeat;
    background-position: 0 0, 0 50px, 100% 0, 100% 50px;
    position: relative;
}

.upload_file_v1 input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.upload_file_v1 .img_block {
    width: 107px;
    height: 107px;
    border-radius: 100%;
    border: 3px solid #0181E266;
    background: #EFF5FA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload_file_v1 p {
    font-size: 14px;
    font-weight: 500;
    color: #272A2D;
    text-align: center;
    margin: 17px 0 10px;
}

.uploaded_file_view_v2 {
    margin-top: 14px;
}

.uploaded_file_view_v2 .document_list {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 8px;
    border: 1px solid #E1E9EF;
    background: #F8F8F8;
    overflow: hidden;
    border-radius: 4px;
}

.uploaded_file_view_v2 .document_list .img_block {
    width: 214px;
    min-height: 57px;
    background: #E5F1FA;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    position: relative;
}

.uploaded_file_view_v2 .document_list .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uploaded_file_view_v2 .document_list .content_block {
    width: calc(100% - 255px);
    padding: 16px 10px;
}

.uploaded_file_view_v2 .document_list .right_block {
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 8px;
}

.uploaded_file_view_v2 .document_list .right_block button {
    background-color: transparent;
    border: none;
}

.maxwidth_100 {
    max-width: 100% !important;
}

.main_layout {
    background: var(--very-light);
    min-height: calc(100vh - 127px);
}



/* .choose_option_sec{
    padding: 72px 0;
    h1{
        text-align: center;
        margin: 0 0 48px;
        text-transform: capitalize;
    }
    .choose_option_block{
        max-width: 962px;
        margin: 0 auto;
    }
    .choose_option_row{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -16px 52px;
        .choose_option_col{
            width: 50%;
            padding: 0 16px;
            position: relative;

            .box{
                background: var(--white);
                box-shadow: 0px 4px 28px 0px #0000000A;
                padding: 30px;
                border-radius: 10px;
                position: relative;
                min-height: 263px;
                border: 1px solid transparent;
                img{
                    margin: 0 0 20px;
                }
                h4{
                    margin: 0 0 5px;
                    line-height: 36px;
                }
                .checkicon{
                    display: none;
                    position: absolute;
                    right: 20px;
                    top: 20px;
                    margin: 0;
                }
            }
            input{
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                opacity: 0;
                z-index: 1;
                &:checked + .box{
                    border-color: #0181E2;
                    .checkicon{
                        display: block;
                    }
                }
            }
        }
    }
} */

.adminpanel_sidebar {
    width: 221px;
    background-color: var(--white);
    position: fixed;
    left: 0;
    top: 0;
    border-right: 1px solid var(--border-color);
    height: 100%;
    transition: width 0.25s ease;
}

.adminpanel_sidebar .top_div {
    padding: 15px;
    border-bottom: 1px solid #DEDEDE;
}

.adminpanel_sidebar .top_div button {
    background-color: transparent;
    border: none;
    padding: 0;
    display: inline-flex;
    gap: 14px;
}

.adminpanel_sidebar .middle_div {
    padding: 18px 0;
    height: calc(100% - 358px);
    overflow: auto;
}

.adminpanel_sidebar .middle_div ul li {
    position: relative;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu .dropdown_menu_arrow {
    position: absolute;
    right: 10px;
    top: 11px;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu.show .dropdown_menu_arrow {
    transform: rotate(180deg);
}

.adminpanel_sidebar .middle_div ul li a {
    padding: 10px 15px;
    font-size: 16px;
    color: var(--black);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.adminpanel_sidebar .bottom_div ul li a:hover,
.adminpanel_sidebar .middle_div ul li a:hover,
.adminpanel_sidebar .middle_div ul li a.active {
    background: #1c1c1c;
    color: #fff;
}

.adminpanel_sidebar .middle_div ul li a span {
    font-size: 16px;
    color: var(--black);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 70px);
}

.adminpanel_sidebar .bottom_div ul li a:hover span,
.adminpanel_sidebar .middle_div ul li a:hover span,
.adminpanel_sidebar .middle_div ul li a.active span {
    color: #fff;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul {
    border-left: 1px solid #1c1c1c;
    padding: 0px 16px 0px 16px;
    margin-left: 16px;
    margin-bottom: 8px;
    margin-top: 8px;
    display: none;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul.show {
    display: block;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul li {
    list-style: none;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul li a {
    position: relative;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul li a::before {
    left: -19px;
    top: 20px;
    content: '';
    display: none;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #1c1c1c;
    position: absolute;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul li a:hover {
    background-color: transparent;
    color: #1c1c1c;
    font-weight: 500;
}

.adminpanel_sidebar .middle_div ul li.dropdown_menu ul li a:hover::before {
    display: block;
}

.adminpanel_sidebar .bottom_div {
    padding: 18px 0;
    border-top: 1px solid #CACACA;
}

.adminpanel_sidebar .bottom_div ul {
    margin-bottom: 70px;
}

.adminpanel_sidebar .bottom_div ul li a {
    padding: 10px 15px;
    font-size: 16px;
    color: var(--black);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.adminpanel_sidebar .bottom_div ul li a img {
    width: 22px;
}

.adminpanel_sidebar .bottom_div ul li a span {
    font-size: 16px;
    color: var(--black);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 70px);
}

.adminpanel_sidebar .bottom_div div {
    padding: 0 10px;
}

.adminpanel_sidebar .bottom_div div button {
    gap: 14px;
}

.adminpanel_maincontentarea {
    width: 100%;
    padding-left: 221px;
    background: #E8E8E8;
    min-height: 100vh;
    transition: padding-left 0.25s ease;
}

.adminpanel_maincontentarea .adminpanel_header {
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: #1C1C1C;
    padding: 8px 22px;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .left_block img {
    max-width: 157px;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block {
    display: flex;
    align-items: center;
    gap: 22px;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .notification {
    position: relative;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .notification span {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: #FAD201;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -6px;
    right: -3px;
    border: 2px solid #1c1c1c;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .search_block {
    width: 303px;
    max-width: 100%;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .menu_avatar {
    display: flex;
    gap: 10px;
    align-items: center;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .menu_avatar .img_block {
    width: 35px;
    height: 35px;
    background-color: #9e3709;
    border-radius: 100%;
    overflow: hidden;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .menu_avatar .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .menu_avatar p {
    margin: 0;
    font-size: 14px;
    color: var(--white);
}

.adminpanel_maincontentarea .adminpanel_header .adminpanel_header_row .right_block .menu_avatar img {
    cursor: pointer;
}

.adminpanel_maincontentarea .maincontent_block {
    padding: 24px;
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner {
    background-color: var(--white);
    width: 100%;
    border-radius: 8px;
    min-height: calc(100vh - 110px);
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner .page_title {
    padding: 22px 17px 17px;
    border-bottom: 1px solid #DEDEDE;
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner .page_title ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 17px;
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner .page_title ul li {
    font-size: 12px;
    color: #343D43;
    position: relative;
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner .page_title ul li::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #1C1C1C;
    border-radius: 100%;
    position: absolute;
    top: 6px;
    right: -11px;
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner .page_title ul li:last-child::after {
    display: none;
}

.adminpanel_maincontentarea .maincontent_block .maincontent_block_inner .page_content {
    padding: 24px;
}

.tab_button {
    display: flex;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEDEDE;
}

.tab_button button {
    background: #F0F0F0;
    border: 1px solid #D7D7D7;
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #262A2D;
}

.tab_button button span {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    color: #fff;
    background-color: var(--primary-color);
}

.tab_button button.active {
    color: #0181E2;
    border-color: #0181E2;
    background-color: #fff;
}

.table_filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 0;
}

.table_filter_left {
    display: flex;
    gap: 22px;
}

.table_filter_left h3 {
    font-weight: 500;
    margin: 0;
}

.table_filter_left h5 {
    line-height: normal;
    margin: 0;
    font-weight: 500;
}

.table_filter_left button {
    font-size: 16px;
    font-weight: 500;
    color: #262A2D;
}

.table_filter_left button.active {
    color: #0181E2;
}

.table_filter_right {
    display: flex;
    gap: 8px;
}

.table_filter_right .toggle_btn {
    display: flex;
    gap: 4px;
}

.table_filter_right .toggle_btn button {
    border: 1px solid #DEDEDE;
    font-size: 12px;
    color: #0181E2;
    padding: 11px 19px;
    border-radius: 8px;
    width: 115px;
}

.date_range {
    position: relative;
    min-width: 250px;
}

.date_range img {
    position: absolute;
    right: 10px;
    top: 14px;
}

.custom_table {}

.custom_table table thead tr th {
    border: none;
    background: #E8E8E8;
    padding: 13px 22px !important;
    font-size: 14px;
    font-weight: 500;
}

.custom_table table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
}

.custom_table table thead tr th:last-child {
    border-radius: 0px 10px 10px 0px;
}

.custom_table table tbody tr td {
    color: #000000;
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
    padding: 13px 22px !important;
}

.custom_table table tbody tr td .status {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
}

.custom_table table tbody tr td .status.approve {
    background: #90CC6A33;
    color: #6B9C4B;
}

.custom_table table tbody tr td .status.pending {
    background: #E8933933;
    color: #E89339;
}

.custom_table table tbody tr td .status.Blocked {
    background: #D3272733;
    color: #D32727;
}

.custom_table table tbody tr td .avatar_block {
    display: flex;
    align-items: center;
    gap: 7px;
}

.custom_table table tbody tr td .avatar_block .img_block {
    width: 23px;
    height: 23px;
    border-radius: 100%;
    overflow: hidden;
}

.custom_table table tbody tr td .dropdown .dropdown-toggle {
    padding: 0;
}

.custom_table table tbody tr td .dropdown .dropdown-toggle::after {
    display: none;
}

.custom_table table tbody tr td .dropdown .dropdown-menu {
    padding: 0;
    overflow: hidden;
}

.custom_table table tbody tr td .dropdown .dropdown-menu li button,
.custom_table table tbody tr td .dropdown .dropdown-menu li a {
    font-size: 12px;
    color: #32393F;
    padding: 8px 12px;
}


.custom_table table tbody tr td .dropdown .dropdown-menu li button:hover,
.custom_table table tbody tr td .dropdown .dropdown-menu li a:hover {
    background: #F2F2F2;
}

.auth_page_main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #E8E8E8;
}

.auth_page_main .logo-box {
    margin: 0 0 30px;
}

.auth_page_main .form-card-box {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.auth_page_main .form-card-box .form-inner-body {
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.22);
    border-radius: 16px;
    padding: 24px;
    background-color: #fff;
}

.auth_page_main .form-inner-body .top-heading {
    margin: 0 0 30px;
}

.auth_page_main .form-inner-body .top-heading h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 5px;
}

.auth_page_main .form-inner-body .top-heading p {
    font-size: 16px;
    text-align: center;
    color: #32393F;
}

.auth_page_main .form-inner-body .form-control {
    width: 100%;
}

.auth_page_main .form-inner-body .submit-actions {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.auth_page_main .form-inner-body .submit-actions button {
    cursor: pointer;
}

.auth_page_main .form-inner-body .custom-form-group h5 {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #32393F;
    font-weight: 400;
}

.allSubscriptions_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.allSubscriptions_title h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.subscription_box_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.subscription_box_col {
    width: 33.333%;
    padding: 4px;
}

.subscription_box_col .box {
    border: 1px solid #DEDEDE;
    padding: 20px 12px;
    position: relative;
    height: 100%;
}

.subscription_box_col.active .box::after {
    background: url(../images/polygon.svg) no-repeat;
    background-size: 100%;
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translate(-50%, 0);
}

.subscription_box_col .box .dropdown-toggle {
    padding: 0;
    outline: none;
}

.subscription_box_col .box .dropdown-toggle::after {
    display: none;
}

.subscription_box_col .box .box_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.subscription_box_col .box .box_title h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin: 0;
}

.subscription_box_col .box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.subscription_box_col .box ul li {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.subscription_box_col .box ul li:last-child {
    margin-bottom: 0px;
}

.subscription_box_col .box ul li::before {
    content: '';
    display: block;
    background-image: url(../images/checked.svg);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: 0;
}

.subscription_box .line_block {
    margin: 36px 0 25px;
    height: 5px;
    background-color: #0181e2;
    width: 100%;
}

.subscription_filter_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.subscription_filter_col {
    padding: 10px;
    width: 25%;
    position: relative;
}

.subscription_filter_col .box {
    border: 1px solid #B1B1B1;
    padding: 28px 8px;
    position: relative;
}

.subscription_filter_col .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--black);
}

.subscription_filter_col .box h1 {
    font-size: 88px;
    line-height: 84px;
    text-align: center;
    color: #262A2D;
}

.subscription_filter_col .box h2 {
    font-size: 36px;
    color: #898989;
    text-align: center;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 35px;
}

.subscription_filter_col .box p {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

.subscription_filter_col .box p span {
    font-size: 36px;
}

.subscription_filter_col .box p sub {
    font-size: 14px;
    color: #32393F;
    position: relative;
    top: -3px;
}


.subscription_filter_col .box button {
    border-radius: 999px;
    border: 1px solid var(--primary-color);
    width: 182px;
    max-width: 100%;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
}


.create_block {}

.create_block_title {
    margin-bottom: 30px;
}

.create_block_title h3 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.create_block_title p {
    text-align: center;
}

.stapper_block {}

.stapper_step {
    display: flex;
    justify-content: center;
    position: relative;
    width: 500px;
    margin: 0 auto;
}

.step_root {
    width: 50%;
}

.stapper_step .step_root::before {
    content: '';
    width: 50%;
    height: 3px;
    background: #D3E1ED;
    position: absolute;
    left: 50%;
    top: 34%;
    transform: translate(-50%, -50%);
}

.step_root .step_count {
    background: #EFF5FA;
    border: 1px solid #0181E2;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #0181E2;
    margin: 0 auto 4px;
    z-index: 2;
    position: relative;
}

.step_root p {
    font-size: 12px;
    font-weight: 400px;
    color: #32393F;
    margin: 0;
    text-align: center;
}

.step_root.active .step_count {
    background: #0181E2;
    color: #fff;
}

.step_content {
    width: 100%;
    max-width: 724px;
    margin: 0 auto;
}

.step_content .form_block {
    margin-bottom: 20px;
}

.step_content .form_block h5 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 5px;
}

.step_content .form_block .custom_input_group .form-control {
    border-right: none;
}

.step_content .form_block .custom_input_group .input-group-text {
    font-size: 14px;
    color: #000000;
    background-color: #fff;
    border-color: #d0c8c8;
    border-radius: 8px;
}

.subscription_radio {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.subscription_radio_col {
    width: 50%;
    padding: 4px;
}

.subscription_radio_col .radio_box {
    position: relative;
    height: 48px;
}

.subscription_radio_col .radio_box input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.subscription_radio_col .radio_box div {
    font-size: 14px;
    color: #272A2D;
    padding: 12px 14px;
    border: 1px solid #CCC6C6;
    border-radius: 8px;
}

.subscription_radio_col .radio_box input:checked+div {
    border-color: #0181E2;
    color: #0181E2;
    background-image: url(../images/check-circle.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-position: 95% 15px;
    background-size: 16px;
}

.step_content .form_block .plan_box {
    background: #F3F3F3;
    padding: 13px 19px;
    margin: 10px 0 0;
}

.plan_duration_radio .subscription_radio_col {
    width: 25%;
}

.plan_duration_radio .subscription_radio_col .radio_box div {
    background-color: #fff;
}

.step_content .submit_div {
    display: flex;
    justify-content: center;
    border-top: 1px solid #DEDEDE;
    padding-top: 19px;
}

.doctor_profile .doctor_profile_row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 30px;
}

.doctor_profile .doctor_profile_row .doctor_profile_left {
    width: calc(100% - 217px);
    display: flex;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_photo {
    width: 100px;
    height: 100px;
    max-width: 100%;
    border-radius: 100%;
    position: relative;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_photo .img_block {
    width: 100%;
    height: 100%;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_photo button {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    background: #1C1C1C;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    right: 2px;
    bottom: 0;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_photo button svg {
    width: 20px;
    fill: #fff;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_photo button input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_hospital {
    width: calc(100% - 145px);
    padding-left: 24px;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_hospital h3 {
    font-weight: 500;
    text-transform: capitalize;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_hospital p {
    margin: 0 0 10px;
    max-width: 472px;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_hospital .map_block .map_address ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.doctor_profile .doctor_profile_row .doctor_profile_left .update_hospital .map_block .map_address ul li {
    font-size: 14px;
    color: #32393F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor_profile .doctor_profile_row .doctor_profile_right {
    width: 217px;
}

.doctor_profile .doctor_profile_row .doctor_profile_right .btn_group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.doctor_profile .doctor_profile_row .doctor_profile_right .btn_group button {
    width: 100%;
}

.doctor_profile .about_doctor_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    padding-bottom: 18px;
    border-bottom: 1px solid #DEDEDE;
}

.doctor_profile .about_doctor_row .about_doctor_left {
    width: 50%;
    padding: 8px;
}

.doctor_profile .about_doctor_row .about_doctor_left ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 20px;
    list-style: none;
}

.doctor_profile .about_doctor_row .about_doctor_left ul li {
    width: 100%;
}

.doctor_profile .about_doctor_row .about_doctor_left ul li h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.doctor_profile .about_doctor_row .about_doctor_left ul li p {
    margin: 0;
}

.doctor_profile .about_doctor_row .about_doctor_right {
    width: 50%;
    padding: 8px;
}

.doctor_profile .about_doctor_row .about_doctor_right h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.doctor_profile .about_doctor_row .about_doctor_right .video_block {
    max-width: 330px;
    height: 183px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 14px;
    position: relative;
}

.doctor_profile .about_doctor_row .about_doctor_right .video_block video {
    display: block;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-position: center;
    background-position: center;
    width: 100%;
}

.doctor_profile .about_doctor_row .about_doctor_right .video_block button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    width: 48px;
    height: 48px;
}

.doctor_profile .about_doctor_row .about_doctor_right .video_block button svg {
    fill: #0181E2;
    width: 34px;
}

.doctor_profile .documents_clinic_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    padding: 20px 0;
}

.doctor_profile .documents_clinic_row .documents_col {
    width: 50%;
    padding: 8px;
}

.doctor_profile .documents_clinic_row .documents_col .document_list {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.doctor_profile .documents_clinic_row .documents_col h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 10px;
}

.doctor_profile .documents_clinic_row .documents_col .document_list {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.doctor_profile .documents_clinic_row .documents_col .document_list .icon_block {
    width: 53px;
    min-height: 57px;
    background: #E5F1FA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor_profile .documents_clinic_row .documents_col .document_list .content_block {
    width: calc(100% - 253px);
    padding: 16px 10px;
}

.doctor_profile .documents_clinic_row .documents_col .document_list .right_block {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.doctor_profile .documents_clinic_row .clinic_col {
    width: 50%;
    padding: 8px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card {
    background: #F8F8F8;
    border: 1px solid #F0F0F0;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row {
    display: flex;
    flex-wrap: wrap;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .img_block {
    width: 158px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block {
    width: calc(100% - 158px);
    padding: 19px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 24px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0 0 10px;
    gap: 10px;
    flex-wrap: wrap;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block ul li {
    font-size: 14px;
    color: #272A2D;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .address_block {
    margin-bottom: 14px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .address_block h6 {
    font-size: 14px;
    color: #272A2D;
    margin: 0 0 10px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .address_block .address_block_row {
    display: flex;
    flex-wrap: wrap;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .address_block .address_block_row p {
    width: calc(100% - 0px);
    padding-left: 0px;
    font-size: 14px;
    margin: 0;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .clinic_video {
    width: 120px;
    height: 78px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid #DACCCC;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .clinic_video video {
    display: block;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-position: center;
    background-position: center;
    width: 100%;
    height: 100%;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .clinic_video button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

.doctor_profile .documents_clinic_row .clinic_col .clinic_details_card .clinic_details_row .content_block .clinic_video button svg {
    fill: #0181E2;
    width: 24px;
}

.my_appointments_block .title_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.my_appointments_block .title_block h3 {
    font-weight: 500;
}

.my_appointments_block .title_block .right_block {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.my_appointments_block .title_block .right_block select {
    width: 250px;
}

.appontment_block .appontment_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.appontment_block .appontment_row .appontment_col {
    width: 25%;
    padding: 6px;
}

.appontment_block .appontment_row .appontment_col .box {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}

.appontment_block .appontment_row .appontment_col .box .name_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.appontment_block .appontment_row .appontment_col .box .name_block .name_block_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.appontment_block .appontment_row .appontment_col .box .name_block .name_block_left .img_block {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    overflow: hidden;
}

.appontment_block .appontment_row .appontment_col .box .name_block .name_block_left .img_block img {
    width: 100%;
    height: 100%;
    text-align: center;
    object-fit: cover;
    color: transparent;
    text-indent: 10000px;
}

.appontment_block .appontment_row .appontment_col .box .name_block .name_block_left h6 {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.appontment_block .appontment_row .appontment_col .box .name_block .name_block_right .dropdown .dropdown-toggle {
    padding: 0;
}

.appontment_block .appontment_row .appontment_col .box .name_block .name_block_right .dropdown .dropdown-toggle::after {
    display: none;
}

.appontment_block .appontment_row .appontment_col .box .desc_block {
    padding: 0 16px 10px;
    border-bottom: 1px solid #DEDEDE;
}

.appontment_block .appontment_row .appontment_col .box .desc_block p {
    font-size: 14px;
    color: #32393F;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.appontment_block .appontment_row .appontment_col .box .desc_block p img.w15 {
    width: 15px;
}

.appontment_block .appontment_row .appontment_col .box .desc_block .clinic_name {
    padding: 6px 12px;
    border: 1px solid #DEDEDE;
    border-radius: 999px;
    font-size: 14px;
    color: #32393F;
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    margin: 8px 0 0;
}

.appontment_block .appontment_row .appontment_col .box .status {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.appontment_block .appontment_row .appontment_col .box .status.approve {
    background: #90CC6A33;
    color: #6B9C4B;
}

.appontment_block .appontment_row .appontment_col .box .status.pending {
    background: #E8933933;
    color: #E89339;
}

.appontment_block .appontment_row .appontment_col .box .status.Blocked {
    background: #D3272733;
    color: #D32727;
}

.appontment_block .appontment_row .appontment_col .box .buttom_block {
    padding: 8px 16px;
    border-top: 1px solid #DEDEDE;
}

.auto_approve_sec {
    padding: 18px;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    width: 100%;
    max-width: 503px;
}

.auto_approve_sec p {
    font-size: 14px;
    font-weight: 400;
    color: #32393F;
    margin: 0 0 16px;
}

.yes_no_raio {
    display: flex;
    gap: 8px;
}

.yes_no_raio button {
    position: relative;
    bottom: none;
    padding: 0;
    background-color: transparent;
}

.yes_no_raio button span {
    border: 1px solid #000;
    background: #FFFFFF;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 44px;
}

.yes_no_raio button input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.yes_no_raio button input:checked+span {
    background: #000;
    color: #fff;
}

.subscriptionStatus {
    padding: 5px;
    border: 1px solid;
    font-size: 12px;
    border-radius: 5px;
}

.approve_modal .modal-header {
    padding-bottom: 0px;
}

.approve_modal .modal-header {
    display: flex;
    justify-content: flex-end;
    border: none;
}

.approve_modal .modal-body {
    padding-top: 0px;
}

.approve_modal .modal-body .approve_bg {
    display: block;
    margin: 0 auto 16px;
}

.approve_modal .modal-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 22px;
    margin: 0 0 5px;
}

.approve_modal .modal-body p {
    font-size: 14px;
    color: #32393F;
}

.approve_modal .modal-body .list_block {
    margin: 8px 0;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
}

.approve_modal .modal-body .list_block p {
    color: #32393F;
    font-size: 12px;
    margin: 0;
}

.approve_modal .modal-dialog {
    max-width: 430px;
}

.approve_modal .modal-footer {
    padding-top: 0px;
    border: none;
}

.clinic_profile_row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 30px;
}

.clinic_profile_update_left {
    width: calc(100% - 338px);
    display: flex;
}

.clinic_profile_update_left .update_photo {
    width: 289px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.clinic_profile_update_left .update_photo .img_block {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.clinic_profile_update_left .update_photo .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic_profile_update_left .update_photo .img_block button {
    position: absolute;
    background: rgba(1, 1, 1, 0.5019607843);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 9px;
    gap: 10px;
}

.clinic_profile_update_left .update_photo .img_block button svg {
    fill: #fff;
    width: 1.5rem;
}

.clinic_profile_update_left .update_photo .img_block button input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.clinic_profile_update_left .update_hospital {
    width: calc(100% - 289px);
    padding-left: 30px;
}

.clinic_profile_update_left .update_hospital h3 {
    margin: 0 0 4px;
    font-size: 24px;
    color: #000000;
}

.clinic_profile_update_left .update_hospital .map_block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.clinic_profile_update_left .update_hospital .map_block .img_block {
    width: 120px;
    height: 78px;
    border-radius: 8px;
    overflow: hidden;
}

.clinic_profile_update_left .update_hospital .map_block .map_address {
    width: calc(100% - 120px);
    padding-left: 20px;
}

.clinic_profile_update_left .update_hospital .map_block .map_address p {
    max-width: 400px;
    font-size: 14px;
    color: #32393F;
    margin: 0 0 8px;
}

.clinic_profile_update_left .update_hospital .map_block .map_address ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.clinic_profile_update_left .update_hospital .map_block .map_address ul li {
    font-size: 14px;
    color: #32393F;
}

.clinic_profile_update_left .update_hospital .btn_group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.clinic_profile_update_right {
    width: 338px;
}

.clinic_profile_update_right .video_block {
    border-radius: 8px;
    width: 100%;
    height: 188px;
    overflow: hidden;
    position: relative;
}

.clinic_profile_update_right .video_block video {
    display: block;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-position: center;
    background-position: center;
    width: 100%;
}

.clinic_profile_update_right .video_block button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    width: 48px;
    height: 48px;
}

.clinic_profile_update_right .video_block button svg {
    fill: #0181E2;
    width: 34px;
}

.select_doctors_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.select_doctors_col {
    width: 16.666%;
    padding: 7px;
}

.select_doctors_col .box {
    background: var(--white);
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    position: relative;
    padding: 28px 8px;
}

.select_doctors_col .box .dropdown {
    position: absolute;
    right: 4px;
    top: 4px;
}

.select_doctors_col .box .dropdown .dropdown-toggle {
    padding: 0;
}

.select_doctors_col .box .dropdown .dropdown-toggle::after {
    display: none;
}

.select_doctors_col .box .img_block {
    width: 94px;
    height: 94px;
    margin: 0 auto 20px;
    border-radius: 100%;
    overflow: hidden;
}

.select_doctors_col .box .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.select_doctors_col .box h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: var(--black);
    margin: 0 0 2px;
}

.select_doctors_col .box p {
    font-size: 12px;
    text-align: center;
    color: #63696D;
    margin: 0;
}

.subscription_management_row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.subscription_management_col {
    width: 100%;
}

.subscription_management_col .box {
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscription_management_col .box .left_content {}

.subscription_management_col .box .left_content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 4px;
    line-height: 30px;
}

.subscription_management_col .box .left_content h4 {
    color: #0181E2;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.subscription_management_col .box .left_content p {
    font-size: 14px;
    color: #63696D;
    margin: 0;
}

.subscription_management_col .box .right_content {
    display: flex;
    gap: 10px;
}

.appointment_details_block {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
}

.appointment_details_block h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 22px;
}

.appointment_details_block .clinic_small_details {}

.appointment_details_block .clinic_small_details h6 {
    font-size: 14px;
    color: #000000;
    margin: 0;
    line-height: normal;
}

.appointment_details_block .clinic_small_details h4 {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.appointment_details_block .clinic_small_details p {
    line-height: normal;
    color: #32393F;
    font-size: 12px;
    margin: 0;
}

.appointment_details_block .clinic_small_details ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.appointment_details_block .clinic_small_details ul li {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #32393F;
}

.share_code {
    background: #ECEEF0;
    border-radius: 8px;
    padding: 12px;
}

.share_code_inner {
    position: relative;
}

.share_code_inner button {
    position: absolute;
    right: 10px;
    top: 11px;
}

.doctor_verfication_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 24px;
}

.doctor_name_block {
    display: flex;
    align-items: center;
}

.doctor_name_block .img_block {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    overflow: hidden;
}

.doctor_name_block .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor_name_block .text_content {
    width: calc(100% - 44px);
    padding-left: 10px;
}

.doctor_name_block .text_content h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.doctor_name_block .text_content p {
    font-size: 12px;
    color: #32393F;
    margin: 0;
}

.doctor_status_block .status {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.doctor_status_block .status.pending {
    background: #E8933933;
    color: #E89339;
}

.doctor_status_block .status.confirm {
    background: #90CC6A33;
    color: #6B9C4B;
}

.patient_small_details {
    padding: 9px 0 17px;
    border-top: 1px solid #D4D4D4;
}

.patient_small_details h6 {
    font-size: 14px;
    color: #000000;
    margin: 0 0 10px;
}

.patient_small_details .patient_name_block {
    display: flex;
}

.patient_small_details .patient_name_block .img_block {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    overflow: hidden;
}

.patient_small_details .patient_name_block .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patient_small_details .patient_name_block .text_content {
    width: calc(100% - 44px);
    padding-left: 10px;
}

.patient_small_details .patient_name_block .text_content h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.patient_small_details .patient_name_block .text_content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.patient_small_details .patient_name_block .text_content ul li {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #32393F;
}

.appointment_sceduled {
    border: 1px solid #0181E2;
    background: #F9FBFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 13px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.appointment_sceduled p {
    font-size: 14px;
    color: #32393F;
    margin: 0;
}

.appointment_details_block .btn_group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 38px 0 0;
    justify-content: center;
}

.my_account {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.my_account .update_photo {
    width: 145px;
    height: 145px;
    max-width: 100%;
    border-radius: 100%;
    position: relative;
    margin: 0 auto 22px;
}

.my_account .update_photo .img_block {
    width: 100%;
    height: 100%;
}

.my_account .update_photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
}

.my_account .update_photo button {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
    background: #0181E2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    right: 2px;
    bottom: 0;
}

.my_account .update_photo button svg {
    width: 20px;
    fill: #fff;
}

.my_account .update_photo button input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.my_account .text_content {}

.my_account .text_content h3 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0px;
    text-align: center;
}

.my_account .text_content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.my_account .text_content ul li {
    font-size: 14px;
    color: #32393F;
}

.my_account .text_content .btn_group {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.update_profile_title {
    margin-bottom: 22px;
}

.update_profile_title h3 {
    text-align: center;
}

.update_profile_title p {
    text-align: center;
}

.update_profile_content {
    width: 100%;
    max-width: 778px;
    margin: 0 auto;
}

.update_profile_content .submit_div {
    display: flex;
    justify-content: center;
}

.subscriptionDetailStatus {
    padding: 0px 36px;
    border: 1px solid;
    border-radius: 999px;
    /* width: 100%; */
    display: inline-flex;
    justify-content: center;
}

.doctor_profile .doctor_profile_row .doctor_profile_right .btn_group h4 {
    width: 100%;
}

.bg_transparent {
    background: #f2f5f8;
}

.dashboard_row {
    display: flex;
    flex-wrap: wrap;
}

.dashboard_left {
    width: 100%;
    padding-right: 0px;
}

.dashboard_left .count_row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* margin: 0 -4px; */
}

.dashboard_left .count_row .count_col {
    flex: 1;
    /* width: 33.333%;
    padding: 4px; */
}


.card-style,
.dashboard_left .count_row .count_col .box {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
    border: 1px solid #e8e8e8;
    box-shadow: 0px 0px 13px 0px #00000012;
}

.dashboard_left .count_row .count_col.patient_count .box {
    background-image: url(../images/vector-1.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
}

.dashboard_left .count_row .count_col .box .name_with_icon {
    display: flex;
}

.dashboard_left .count_row .count_col .box .name_with_icon .icon_block {
    background: #e0dada;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px;
}

.dashboard_left .count_row .count_col .box .name_with_icon .icon_block i {
    font-size: 34px;
}

.dashboard_left .count_row .count_col .box .name_with_icon .content_block {
    width: calc(100% - 58px);
    padding-left: 9px;
}

.dashboard_left .count_row .count_col .box .name_with_icon .content_block h5 {
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.dashboard_left .count_row .count_col .box .name_with_icon .content_block h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.dashboard_left .count_row .count_col .box .status_block {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -4px 0;
}

.dashboard_left .count_row .count_col .box .status_block .status_col {
    width: 25%;
    padding: 4px;
}

.dashboard_left .count_row .count_col .box .status_block .status_col .status_col_box {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    padding: 18px 8px;
}

.dashboard_left .count_row .count_col .box .status_block .status_col .status_col_box h5 {
    margin: 0 0 8px;
    text-align: center;
    font-size: 18px;
    color: #000000;
}

.dashboard_left .count_row .count_col .box .status_block .status_col .status_col_box p {
    text-transform: uppercase;
    color: #000;
    font-size: 10px;
    margin: 0;
    text-align: center;
}

.dashboard_appointments {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.social_complaints_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.social_complaints_row .social_chart {
    width: 50%;
    padding: 7px;
}

.social_complaints_row .social_chart .social_chart_box {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    height: 100%;
}

.appontment_block .complaints_row .appontment_col {
    width: 100%;
}

.appontment_block .complaints_row .appontment_col .box .name_block {
    padding: 8px;
}

.appontment_block .complaints_row .appontment_col .box .desc_block {
    padding: 0 8px 10px;
}

.dashboard_right {
    width: 339px;
}

.dashboard_right .box {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 14px;
}

.dashboard_right .box .table_filter .table_filter_left h5 {
    font-size: 16px;
}

.dashboard_right .box .table_filter .table_filter_right .form-control {
    padding: 8px 30px 8px 13px;
    height: 40px;
    font-size: 12px;
}

.dashboard_right .box .list_row {
    display: flex;
    flex-wrap: wrap;
}

.dashboard_right .box .list_row .list_col {
    width: 100%;
    border-bottom: 1px solid #DEDEDE;
    padding: 14px 0;
    display: flex;
    align-items: center;
}

.dashboard_right .box .list_row .list_col:first-child {
    padding-top: 0px;
}

.dashboard_right .box .list_row .list_col:last-child {
    border: none;
}

.dashboard_right .box .list_row .list_col .img_block {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E6F3FD;
    overflow: hidden;
}

.dashboard_right .box .list_row .list_col .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard_right .box .list_row .list_col .content_block {
    width: calc(100% - 42px);
    padding-left: 15px;
}

.dashboard_right .box .list_row .list_col .content_block h5 {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.dashboard_right .box .list_row .list_col .content_block p {
    font-size: 10px;
    color: #32393F;
    margin: 0;
}

.dashboard_right .box .wallet_block {
    background: linear-gradient(90deg, #0181E2 0%, #64BCFF 100%);
    padding: 9px;
    border-radius: 8px;
    padding-top: 48px;
}

.dashboard_right .box .wallet_block h2 {
    text-align: center;
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
    line-height: normal;
}

.dashboard_right .box .wallet_block h4 {
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: normal;
}

.dashboard_right .box .wallet_block .wallet_block_box {
    background: #FFFFFF;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin-top: 48px;
}

.dashboard_right .box .wallet_block .wallet_block_box p {
    font-size: 10px;
    color: #32393F;
    margin: 0;
}

.dashboard_right .box .wallet_block .wallet_block_box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #0181E2;
    line-height: normal;
}

.update_clinic_block {
    max-width: 724px;
    margin: 0 auto;
}

.social_media_post_page .head_title {
    margin-bottom: 18px;
}

.social_media_post_page .head_title {
    font-size: 28px;
    font-weight: 500;
    color: #000000;
}

.social_media_filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.social_media_filter_right {
    width: 312px;
}

.social_media_post_block {
    width: 100%;
    max-width: 704px;
    margin: 24px auto 0;
}

.feed_card {
    background-color: var(--white);
    border: 1px solid #D7D7D7;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294);
    border-radius: 8px;
}

.feed_card .feed_card_top {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed_card .feed_card_top .avatar_block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed_card .feed_card_top .avatar_block .img_block {
    width: 32px;
    height: 32px;
    border: 1px solid #CFCFCF;
    border-radius: 100%;
}

.feed_card .feed_card_top .avatar_block .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed_card .feed_card_top .avatar_block p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.feed_card .feed_card_top .right_block {
    display: flex;
    align-items: center;
}

.feed_card .feed_card_top .right_block p {
    font-size: 14px;
    color: #727272;
    margin: 0;
}

.feed_card .feed_card_top .right_block button {
    background-color: transparent;
    border: none;
}

.feed_card .feed_card_bottom {
    padding: 20px;
}

.feed_card .feed_card_bottom .action_block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.feed_card .feed_card_bottom .action_block .left_block {
    display: flex;
    gap: 4px;
}

.feed_card .feed_card_bottom .people_tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.feed_card .feed_card_bottom .people_tag p {
    font-size: 14px;
    color: #32393F;
    margin: 0;
}

.feed_card .feed_card_bottom .people_tag p a {
    color: #32393F;
    font-weight: 500;
}

.people_group {
    display: flex;
    align-items: center;
}

.people_group .img_block {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #bdbdbd;
    margin-left: -4px;
    border: 1px solid #fff;
}

.people_group .img_block:first-child {
    margin-left: 0;
    border: none;
}

.people_group .img_block svg {
    width: 10px;
    color: #fff;
}

.add_banner_form_block {
    width: 100%;
    max-width: 524px;
    margin: 0 auto;
}

.select2-container--default .select2-selection--multiple {
    padding: 5px 20px !important;
    border: 1px solid #d0c8c8 !important;
    background: #fff !important;
    border-radius: 8px !important;
    height: auto !important;
    min-height: 48px !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
    margin-left: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0180e20f !important;
    border: 1px solid #0181e2 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 14px !important;
    color: #0181e2 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #0181e2 !important;
}

.chat_page {
    display: flex;
}

.chat_left {
    width: 285px;
    max-width: 100%;
    border-radius: 8px 0px 0px 8px;
    border-right: 1px solid #CFCECE;
    background: #FFF;
}

.chat_left .title_block {
    padding: 14px 12px 26px;
    border-bottom: 1px solid #CFCECE;
}

.chat_left .title_block h3 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.chat_list {
    height: calc(100vh - 160px);
    overflow: auto;
}

.chat_list ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
}

.chat_list ul li {
    padding: 15px 12px;
    display: flex;
    align-items: center;
    width: 100%;
}

.chat_list ul li.active {
    background: #EBEBEB;
}

.chat_list ul li .avatar_block {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
    text-transform: uppercase;
    background-color: #C4C4C4;
    color: #000000;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.chat_list ul li .avatar_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat_list ul li .content_block {
    width: calc(100% - 40px);
    padding-left: 8px;
}

.chat_list ul li .content_block .primary_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat_list ul li .content_block .primary_text h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: normal;
    width: calc(100% - 60px);
}

.chat_list ul li .content_block .primary_text h5 {
    font-size: 12px;
    margin: 0;
}

.chat_list ul li .content_block p {
    color: #9A9A9A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    /* 158.333% */
    text-transform: capitalize;
    margin: 0;
}

.chat_right {
    width: calc(100% - 285px);
}

.chat_right .chat_head {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #CFCECE;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    align-items: center;
}

.chat_right .chat_head .chat_head_left {
    display: flex;
    align-items: center;
}

.chat_right .chat_head .chat_head_left .avatar_block {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
    text-transform: uppercase;
    background-color: #C4C4C4;
    color: #000000;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.chat_right .chat_head .chat_head_left .avatar_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat_right .chat_head .chat_head_left .text_block {
    width: calc(100% - 40px);
    padding-left: 8px;
}

.chat_right .chat_head .chat_head_left .text_block h5 {
    color: #32393F;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 128.571% */
    text-transform: capitalize;
    margin: 0;
}

.chat_right .chat_head .chat_head_left .text_block p {
    color: #68DB5E;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 150% */
    text-transform: capitalize;
}

.chat_right .chat_head .chat_head_left .text_block p.offline {
    color: #E5252A;
}

.chat_right .chat_body {
    height: calc(100vh - 280px);
    overflow: auto;
    padding: 12px;
}

.chat_right .chat_body .chat_block {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    width: max-content;
    max-width: 477px;
}

.chat_right .chat_body .chat_block.chat_block_me {
    margin-left: auto;
}

.chat_right .chat_body .chat_block .avatar_block {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
    text-transform: uppercase;
    background-color: #C4C4C4;
    color: #000000;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    top: -10px;
}

.chat_right .chat_body .chat_block.chat_block_me .avatar_block {
    display: none;
}

.chat_right .chat_body .chat_block .avatar_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat_right .chat_body .chat_block .message_block {
    width: calc(100% - 40px);
    padding-left: 16px;
}

.chat_right .chat_body .chat_block.chat_block_me .message_block {
    width: calc(100% - 0px);
    padding-left: 0px;
}

.chat_right .chat_body .chat_block .message_block .box {
    background: #FAD201;
    box-shadow: 0px 4px 2px 0px #00000012;
    padding: 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.chat_right .chat_body .chat_block.chat_block_me .message_block .box {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0px;
    background: #000000;
}

.chat_right .chat_body .chat_block.file_upload .box {
    background-color: #EBEBEB;
}

.chat_right .chat_body .chat_block.chat_block_me.file_upload .box {
    background-color: #EBEBEB;
}

.chat_right .chat_body .chat_block.file_upload .box .img_block.file {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 150px;
    height: 150px;
}

.chat_right .chat_body .chat_block.file_upload .box .img_block img {
    max-height: 200px;
}

.chat_right .chat_body .chat_block.file_upload .box .img_block.file img {
    width: 70px;
}

.chat_right .chat_body .chat_block.file_upload .message_block .box .file_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat_right .chat_body .chat_block.file_upload .message_block .box .file_name p {
    margin: 0;
    width: calc(100% - 30px);
    color: #000;
}

.chat_right .chat_body .chat_block .message_block .box p {
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #000;
}

.chat_right .chat_body .chat_block.chat_block_me .message_block .box p {
    color: #fff;
}

.chat_right .chat_body .chat_block .message_block h6 {
    color: #6D6868;
    font-size: 12px;
    margin: 0;
}

.chat_image_block {
    text-align: center;
    padding: 8px;
    background: white;
    /* background: #6D6868; */
    border-radius: 10px;
}

.activeChatUser {
    background: aliceblue;
}

.chat_right .chat_body .chat_block.chat_block_me .message_block h6 {
    text-align: right;
}

.chat_right .chat_footer {
    padding: 24px 12px;
    border-top: 1px solid #CFCECE;
}

.chat_right .chat_footer .chat_box {
    border-radius: 8px;
    background: #F5F5F5;
    padding: 8px 16px;
    position: relative;
    display: flex;
    align-items: center;
}

.chat_right .chat_footer .chat_box textarea {
    width: calc(100% - 86px);
    border: none;
    outline: 0;
    background-color: transparent;
    padding: 0 8px;
    resize: none;
    font-size: 14PX;
}

.chat_right .chat_footer .chat_box button.theme_btn {
    padding: 10px 10px;
}

.chat_right .chat_footer .chat_box button.file_upload {
    position: relative;
}

.chat_right .chat_footer .chat_box button.file_upload input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.chat_message_upload {
    width: 100%;
    height: auto;
    padding: 20px;
    border-bottom: solid 1px #023047;
}

.chat_message_upload.hide {
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.upload {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    padding-bottom: 10px;
}

.upload .close {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: solid 1px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: absolute;
    top: 1px;
    right: 10px;
    cursor: pointer;
}

.upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chat-images-wrapper img {
    transition: transform 0.2s ease;
}

.chat-images-wrapper img:hover {
    transform: scale(1.05);
}

.unread_count {
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 1px 6px;
    margin-left: 5px;
}

.view_details_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 1px;
}

.view_details_col {
    padding: 0 1px;
}

.view_details_col .box {
    background-color: #e4e7ed;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 15px;
}

.view_details_col:nth-child(even) .box {
    background-color: #f5f5f5;
}

.view_details_col:nth-child(odd) {
    width: 12.5%;
}

.view_details_col:nth-child(even) {
    width: 20.8333333333%;
}

.map_block {
    border: 1px solid #e4e7ed;
    border-radius: 8px;
}


.btn-circle {
    width: 25px;
    height: 25px;
    padding: 0 !important;
    border-radius: 50%;
}

.card-style {
    --bs-card-border-color: tranparent;
    --bs-card-cap-padding-y: 1rem;
    --bs-card-cap-padding-x: 1rem;
}

.card-style .card-header {
    /* background-color: #f5f5f5; */
    background-color: #f3f3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* SIDEBAR COLLAPSED */
.sidebar-collapsed .adminpanel_sidebar {
    width: 55px;
    overflow: hidden;
    z-index: 11;
    background-color: #fff;
}

.sidebar-collapsed .adminpanel_maincontentarea {
    padding-left: 55px;
}


.sidebar-collapsed .adminpanel_sidebar span {
    display: none;
}

.sidebar-collapsed .adminpanel_sidebar:has(.middle_div:hover),
.sidebar-collapsed .adminpanel_sidebar:has(.bottom_div:hover) {
    width: 230px;
}

.sidebar-collapsed .adminpanel_sidebar:has(.middle_div:hover) span,
.sidebar-collapsed .adminpanel_sidebar:has(.bottom_div:hover) span {
    display: inherit;
}


/* MODAL RIGHT SIDE*/
.modal.right{
    --bs-modal-padding: 1.5rem;
}
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 450px;
    height: 100%;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.modal.right.show .modal-dialog {
    transform: translateX(0);
}

/* Reset default centering */
.modal.right .modal-dialog {
    margin: 0;
    max-width: none;
}

.modal.right .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}


.modal.right hr{
    margin-block: 1.5rem;
}

.text-stripe-blue {
    color: #635BFF;
}

.card__head{
    font-size: 18px;
}


.card__personal-info ul li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.5em;
}

.card__personal-info .material-icons-outlined {
    font-size: 1.25em;
    opacity: 0.85;
}

.list-style li {
    position: relative;
    padding-left: 1.15em;
}

.list-style li::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #A9A9A9;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 7px;
}

.list-style li:not(:last-child) {
    padding-bottom: 1em;
}

.list-style li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #A9A9A9;
    position: absolute;
    left: 3px;
    top: 14px;
}

.list-style li span {
    font-weight: 400;
    color: #555555;
}

.card__invoice {
    background-color: #E9E8FF;
}


.card__invoice figure img {
    width: 4rem;
}

.card__invoice button img {
    width: 1.5rem;
}

.invoice-card {
    padding-block: 1em;
    border-top: 1px solid #cbc9f4;
}