: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;
}

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: var(--dark-grey);
    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;
}
select{
    background-image: url(../images/down-arrow-1.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 96% center !important;
}
.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 var(--primary-color) !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;
}

.blue_btn {
    padding: 16px 64px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
}
.blue_btn:hover {
    background-color: var(--btn-hover-color);
}
.blue_btn_outline {
    padding: 16px 64px;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 999px;
    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: 999px;
    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: 999px;
    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;
}
.blue_btn_outline_small {
    padding: 8px 36px;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 999px;
    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: 999px;
    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);
}

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

.red_btn_small{
    padding: 8px 38px;
    background-color: red;
    border: 1px solid red;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border-radius: 999px;
    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%;
}
.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 a {
    padding: 10px 15px;
    font-size: 16px;
    color: var(--black);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}
.adminpanel_sidebar .middle_div ul li a:hover,
.adminpanel_sidebar .middle_div ul li a.active {
    background: #E4F0FF;
}
.adminpanel_sidebar .middle_div ul li a span {
    font-size: 14px;
    line-height: normal;
    color: var(--black);
    /* white-space: nowrap;
    text-overflow: ellipsis; */
    overflow: hidden;
    width: calc(100% - 70px);
}
.adminpanel_sidebar .middle_div ul li a:hover span,
.adminpanel_sidebar .middle_div ul li a.active span {
    color: var(--primary-color);
}
.adminpanel_sidebar .middle_div ul li a img {
    width: 22px;
    filter: grayscale(100%) brightness(0);
}
.adminpanel_sidebar .middle_div ul li a.active img {
    filter: grayscale(0) brightness(100%);
}
.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: #F2F5F8;
    min-height: 100vh;
}
.adminpanel_maincontentarea .adminpanel_header {
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: var(--primary-color);
    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 .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;
    padding: 20px 10px;
}
.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: var(--primary-color);
    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 39px;
}
.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: #EAF0F5;
    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 #BEC0C3;
    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.accepted{
    background: #90CC6A33;
    color: #6B9C4B;
}
.custom_table table tbody tr td .status.confirmed{
    background: #90CC6A33;
    color: #6B9C4B;
}
.custom_table table tbody tr td .status.pending{
    background: #E8933933;
    color: #E89339;
}
.dactiveUser{
    border-color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
    margin-bottom: 8px;
}
.custom_table table tbody tr td .status.cancelled{
    background: #D3272733;
    color: #D32727;
}
.custom_table table tbody tr td .status.rescheduled{
    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 a{
    font-size: 12px;
    color: #32393F;
    padding: 8px 12px;
}
.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;
}
.auth_page_main .logo-box{
    margin: 0 0 30px;
}
.auth_page_main .form-card-box{
    width: 100%;
    max-width: 446px;
    margin: 0 auto;
}
.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: 145px;
    height: 145px;
    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: 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;
}
.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;
}
.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;
}
.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.cancelled{
    background: #D3272733;
    color: #D32727;
}

.appontment_block .appontment_row .appontment_col .box .status.rescheduled{
    background: #E8933933;
    color: #E89339;
}
.appontment_block .appontment_row .appontment_col .box .status.accepted{
       background: #90CC6A33;
    color: #6B9C4B;
}
.appontment_block .appontment_row .appontment_col .box .status.confirmed{
       background: #90CC6A33;
    color: #6B9C4B;
}
.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 #0181E2;
    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: #0181E2;
    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;
    justify-content: space-between;
}
.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.cancelled{
    background: #D3272733;
    color: #D32727;
}

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

.doctor_status_block .status.confirmed{
    background: #90CC6A33;
    color: #6B9C4B;
}
.doctor_status_block .status.accepted{
    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: calc(100% - 339px);
    padding-right: 10px;
}
.dashboard_left .count_row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}
.dashboard_left .count_row .count_col{
    width: 33.333%;
    padding: 4px;
}
.dashboard_left .count_row .count_col .box{
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    height: 100%;
}
.dashboard_left .count_row .count_col.patient_count .box{
    background-image: url(../images/vector-1.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
.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: #E4F0FF;
    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 .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: #0181E2;
    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: 33.333%;
    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: #0181E2;
    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;
}


.account_management {
    width: 100%;
    background: #f2f5f8;
}

.account_management_wrap {
    margin: auto;
    max-width: 650px;
}

.account_body {
    width: 100%;
}

.account_management_wrap .account_body .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.account_management_wrap .account_body .form-header h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    color: #000;
}

/* .account_management_heading {
    margin: 15px 0;
    display: inline-block;
}

.account_management_box h5 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0 0 10px;
}

.account_management_box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
}

.account_management_box .form_group {
    padding-bottom: 20px;
    margin-bottom: 0;
}

.account_management_box .form_group label {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.account_management_box .form_group .field {
    width: 100%;
    position: relative;
}

.account_management_box .form_group .field .form-control {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: solid 1px #ccc;
    padding: 10px;
}

.account_management_box .form_group .field .eye {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    border: none;
}

.account_management_box .form_group .field:has(.eye) .form-control {
    padding-right: 45px;
}

.account_management_wrap .form-group-actions {
    margin-bottom: 30px;
    text-align: center;
}

.account_management_wrap .form-group-actions .submit-btn {
    width: 209px;
    height: 64px;
    padding: 10px 20px;
    background-color: #0181e2;
    border: 1px solid #0181e2;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    gap: 8px;
    transition: all 0.5s;
    margin: auto;
}

.account_management_box .form-group-actions .submit-btn:hover {
    background: #015da3;
} */


.top_head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: solid 1px #d0c8c8;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.top_head_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.top_head_left .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px #d0c8c8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.top_head_left h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    margin: 0;
    text-transform: capitalize;
}

.top_head_right {

}

.top_head_right .btn {
    min-width: 140px;
    padding: 12px 15px;
    background-color: #0181e2;
    border: 1px solid #0181e2;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    gap: 8px;
    transition: all 0.5s;
    margin: 0;
}

.top_head_right .btn:hover {
    background: #015da3;
}


.custom_form h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    margin: 0 0 20px;
    text-transform: capitalize;
}

.account_management_box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
}

.account_management_box h5 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0 0 10px;
}

.custom_form .form_group,
.account_management_box .form_group {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.custom_form .form_group label,
.account_management_box .form_group label {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.custom_form .form_group .field,
.account_management_box .form_group .field {
    width: 100%;
    position: relative;
}

.custom_form .form_group .field .form-control,
.account_management_box .form_group .form-control {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: solid 1px #ccc;
    padding: 10px;
}

.custom_form .form_group .field .eye,
.account_management_box .form_group .field .eye {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    border: none;
}

.custom_form .form_group .field:has(.eye) .form-control,
.account_management_box .form_group .field:has(.eye) .form-control {
    padding-right: 45px;
}

.custom_form .form-group-actions,
.account_management_box .form-group-actions {
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.custom_form .form-group-actions .button,
.account_management_box .form-group-actions .button {
    min-width: 140px;
    padding: 12px 15px;
    background-color: #0181e2;
    border: 1px solid #0181e2;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    gap: 8px;
    transition: all 0.5s;
    margin: 0;
}

.custom_form .form-group-actions .button:hover,
.account_management_box .form-group-actions .button:hover {
    background: #015da3;
}

.custom_form .form-group-actions .button.cancel_button,
.account_management_box .form-group-actions .button.cancel_button {
    background: transparent;
    border: solid 1px #000;
    color: #000;
}

.custom_form .form-group-actions .button.cancel_button:hover,
.account_management_box .form-group-actions .button.cancel_button:hover {
    background: #000;
    color: #fff;
}


.store_wrap {
    padding: 30px;
    border-radius: 10px;
    background: #f8fcff;
    border: solid 1px #ccc;
}

.store_wrap .input-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.store_wrap .input-group label {
    font-weight: 600;
    font-size: 15px;
    line-height: 14px;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.store_wrap .input-group .form-control {
    width: auto;
    min-width: 250px;
    height: 45px;
    border-radius: 10px;
    border: solid 1px #ccc;
    padding: 10px;
}

.store_wrap .input-group .button_type {
    width: auto;
    min-width: 90px;
    height: 45px;
    border-radius: 8px !important;
    border: solid 1px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.store_wrap .input-group .button_type:hover {
    background: #000;
    color: #fff;
}

.custom_table_wrap {
    width: 100%;
}

.custom_table_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.custom_table_top h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    margin: 0;
    text-transform: capitalize;
}

.custom_table_top .btn {
    min-width: 140px;
    padding: 12px 15px;
    background-color: #0181e2;
    border: 1px solid #0181e2;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    gap: 8px;
    transition: all 0.5s;
    margin: 0;
}

.custom_table_top .btn:hover {
    background: #015da3;
}

.table-responsive {
    overflow: auto;
}

.table-responsive table {
    width: 100%;
    border-spacing: 0 10px;
    border-collapse: separate;
    margin-top: -10px;
}

.table-responsive table thead tr th {
    background-color: #374447;
    padding: 15px 20px !important;
    color: #fff;
    font-size: 14px;
    font-weight: 600 !important;
    text-align: left;
    line-height: 22px;
}

.table-responsive table thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-responsive table thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-responsive table tbody tr td {
    color: #374447;
    padding: 10px 20px !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    border-top: none;
    border-bottom: 1px solid #ccc;
    background: #fff !important;
    vertical-align: middle;
}

.table-responsive table tbody tr:nth-child(odd) td {
    --bs-table-bg-type: #fff !important;
}

.icon_button_wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.icon_button_wrap .icon_button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 6px;
    background-color: #0181e2;
}

.icon_button_wrap .icon_button:hover {
    background-color: #0673c7;
}

.icon_button_wrap .icon_button.delete_button {
    background: #e40000;
}

.icon_button_wrap .icon_button.delete_button:hover {
    background: #c80000;
}


.question_accordion .accordion-item {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-header .accordion-button {
    padding: 15px 20px;
    line-height: normal;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px 6px 0 0;
    background: #0181e2;
    color: #fff;
}

.accordion-header .accordion-button::after {
    position: absolute;
    right: 15px;
    filter: invert(1) brightness(100);
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-body {
    width: 100%;
}

.accordion-body-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-body-top-left {

}

.accordion-body-top-left span {
    font-size: 12px;
    padding: 10px 15px;
}

.accordion-body-top-right {

}

.accordion-body-option {
 width: 100%;
 display: block;
}

.accordion-body-option h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 20px 0;
    display: block;
}

.accordion-body-option ul {
    padding: 0 0 0 20px;
}

.accordion-body-option ul li {
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
}




.custom_form .form-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.custom_form .form-check input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.custom_form .form-check .form-check-label {
    margin: 0;
    font-size: 14px;
}



.account_details_top {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    background: #f8fcff;
    border: solid 1px #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account_details_top_left {
    width: 70%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.account_details_image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
}

.account_details_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.image_upload {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}

.image_upload input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
}

.account_details_name {
    width: calc(100% - 160px);
}

.account_details_name h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    margin: 0 0 5px;
    text-transform: capitalize;
}

.account_details_name ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.account_details_name ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #0181E2;
}

.account_details_name ul li a {
    color: #0181E2;
}

.account_details_name ul li img {
    width: 16px;
}

.account_details_name p {
    margin: 0 0 5px;
}


.account_details_top_right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
}

.account_details_top_right .blue_btn,
.account_details_top_right .blue_btn_outline {
    padding: 12px 40px;
    min-width: 220px;
}

.account_details_top_right .blue_btn_outline:hover {
    background: #0181E2;
    color: #fff;
}


.account_details_tabs {
    margin-top: 30px;
}

.account_details_tabs .nav-tabs {
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.account_details_tabs .nav-tabs .nav-item {
    border: none;
}

.account_details_tabs .nav-tabs .nav-item .nav-link {
    border: solid 1px #0181E2;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #0181E2;
    background: #f8fcff;
}

.account_details_tabs .nav-tabs .nav-item .nav-link.active,
.account_details_tabs .nav-tabs .nav-item .nav-link:hover {
    background: #0181E2;
    color: #fff;
    border-color: #0181E2;
}



.post_code #search_postcode {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
    height: 100%;
    padding: 0;
    width: 30px;
    background: transparent;
    border: none;
    color: #000;
}

.post_code .form-control {
    border-radius: 10px !important;
}

.phone_number .input-group-text {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    height: 100%;
    background: transparent;
    border: none;
}

.phone_number .form-control {
    padding-left: 60px!important;
    border-radius: 10px !important;
}
