@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #ced4da;
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

body {
    color: #000;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

a {
    color: #E39253;
    transition: 0.5s;
    outline-style: none;
    text-decoration: none;
}

a:hover,
a:active,
a:visited,
a:focus {
    outline: none;
    text-decoration: none;
    color: #E39253;
}

p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: 700;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

section {
    display: block;
    float: left;
    width: 100%;
}

.left_pannel {
    display: block;
    float: left;
    width: 240px;
    background: #000;
    min-height: 100vh;
    transition: all .3s;
    transition-timing-function: ease-out;
    position: fixed;
}

.left_pannel.active {
    margin-left: -240px;
}

.left_pannel .inside {
    display: block;
    float: left;
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    left: 0;
    top: 0;
}

.left_pannel .logo {
    display: flex;
    float: left;
    width: 100%;
    padding: 5px 20px;
    height: 54px;
    background: #E39253;
    align-items: center;
}

.left_pannel .logo p {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    margin-left: 10px;
}

.left_pannel .logo img {
    max-height: 44px;
}

.left_pannel .menu_area {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 0 20px 20px;
    overflow-y: auto;
    height: calc(100% - 54px);
}

.left_pannel .menu_area::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #485589;
    background-color: #485589;
}

.left_pannel .menu_area::-webkit-scrollbar {
    width: 5px;
    background-color: #a56839;
}

.left_pannel .menu_area::-webkit-scrollbar-thumb {
    background-color: #a56839;
}

.left_pannel .nav-link {
    padding: 12px 15px;
    display: inline-block;
    width: 100%;
    color: #fff;
    border-radius: 6px 0 0 6px;
    margin: 5px 0;
    cursor: pointer;
    background: #0F0500;
}

.left_pannel .nav-link:hover {
    background: #E39253;
}

.left_pannel .active {
    background: #E39253;
    color: #fff;
}

.left_pannel .nav-link img {
    width: 20px;
    margin-right: 8px;
}

.right_pannel {
    display: block;
    float: right;
    width: calc(100% - 240px);
    background: #fff;
    min-height: 100vh;
    position: relative;
    transition: all .3s;
    transition-timing-function: ease-out;
}

.right_pannel.active2 {
    width: 100%;
}

.right_pannel .body {
    display: block;
    float: left;
    width: 100%;
    padding: 20px 20px 20px 20px;
    position: relative;
}

.right_top_header {
    display: flex;
    float: left;
    width: 100%;
    height: 54px;
    background: #E39253;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    padding: 0 15px;
    z-index: 3;
}

.right_top_header .menu {
    display: block;
    float: left;
    cursor: pointer;
}

.right_top_header .header_right {
    display: flex;
    width: auto;
    align-items: center;
}

.notification_section {
    display: flex;
    width: 36px;
    height: 36px;
    position: relative;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-right: 10px;
}

.notification_section img {
    height: 15px;
}

.notification_section span {
    position: absolute;
    top: -4px;
    right: -5px;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #ff6c00;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.top_header_profile {
    display: flex;
    vertical-align: top;
    width: auto;
    position: relative;
    align-items: center;
    cursor: pointer;
}

.top_header_profile p {
    font-size: 12px;
    font-weight: 500;
}

.top_header_profile .drop {
    display: none;
    float: left;
    width: 170px;
    position: absolute;
    right: 0;
    top: 34px;
    background: #000;
    padding: 10px;
    border-radius: 6px;
    color: #fff;

}

.top_header_profile:hover .drop {
    display: block;
}

.top_header_profile .drop ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top_header_profile .drop ul i {
    margin-right: 5px;
}

.top_header_profile .drop ul li a {
    color: #fff;
    padding: 5px;
    display: inline-block;
    vertical-align: top;
}

.top_header_profile .drop ul li a:hover {
    color: #E39253;
}

.profile_img2 {
    display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    overflow: hidden;
    text-align: center;
    line-height: 34px;
    margin-right: 5px;
    border: 1px solid #E39253;
}

.profile_img2 p {
    margin: 0;
    font-size: 12px;
    width: 100%;
    height: 100%;
}

.profile_img2 img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page_main_heading {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    float: left;
}

.page_main_heading h2 {
    font-size: 18px;
    font-weight: 500;
}


.table_area {
    display: block;
    float: left;
    width: 100%;
}

.table_area .table_header {
    display: flex;
    flex-wrap: nowrap;
    float: left;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #000000;
    border-radius: 4px;
}

.table_area .table_header>div {
    padding: 0 5px;
}

.table_area .table_body {
    display: flex;
    flex-wrap: nowrap;
    float: left;
    width: 100%;
    padding: 10px 10px;
    color: #000;
    font-size: 12px;
    align-items: center;
    transition: all .5s;
    transition-timing-function: ease-out;
    text-align: center;
    min-height: 56px;
    background: #fff;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);

}

.table_area .table_body p {
    color: #000;
}

.table_area .table_body>div {
    padding: 0 5px;
}

.table_area .table_body .mobile_heading {
    display: none;
    color: #809FB8;
    margin-right: 10px;
}

.del {
    color: #6A798A;
    background: #FFEBEC;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s;
    transition-timing-function: ease-out;
}

.del:hover {
    color: #fff;
    background: #6A798A;
}

.view {
    color: #6A798A;
    background: #D1DADB;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s;
    transition-timing-function: ease-out;
}

.view:hover {
    color: #D1DADB;
    background: #6A798A;
}

.switch_style1 .form-check-input:checked {
    background-color: #D4FFF1 !important;
    border-color: #D4FFF1 !important;
    background-image: url(../images/switch_enable.svg) !important;
    border: none !important;
}

.switch_style1 {
    display: inline-block;
    margin: 6px 0 0 0;
}

.switch_style1 .form-check-input {
    background-color: #E3000B;
    background-image: url(../images/switch_white_round.svg) !important;
    border: none !important;
}

.profile_img_name {
    display: flex;
    align-items: center;
    justify-content: left;
}

.email_style {
    line-break: anywhere;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px;
    border-bottom: 1px solid #dee2e6;
    background: #000;
    color: #fff;
}

.btn-close {
    background-image: url(../images/model_cross.svg) !important;
    background-size: 25px;
    opacity: 1;
}

.user_del_modal_body {
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
}

.user_del_modal_body .left {
    flex: 100px 0 0;
}

.user_del_modal_body .left img {
    width: 100%;
}

.user_del_modal_body .right {
    padding-left: 25px;
}

.error {
    color: #FF0000;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 3px;
}

.but_style_line {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    min-width: 120px;
    background: none;
    border-radius: 6px;
    border: 1px solid #E39253;
    color: #E39253 !important;
    font-size: 13px !important;
    transition: all .5s;
    transition-timing-function: ease-out;
    background: #fff;
    margin: 5px 0;
    text-align: center;
}

.but_style_line:hover {
    background: #E39253;
    border: 1px solid #E39253;
    color: #fff !important;
}


.but_style {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    min-width: 120px;
    background: none;
    border-radius: 6px;
    border: 1px solid #000;
    color: #fff !important;
    font-size: 13px !important;
    transition: all .5s;
    transition-timing-function: ease-out;
    background: #000;
    text-align: center;
}

.but_style:hover {
    background: #E39253;
    border: 1px solid #E39253;
    color: #fff !important;
}

.modal-body {
    background: #E6E7E8;
}

.user_details_modal_body {
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
}

.user_details_modal_body .left {
    flex: 200px 0 0;
}

.user_details_modal_body .left img {
    border-radius: 100%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.user_details_modal_body .right {
    padding-left: 25px;
}

.user_details_modal_body .right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.user_details_modal_body .right ul li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
}

.user_details_modal_body .right ul li strong {
    display: inline-block;
    width: 90px;
}

.user_details_modal_body .right ul li:nth-child(odd) {
    background: #fff;
}


.provider_del_modal_top {
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed #434244;
}

.provider_del_modal_top .left {
    flex: 100px 0 0;
}

.provider_del_modal_top .left img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.provider_del_modal_top .right {
    padding-left: 25px;
}

.provider_del_modal_top .right h4 {
    font-size: 20px;
}

.provider_del_modal_bottom {
    float: left;
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.provider_del_modal_bottom p {
    margin-bottom: 5px;
}

.provider_details_top_section {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.provider_details_top_section .left {
    display: block;
    float: left;
    flex: 115px 0 0;
}

.provider_details_top_section .left img {
    width: 115px;
    height: 115px;
    object-fit: cover;
    object-position: center;
}

.provider_details_top_section .right {
    display: block;
    float: left;
    width: 100%;
    padding-left: 15px;
}

.provider_details_top_section .right h2 {
    font-size: 20px;
}

.provider_details_top_section .right p {
    color: #8A8A8A;
}

.provider_details_top_section .right h3 {
    font-size: 16px;
    margin: 5px 0;
}

.provider_details_top_section .right h3 span {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 15px;
    color: #fff;
    border-radius: 20px;
    background: #06C02F;
    font-size: 12px;
    margin-top: -4px;
}

.provider_details_top_section .right h4 {
    margin-top: 5px;
    font-size: 20px;
}

.provider_details_top_section .right h4 i {
    color: #E39253;
}

.provider_details_about_section {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.provider_details_about_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.provider_details_about_section .heading h2 {
    font-size: 18px;
    font-weight: 500;
}

.provider_details_about_section .text_area {
    display: block;
    float: left;
    width: 100%;
    background: #E6E7E8;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.provider_details_about_section .text_area p {
    font-size: 14px;
}

.provider_details_about_section .text_area ul {
    font-size: 14px;
    margin: 10px 0 0 0;
    padding: 0 0 0 15px;
}

.provider_details_service_section {
    display: block;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.provider_details_service_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.provider_details_service_section .heading h2 {
    font-size: 18px;
    font-weight: 500;
}

.service_amount {
    display: inline-block;
    vertical-align: middle;
    background: #FFEBEC;
    padding: 8px 12px;
    border-radius: 5px;
}

.service_amount p {
    color: #FF0000 !important;
    font-weight: bold;
}

.provider_service_view_top {
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.provider_service_view_top h2 {
    font-size: 17px;
}

.provider_service_view_top h3 {
    font-size: 17px;
    color: #FF0000;
}

.provider_service_view_bottom {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.provider_service_view_bottom p {
    font-size: 14px;
}

.statistic_graph_section {
    display: block;
    float: left;
    width: 100%;
}

.statistic_graph_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #E39253;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.statistic_graph_box1_heading {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.statistic_graph_box1_heading h2 {
    font-size: 20px;
    color: #fff;
}

.statistic_graph_box1_heading .right .nav-link {
    color: #fff;
}

.statistic_graph_box1_heading .right .active {
    color: #fff;
    background: #000;
}

.statistic_graph_img_area {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 15px;
}

.statistic_graph_img_area img {
    float: left;
    width: 100%;
}

.statistic_graph_box2 {
    display: block;
    float: left;
    width: 100%;
    background: #000;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.statistic_graph_box2_heading {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.statistic_graph_box2_heading h2 {
    font-size: 20px;
    color: #fff;
}

.statistic_search_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.statistic_search_but_margin {
    margin-top: 30px;
}

.statistic_total_revenue_section {
    display: block;
    float: left;
    width: 100%;
}

.sub_heading {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 25px;
}

.sub_heading h2 {
    font-size: 15px;
}
.sub_heading h2 span
{
    color: #E39253;
}

.statistic_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #E39253;
    border-radius: 12px;
    padding: 20px;
    margin-top: 5px;
}

.statistic_box1 .top {
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.statistic_box1 .top .left {
    display: block;
}

.statistic_box1 .top .left h2 {
    color: #fff;
    font-size: 30px;
}

.statistic_grph_select {
    display: block;
}

.statistic_grph_select select {
    background-color: #E39253;
    border: 0;
    color: #000;
}

.statistic_grph_select .form-select {
    background-image: url(../images/down_arrow.svg);
}

.cms_box {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
}

.cms_box img {
    width: 100%;
}

.notification_box1 {
    display: flex;
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}

.notification_box1 .icon_area {
    display: block;
    float: left;
    width: 50px;
}

.notification_box1 .icon_area img {
    width: 100%;
}

.notification_box1 .text_area {
    display: block;
    float: left;
    width: calc(100% - 60px);
}

.notification_box1 .text_area p {
    font-size: 14px;
}

.dashboard_card {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
    border-radius: 10px;
}

.dashboard_card .heading {
    display: block;
    float: left;
    width: 100%;
    background: #000;
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
    color: #fff;
}

.dashboard_card .heading h2 {
    font-size: 18px;
}

.dashboard_card .body {
    display: block;
    float: left;
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
    background: #fff;
}

.dashboard_current_status_boxes {
    display: block;
    float: left;
    width: 100%;
}

.dashboard_current_status_box1 {
    display: block;
    float: left;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    margin: 10px 0;
}

.dashboard_current_status_box1 .top {
    display: flex;
    float: left;
    width: 100%;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}

.dashboard_current_status_box1 .top h2 {
    color: #E39253;
    font-size: 30px;
}

.dashboard_current_status_box1 .top i {
    color: #E39253;
    font-size: 25px;
}

.dashboard_current_status_box1 .bottom {
    display: flex;
    float: left;
    width: 100%;
    padding: 5px 15px;
    background: #000;
    border-radius: 0 0 5px 5px;
    color: #fff;
}

.dashboard_current_service_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
}

.service_order {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.popup_order_details_area {
    display: block;
    float: left;
    width: 100%;
}

.popup_order_details_area .heading {
    display: block;
    float: left;
    width: 100%;
    border-bottom: 2px dashed #434244;
}

.popup_order_details_area .heading h2 {
    font-size: 20px;
    background: #E6E7E8;
    display: inline-block;
    vertical-align: top;
    padding: 5px 5px 5px 0;
    margin-bottom: -5px;
}

.popup_order_details_list {
    display: block;
    float: left;
    margin-top: 15px;
    width: 100%;
}

.popup_order_details_list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.popup_order_details_list ul li:nth-child(odd) {
    background: #fff;
}

.popup_order_details_list ul li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
}

.popup_order_details_list ul li strong {
    display: inline-block;
    width: 150px;
}

.phone_call {
    float: right;
    padding: 5px 15px;
    color: #fff;
    border-radius: 20px;
    background: #06C02F;
    font-size: 10px;

}

.order_price {
    float: right;
    color: #DA211C;
    font-size: 15px;
    font-weight: 700;

}

.status_completed {
    color: #06C02F !important;
    font-weight: 700;
}

.status_ongoing {
    color: #c06606 !important;
    font-weight: 700;
}

.status_canceled {
    color: #c00606 !important;
    font-weight: 700;
}

.status_upcoming {
    color: #c0ad06 !important;
    font-weight: 700;
}

.status_not_attended {
    color: #c00619 !important;
    font-weight: 700;
}

.table_dropdown_div {
    display: flex;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.table_dropdown_div .dropdown:hover ul.dropdown-menu {
    display: block;
}

.table_dropdown_div .dropdown-toggle::after {
    display: none;
}

.table_dropdown_div .dropdown-menu {
    width: 200px;
}

.table_dropdown_div .dropdown-menu {
    padding: 0;
}

.table_dropdown_div .dropdown-menu li {
    display: flex;
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.table_dropdown_div .dropdown-menu li:nth-child(odd) {
    background: #B8C8D6;
}



.login_body {
    display: flex;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    min-height: 100vh;
}

.login_left_area {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 50%;
    background: url(../images/login_bg.jpg) center no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 25px;
    position: relative;
}

.login_left_area img {
    width: 100%;
    max-width: 180px;
}

.login_copy_text {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 50%;
    text-align: center;
    color: #fff;
}

.login_right_area {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 50%;
    min-height: 100vh;
    padding: 25px;
    position: relative;
}

.login_right_area h2 {
    font-weight: 500;
}

.login_right_area .form_section {
    display: block;
    float: left;
    width: 100%;
    max-width: 700px;
    background: #F8F8F8;
    border-radius: 15px;
    padding: 40px;
}

.login_right_area .form_section p {
    margin-top: 5px;
    color: #000;
}

.login_right_area .login_form {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.but_style1 {
    display: inline-block;
    vertical-align: top;
    background: #000;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    transition: all .5s;
    transition-timing-function: ease-out;
}

.but_style1:hover {
    background: #E39253;
}

.login_right_area .form_section a {
    font-weight: 500;
}

.form-floating {
    position: relative;
}

.password_eye {
    position: absolute;
    top: 17px;
    right: 15px;
}

.password_eye i {
    cursor: pointer;
}

.otp_section {
    display: flex;
    float: left;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.otp_section input {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #D1D1D6;
    text-align: center;
    font-size: 20px;
    margin: 5px 10px;
}

.otp_section input:focus {
    background: #D1D1D6;
    color: #fff;
    border: 1px solid #D1D1D6;
    box-shadow: none;
    outline-style: none;
}

.otp_section input:focus-visible {
    background: #D1D1D6 !important;
    color: #fff;
    border: 1px solid #D1D1D6;
    box-shadow: none;
    outline-style: none;
}

.reset_modal_body {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}

.reset_modal .modal-body {
    background: #fff;
    border-radius: 10px;
}

.reset_modal_body img {
    width: 100%;
    max-width: 120px;
    margin: 20px 0;
}

.plan_settings_profession_category_section {
    display: block;
    float: left;
    width: 100%;
    border-top: 1px solid #bfbfbf;
    margin-top: 30px;
}

.plan_settings {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 30px 0 0;
    border-right: 1px solid #bfbfbf;
    height: 100%;
}

.profession_category {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 0 0 30px;
}

.plan_boxes {
    display: block;
    float: left;
    width: 100%;
    padding: 15px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    margin-top: 15px;
}

.plan_box1 {
    display: block;
    float: left;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
    margin: 10px 0;
}

.plan_box1 .top {
    display: flex;
    float: left;
    width: 100%;
    padding: 10px 15px;
    align-items: center;
    justify-content: space-between;
}

.plan_box1 .top h2 {
    color: #E39253;
    font-size: 25px;
}

.plan_box1 .top h2 span {
    font-size: 20px;
}

.plan_box1 .bottom {
    display: flex;
    float: left;
    width: 100%;
    padding: 3px 15px;
    background: #000;
    border-radius: 0 0 5px 5px;
    color: #fff;
}

.plan_box1 .bottom p {
    font-size: 12px;
}

.services {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 12px;
    background: #FFEBEC;
    border-radius: 5px;
}

.profession_category_input_section {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.profession_category_input_box {
    display: flex;
    float: left;
    width: 100%;
    background: #F0F0F0;
    align-items: center;
    padding: 5px 15px;
    margin: 5px 0;
}

.profession_category_input_box h2 {
    font-size: 15px;
    flex: 100px 0 0;
}

.profession_category_input_box input {
    border: none;
    background: none;
}

.profession_category_input_box input:focus {
    background: #F0F0F0;
}

.create_plan_section {
    display: block;
    float: left;
    width: 100%;
}

.create_plan_name {
    display: block;
    float: left;
    width: 100%;
}

.create_plan_name_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    padding: 7px 15px;
    margin-top: 10px;
}

.create_plan_name_box1 p strong {
    display: inline-block;
    width: 110px;
    vertical-align: top;
}

.create_plan_available_service {
    display: block;
    float: left;
    width: 100%;
    margin-top: 25px;
}

.create_plan_available_service_table {
    display: block;
    float: left;
    width: 100%;
    margin-top: 10px;
    background: #fff;
}

.create_plan_available_service_table .service_table_heading {
    display: block;
    float: left;
    width: 100%;
    background: #000;
    padding: 8px 15px;
}

.create_plan_available_service_table .service_table_body {
    display: block;
    float: left;
    width: 100%;
    padding: 8px 15px;
}

.create_plan_available_service_table .service_table_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #D9D9D9;
    padding: 4px 15px;
    margin-top: 10px;
}

.create_plan_available_add_section {
    display: flex;
    align-items: center;
    float: left;
    width: calc(100% - 30px);
    margin: 15px 15px 0 15px;
    border-top: 1px solid #00000064;
    padding: 15px 0;
}

.but_style2 {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    background: none;
    border-radius: 6px;
    border: 1px solid #000;
    color: #fff !important;
    font-size: 13px !important;
    transition: all .5s;
    transition-timing-function: ease-out;
    background: #000;
}

.but_style2:hover {
    background: #E39253;
    border: 1px solid #E39253;
    color: #fff !important;
}

.create_plan_available_add_section input {
    border: none;
}

.create_plan_available_add_note_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.create_plan_bottom_section {
    float: left;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #00000064;
    justify-content: space-between;
}

.create_plan_bottom_section .left .w-box {
    display: block;
    float: left;
    width: 100%;
    padding: 8px 15px;
    background: #fff;
    align-items: center;
}

.create_plan_bottom_section .left .w-box .top {
    display: flex;
    vertical-align: middle;
    float: left;
    width: 100%;
    align-items: center;
}

.create_plan_bottom_section .left .w-box .bottom {
    display: block;
    float: left;
    width: 100%;
}

.create_plan_bottom_section .left .w-box h2 {
    font-size: 16px;
    white-space: nowrap;
}

.create_plan_bottom_section .left .w-box p {
    font-size: 14px;
    margin-left: 20px;
}

.create_plan_but_section {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.create_plan_upload_area {
    display: block;
    float: left;
    width: 100%;
    margin: 15px 0;
}

.create_plan_upload_area .file {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    border-radius: 5px;
    flex-wrap: wrap;
}

.create_plan_upload_area .file i {
    font-size: 25px;
    margin-bottom: 10px;
}

.create_plan_upload_area .file p {
    width: 100%;
    text-align: center;
}

.create_plan_upload_area input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.profile_page_main_heaing {
    display: block;
    float: left;
    width: 100%;
}

.profile_page_main_heaing h2 {
    font-size: 22px;
}

.profile_page_card {
    display: block;
    float: left;
    width: 100%;
    padding: 40px 20px;
    color: #000;
    background: #fff;
    margin-top: 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.profile_page_card .profile_left_area {
    display: block;
    float: left;
}

.profile_img_upload {
    margin: 0;
}

.profile_img_upload .img_box {
    display: block;
    float: left;
    width: 160px;
    height: 160px;
    margin-top: 10px;
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 100%;
    padding: 0;
    margin: 0;
}

.profile_img_upload .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    border-radius: 100%;
}

.profile_page_card .profile_right_area {
    display: block;
    float: right;
    width: calc(100% - 180px);
}

.profile_page_but_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    text-align: right;
}

.upload_but {
    position: absolute;
    overflow: hidden;
    display: flex;
    vertical-align: top;
    width: 36px;
    height: 36px;
    background: #E39253;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    z-index: 2;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.upload_but input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
    cursor: pointer;
}

.no_date {
    width: 100%;
    max-width: 350px;
}

.notification_date {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: right;
}

.modal-header .btn-close:focus {
    outline-style: none;
    box-shadow: none;
}

.upload_img_style {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}


.content_page_header {
    display: flex;
    float: left;
    width: 100%;
    background: #E39253;
    padding: 10px 0;
    flex-wrap: wrap;
}

.content_page_header .logo {
    display: block;
    float: left;
    width: 80px;
    flex: 80px 0 0;
}

.content_page_header .logo img {
    display: block;
    float: left;
    width: 100%;
}

.content_page_body {
    display: block;
    float: left;
    width: 100%;
    padding: 60px 0;
}

.content_page_body p {
    margin-top: 15px;
    color: #000;
}

.content_page_body ul {
    margin: 15px 0 0 15px;
    padding: 0;
}

.language-selector {
    display: flex;
    align-items: center;
    float: right;
    margin-top: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.language-selector label {
    margin-right: 10px;
    font-weight: bold;
}

.language-selector select {
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.language-selector {
    margin-left: auto;
}

.content_page_body h3,
.content_page_body h4,
.content_page_body h5,
.content_page_body h6 {
    margin-top: 15px;
}

.content_page_footer {
    display: block;
    float: left;
    width: 100%;
    background: #000;
    padding: 40px 0;
    color: #fff;
}

.content_page_footer_box1 {
    display: block;
    float: left;
    width: 100%;
    margin: 15px 0;
}

.content_page_footer_box1 h2 {
    font-size: 22px;
}

.content_page_footer_box1 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.content_page_footer_box1 ul li {
    margin-bottom: 10px;
}

.content_page_footer_box1 ul li a {
    color: #fff;
}

.content_page_footer_box1 ul li a:hover {
    color: #006E2F;
}

.contact_body_address_box1 {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 20px 0 0;
    position: relative;
    padding-left: 40px;
}

.contact_body_address_box1 img {
    position: absolute;
    left: 0;
    top: 0;
}

.contact_body_address_box1 p {
    margin-top: 5px;
    color: #fff;
}

.apexcharts-toolbar {
    display: none !important;
}

.star-rating {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #FFD700;
}

.star-rating span {
    margin-left: 10px;
    font-size: 18px;
    color: #333;
}

.category_profile_img_name {
    justify-content: center;
}
.scrool_table
{
    display: block;
    float: left;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
}
.scrool_table::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #485589;
    background-color: #485589;
}

.scrool_table::-webkit-scrollbar {
    width: 5px;
    background-color: #a56839;
}

.scrool_table::-webkit-scrollbar-thumb {
    background-color: #a56839;
}

.homepage_slider_section
{
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}
.homepage_banner_text
{
    display: block;
    float: left;
    width: 100%;
    margin-top: 10px;
}
.homepage_banner_text img
{
    width: 100%;
}

.homepage_banner_slider_button_section
{
    display: block;
    float: left;
    width: 100%;
    margin-top: 10px;
}
.homepage input[type=text]
{
    border: none;
    border-bottom: 1px solid #8A8A8A;
    padding: 10px 0;
    border-radius: 0;
    background: none;
}
.homepage_link_section
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.homepage_link_section .boxes
{
    display: block;
    float: left;
    width: 100%;
}
.homepage_link_section .plan_box1{
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #E7E7E7;
    padding: 20px;
}

.qr_upload_section
{
    display: block;
    float: left;
    width: 100%;    
}
.home_experience_boxes
{
    display: block;
    float: left;
    width: 100%;
}
.home_experience_box1
{
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #E7E7E7;
    padding: 40px 20px;
    margin: 15px 0;
    text-align: center;
    position: relative;
}
.home_experience_box1 h2
{
    color: #D27722;
    font-size: 50px;
}
.home_experience_box1 .edit
{
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #545454;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
}
.home_experience_box1 .edit:hover
{
    background: #D27722;
}

.testimonial_box1 
{
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #E7E7E7;
    padding: 15px;
    margin: 15px 0;
    position: relative;
}
.testimonial_box1 p {
    font-size: 16px;
}
.clients_img_and_text_area {
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    margin-top: 25px;
}
.clients_img_and_text_area .img_area {
    float: left;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    flex: 56px 0 0;
}
.clients_img_and_text_area .img_area img {
    width: 60px;
}
.clients_img_and_text_area .text_area {
    float: left;
    width: 100%;
    padding-left: 25px;
}
.clients_img_and_text_area .text_area h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.clients_img_and_text_area .text_area p {
    color: #767676;
}
.clients_big_img_area
{
    display: block;
    float: left;
    width: 100%;
}
.clients_big_img_area img
{
    float: left;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.edit2 
{
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 36px;
    height: 36px;
    background: #545454;
    color: #fff;
    border-radius: 100%;
    line-height: 36px;
    text-align: center;
    margin-top: 12px;
}
.edit2 i
{
    color: #fff;
}
.edit2:hover {
    background: #D27722;
}

.del2 
{
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 36px;
    height: 36px;
    background: #E50303;
    color: #fff;
    border-radius: 100%;
    line-height: 36px;
    text-align: center;
    margin: 12px 0 0 5px;
}
.del2 i
{
    color: #fff;
}
.del2:hover {
    background: #D27722;
}
.add_testimonial
{
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 10px 0 20px 0;
    font-weight: 700;
    font-size: 20px;
}
.add_testimonial a
{
    text-decoration: underline;
}
.add_testimonial a:hover
{
    text-decoration: none;
}

.homepage_image_upload1
{
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    position: relative;
    margin-top: 15px;
}
.homepage_image_upload1 .img_area
{
    display: block;
    float: left;
    width: 230px;
    height: 230px;
    position: relative;
    z-index: 1;
}
.homepage_image_upload1 .img_area img
{
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid #a3a3a3a3;
}

.homepage_image_upload1 .img_area video
{
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid #a3a3a3a3;
}


.homepage_image_upload1 .upload_btn {
    position: absolute;
    overflow: hidden;
    display: inline-block;
    top: -5px;
    right: -10px;
    z-index: 2;
  }
  
  .homepage_image_upload1 .btn {
    color: #fff;
    background-color: #E39253;
    border-radius: 100%;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .homepage_image_upload1 .upload_btn input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
  }
  .qr_upload_section .homepage_image_upload1 .img_area
  {
      width: 150px;
      height: 150px;
  }
  
 .homepage_slider_section .homepage_image_upload1 .img_area
{
    width: 300px;
    height: 200px;
}
.homepage_experience_update_body
{
    display: block;
    float: left;
    width: 100%;
}
.upload_client_img
{
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid #A3A3A3;
}

.hrs_width
{
    width: 40px !important;

}

.btn-submit {
      background: #000;
      color: #fff;
      padding: 8px 30px;
      border-radius: 6px;
      width: 100%;
      max-width: 100px;
    }
    .btn-submit:hover {
      background: #333;
      color: #fff;
    }


    /* Force delete modal to appear above the Create Plan modal */
#what_included_in_the_plan_delete {
  z-index: 2000 !important;
}

#what_included_in_the_plan_delete .modal-backdrop {
  z-index: 1999 !important;
}

.modal-backdrop.show {
  opacity: 0.5 !important;
}


.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
}

.status-badge.paid {
  background: #28a745;
}

.status-badge.pending {
  background: #ffc107;
  color: #000;
}

.status-badge.canceled {
  background: #dc3545;
}


.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
}

.badge-credit {
  background: #e8f8ee;
  color: #1fa345 !important;
}

.badge-debit {
  background: #fde8e7;
  color: #e63946 !important;
}

