:root {
    --primary-color: #DBF227;
    --primary-hover-color: #00A59B;

    --secondary-color: #00A59B;
    --secondary-hover-color: #0A3A40;

    --black-color: #000000;
    --white-color: #ffffff;

    --heading-color-text: #000000;
    --black-color-text: #000000;
    --grey-color-text: #606166;
    --theme-color-text: #156064;

    --label-color: #000000;
    --field-color: #0A3A40;
    --border-color: #DCDCDD;
    --border-color-focus: #0A3A40;
    --nav-color: #9FABAC;

    --label-tags-color: rgba(21, 96, 100, 0.08);
    --orange-color: #F27405;
    --switch-box-color: #F27405;
}

body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #000;
    text-rendering: geometricPrecision;
}

::selection {
    background-color: var(--secondary-color);
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--black-color-text);
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    outline: none;
    color: var(--primary-hover-color);
    text-decoration: none;
}

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-text-fill-color: #000;
} */

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
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 var(--border-color);
    -webkit-text-fill-color: var(--field-color);
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    border: 1px solid var(--border-color-focus);
}

/* Inputs */
select {
    color: #9e9e9e;
}

option:not(:first-of-type) {
    color: black;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: var(--grey-color-text);
}

/* width */
::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--primary-hover-color);
    border-radius: 50px;
}

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
    border-radius: 50px;
} */

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

/*--------select2-css----*/
.select2Part .floating-label {
    opacity: 0;
}

.select2Part.focused .floating-label {
    opacity: 1;
}

.select2multiple .floating-label {
    opacity: 1;
}

.floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-bottom: 7px;
    margin: 0;
    padding-top: 17px;
    padding-left: 0px;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered::before {
    border: none;
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M14.9405 6.7124L10.0505 11.6024C9.47305 12.1799 8.52805 12.1799 7.95055 11.6024L3.06055 6.7124" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat 0 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 17px;
    top: 24px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
} */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--secondary-color);
    color: white;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--secondary-color);
    color: white;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    left: auto;
    top: 0;
    right: 0;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--label-tags-color);
    color: var(--field-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 5px 31px 6px 7px;
    border-radius: 50px;
    background-color: var(--label-tags-color);
    margin-right: 0;
    font-weight: 500;
    color: var(--field-color);
    border: 0;
    margin-top: 5px;
    position: relative;
    font-size: 14px;
    margin-right: 5px;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: var(--secondary-hover-color);
    color: var(--white-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #fff;
    color: var(--field-color);
    padding: 1px;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border-right: 0;
    justify-content: center;
    position: absolute;
    right: 3px;
    opacity: 1;
    font-weight: 500;
    font-size: 16px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-right: 5px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 9px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    display: flex;
    font-weight: 400;
    justify-content: center;
    font-size: 17px;
    align-items: center;
    margin-bottom: 2px;
    color: #000;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    min-width: 20px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    font-weight: 400;
    height: 20px;
    margin-right: 36px;
    margin-top: 5px;
    position: absolute;
    right: 0;
    padding: 0;
    font-size: 20px;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection__rendered {
    padding-top: 14px !important;
}

.floating-group .select2-container--below .select2-selection--multiple {
    padding-top: 15px !important;
}

.floating-group .select2-container--above .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection--multiple {
    padding: 2px 0 10px !important;
}

.floating-group .select2-selection--multiple .select2-selection__rendered {
    padding-top: 20px !important;
}

.select2-dropdown {
    border: 1px solid var(--border-color-focus);
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    /* border: 0; */
    /* border-bottom: 1px solid var(--border-color); */
}

.select2-container--default .select2-selection--multiple {
    border: 0;
    padding-left: 6px;
    padding-bottom: 1px;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding-top: 5px;
}

.select2-container--default .select2-results__option--selected {
    /* background-color: var(--secondary-color); */
    background-color: #fff;
}



.select2-container .select2-selection--multiple {
    min-height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding-right: 56px;
}

/* .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
} */
.select2-container .select2-selection--single {
    min-height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
}

.select2-container .select2-selection--single:focus {
    border: 1px solid var(--border-color-focus);
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    line-height: 1;
    margin-left: 0;
    padding-left: 10px;
    font-size: 15px;
    height: 35px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: none;
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M14.9405 6.7124L10.0505 11.6024C9.47305 12.1799 8.52805 12.1799 7.95055 11.6024L3.06055 6.7124" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat 0 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-selection__rendered li:first-child {
    margin-left: 0;

}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 19px;
    padding-right: 20px;
    font-weight: 500;
    font-size: 15px;
    color: var(--field-color);
    padding-top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 500;
    color: #6c757d;
}

.select2-results__option {
    font-size: 15px;
    font-weight: 500;
}

.select2-results__options[aria-multiselectable="true"] .select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 1px solid #63706E;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 8px;
    vertical-align: middle;
}

.select2-results__options[aria-multiselectable="true"] .select2-results__option[aria-selected="true"]::before {
    font-family: 'Font-Awesome-5-Pro';
    content: "\f00c";
    color: #fff;
    font-weight: 400;
    background-color: var(--orange-color);
    border: 0;
    display: inline-block;
    padding-left: 3px;
    line-height: 20px;
    font-size: 13px;
}

.select2-container--open .select2-selection--multiple {
    border: 1px solid var(--border-color-focus)
}

/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding: 0;
    padding-left: 13px;
}

.user_dropdown img {
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    padding: 0;
    display: block;
    left: auto;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
}

.user_dropdown .nav-link::after {
    display: none;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

.user_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: var(--heading-color-text);
    text-transform: capitalize;
    font-size: 14px;
    padding: 7px 10px;
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
    margin-right: 5px;
}

.user_dropdown ul li a:hover {
    color: var(--primary-hover-color);
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */

.dash_header {
    /* background: #F3F7FB; */
    height: 90px;
    /* border-bottom: 1px solid #edf2f9; */
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1030;
    display: flex;
}

.side_nav {
    width: 292px;
    /* background-color: var(--white-color); */
    /* box-shadow: 0 4px 24px rgb(0 0 0 / 6%); */
    z-index: 1000;
    top: 52px;
    bottom: 0px;
    position: fixed;
    overflow: hidden;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
}

.page_container {
    background: #0A3A40;
    min-height: 100vh;
    padding-left: 292px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
}


.main_content {
    padding: calc(96px + 27px) 24px 30px 0;
    /* min-height: calc(100vh - 81px); */

}

.footer_copyrightBox {
    border-top: 1px solid #DBE0F4;
    padding: 30px 50px;
    color: #8B909D;
    font-size: 13px;
    font-weight: 400;
}

.dash_contentBox {
    /* max-width: 1280px; */
    margin: 0 auto;
    background: #fff;
    height: calc(100vh - 145px);
    border-radius: 0 0 32px 32px;
}

.page-content-area {
    border-top: 1px solid #D9DBDD;
}

.page-content-area::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
}

.page-content-area::-webkit-scrollbar-thumb {
    background-color: var(--primary-hover-color);
    border-radius: 50px;
}

.white_mainBox {
    background-color: var(--white-color);
    border-radius: 0 0 32px 32px;
    padding: 0 32px 30px 32px;
}

.footer_copyLinks {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 32px;
}

.footer-links::before {
    position: absolute;
    content: '';
    background: #8B909D;
    right: -16px;
    top: 0;
    width: 1px;
    height: 100%;
}

.footer-links:last-child::before {
    display: none;
}

.footer-links {
    color: #8B909D;
    font-size: 13px;
    position: relative;
}

.dash_logo .logo_fold {
    display: none;
}
.dash_logo img {
    max-height: 67px;
    width: 210px;
}

.dash_header .dash_logo {
    width: 292px;
    display: flex;
    /* background: var(--white-color); */
    align-items: center;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    padding: 0;
    text-align: center;
    justify-content: center;
    padding-top: 70px;
}



.side_nav .side_nav_inner {
    position: relative;
    height: 100%;
}

.side_nav .side_nav_inner .sideNav_menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding-left: 0;
    overflow: auto;
    /* border-right: 1px solid #edf2f9; */
    height: calc(100vh - 184px);
    padding-top: 0;
    margin-top: 75px;
    padding-right: 10px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar-track {
    background: transparent
}

.dash_nav_item a {
    display: flex;
    align-items: center;
    padding: 17px 15px 17px 42px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    white-space: nowrap;
    color: var(--nav-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    gap: 12px;
}

.dash_nav_item a .icon_holder {
    display: inline-block;
    flex: 0 0 24px;
    line-height: .8;
}

.dash_nav_item a .title_dash_nav {
    display: block;
    flex: 1;
    position: relative;
}

.dash_nav_item {
    padding: 0;
}

.dash_nav_item a.active,
.dash_nav_item a:hover {
    color: var(--white-color);
    border-radius: 0px 100px 100px 0px;
    background: var(--secondary-color);
    transition: all 0.2s ease;
}

.active_icon{
    display: none;
}
.dash_nav_item a.active .defult_icon ,
.dash_nav_item a:hover .defult_icon{
    display: none;
}
.dash_nav_item a.active .active_icon,
.dash_nav_item a:hover .active_icon{
    display: inline-flex;
}






.dash_nav_item a svg path {
    transition: all 0.1s ease;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
}

.dash_nav_item a.active svg path,
.dash_nav_item a:hover svg path {
    stroke: var(--white-color);
}

.nav_dash_wrap_main {
    flex: 1;
    padding: 25px 24px 25px 0;
}

.nav_dash_wrap {
    /* flex: 1; */
    display: flex;
    justify-content: space-between;
    min-height: 98px;
    align-items: center;
    padding: 25px 30px;
    background-color: var(--white-color);
    /* box-shadow: 15px 4px 24px rgb(0 0 0 / 6%); */
    border-radius: 32px 32px 0 0;
}



/* nav checkbox */

.dash_userProfile {
    display: flex;
    align-items: center;
}

.dash_userProfile img {
    box-shadow: 0px 5px 10px 6px rgba(41, 72, 152, 0.14);
    border-radius: 10px;
    width: 100%;
    flex: 0 0 48px;
    max-width: 48px;
}

.prfDash_userContent {
    flex: 0 0 calc(100% - 48px);
    max-width: calc(100% - 48px);
    padding-left: 15px;
}

.topPRfNameUser {
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #0D1118;
    margin-bottom: 5px;
}

.makeAvaiDash {
    display: flex;
    align-items: center;
}

.makeAvaiDash span {
    font-weight: 300;
    font-size: 13px;
    line-height: 17px;
    color: rgba(13, 17, 24, .6);
    margin-right: 6px;
}


.statusDash_tag {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #0D1118;
    margin-left: 6px;
}

.statusDash_tag.available {
    color: #0CAB50;
}

.statusDash_tag.notAvailable {
    color: #EE0909
}



/* ************ switch style  */

.switch-style-1 {
    line-height: 0;
}

.switch-style-1 input[type="checkbox"],
.switch-style-1 input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 14px;
    border-radius: 30px;
    background: rgb(211, 211, 211);
    background: linear-gradient(90deg, rgba(62, 205, 123, 1) 50%, rgba(211, 211, 211, 1) 50%);
    margin: 0 6px;
    position: relative;
    cursor: pointer;
    transition: all .3s ease;
    background-size: 100px;
    background-position: -70px 0px;
    outline: 0;
    box-shadow: none;
}

.switch-style-1 input[type="checkbox"]::before,
.switch-style-1 input[type="radio"]::before {
    background: var(--white-color);
    box-shadow: 3px 1px 4px rgba(0, 0, 0, 0.1);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    content: '';
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
}

.switch-style-1 input[type="checkbox"]:checked::before,
.switch-style-1 input[type="radio"]:checked::before {
    left: 11px;
}

.switch-style-1 input[type="checkbox"]:checked,
.switch-style-1 input[type="radio"]:checked {
    background-position: -20px 0px;
}




.nav_right_notification .dropdown-menu {
    border: 0px;
    border-radius: 10px;
    font-size: 14px;
    min-width: 180px;
    color: #53535f;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    text-align: left;
    list-style: none;
    background-color: var(--white-color);
    background-clip: padding-box;
    width: 350px;
    padding: 0;
    padding-bottom: 15px;
}





.notiHeader_top {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.notiHeader_top .viewBtn {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: .35rem 1rem;
    height: auto;
    line-height: 1.25;
    font-size: .875rem;
    border-radius: 5px;
}

.notiHeader_top i {
    padding-right: 5px;
}



.notificationListDrop {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow: auto;

}


.notificationListDrop::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.notificationListDrop::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px;
}

.notificationListDrop::-webkit-scrollbar-track {
    background: transparent
}

.notificationListDrop .dropdown-item {
    padding: 15px;
}

.notificationListDrop li:not(:last-child) .dropdown-item {
    border-bottom: 1px solid var(--border-color);
}

.notificationListDrop .dropdown-item:hover {
    background: #fafafa;
}

.notiListCard {
    display: flex;
    align-items: center;
}

.notiListCard .notiListImg {
    flex: 0 0 30px;
    max-width: 30px;
    width: 100%;

}


.notiListCard .notiListImg img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}


.notiListCard .notiListContent p {
    color: var(--label-color);
    font-size: 14px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notiListCard .notiListContent p span {
    color: var(--secondary-color);
}

.notiListCard .notiListContent small {
    display: block;
    color: var(--grey-color-text);
}

.notiListCard .notiListContent {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
    width: 100%;
    padding-left: 15px;
}



.notiHeaderTopHeading {
    color: var(--black-color-text);
    font-weight: 500;
    font-size: 15px;
}

.notiHeaderTopHeading i {
    font-weight: 500;
}

.nav_dash_wrpRight {
    display: flex;
    align-items: center;
}


.rightMenuBtn {
    display: inline-block;
    background: var(--white-color);
    color: #53535f;
    padding: 10px;
    display: flex;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
}

.rightMenuBtn.newNotiMsg::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F9BE7A;
    border: 2px solid #1A73E8;
    position: absolute;
    right: 11px;
    top: 11px;
}

.mr-15 {
    margin-right: 15px;
}


.rightMenuBtn.langDropBtn {
    min-width: 48px;
    width: auto;
    padding: 10px 15px
}

.rightMenuBtn.langDropBtn img {
    height: 14px;
    width: auto;
    margin-right: 10px;
}

.nav_right_notification.landDropDown .dropdown-menu {
    padding: 0;
    width: unset;
    min-width: unset;
    border-radius: 10px;
}



.walletSearchRow .searchRow_col {
    flex: 0 0 70%;
    max-width: 70%;
    width: 100%;
}

.walletSearchRow .walletRow_col {
    flex: 0 0 30%;
    max-width: 30%;
    width: 100%
}

.searchFilteHome {
    background: #1A73E8;
    border: 1px solid #F3F2F2;
    border-radius: 10px;
    padding: 20px 25px;
}

.searchFilteHome .form-control {
    background: #F7F7F9;
    border-radius: 10px;
    padding: 15px 22px;
    background-image: url(../img/search\ icon.svg);
    background-position: 98%;
    background-repeat: no-repeat;
    color: #0D1118;
    font-size: 18px;
    font-weight: 500;
}

.searchFilteHome .form-control::placeholder {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #0D1118;
    opacity: .5;
}


ul.subMenuSide {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--primary-color);
}

ul.subMenuSide li a {
    font-weight: 400;
    font-size: 15px;
    color: var(--white-color);
    padding: 15px 25px 15px 65px;
}

.dash_nav_item .subMenuSide svg path {
    color: var(--white-color);
}

ul.subMenuSide li a span {
    width: 25px;
    display: inline-block;
}

.subMenuLink {
    position: relative;
}

.arrowIconSubmenu {
    position: absolute;
    right: 35px;
    line-height: 30px;
    transition: all 0.05s ease-in;
    -webkit-transition: all 0.05s ease-in;
    top: 18px;
}

.subMenuLink .arrowIconSubmenu::before,
.subMenuLink.collapsed .arrowIconSubmenu::before,
.subMenuLink .arrowIconSubmenu::after {
    content: '';
    position: absolute;
    background: 0 0;
    background-image: linear-gradient(to right, rgba(42, 42, 42, 0.75), rgba(42, 42, 42, 0.75));
    border-radius: 2px;
    width: 6px;
    height: 1.5px;
    top: 6px;
    transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: rotate(-135deg) translateX(2px);
    -webkit-transform: rotate(-135deg) translateX(2px);
}

.subMenuLink .arrowIconSubmenu::after,
.subMenuLink.collapsed .arrowIconSubmenu::after {
    transform: rotate(-45deg) translateX(2px);
    -webkit-transform: rotate(-45deg) translateX(2px);
}


.subMenuLink:hover .arrowIconSubmenu::before,
.subMenuLink.collapsed:hover .arrowIconSubmenu::before,
.subMenuLink:hover .arrowIconSubmenu::after {
    background-image: linear-gradient(to right, rgb(255 255 255 / 100%), rgb(255 255 255 / 100%));
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::before,
.subMenuLink:not(.collapsed):hover .arrowIconSubmenu::before,
.subMenuLink:not(.collapsed) .arrowIconSubmenu::after {
    background-image: linear-gradient(to right, rgb(255 255 255 / 100%), rgb(255 255 255 / 100%));
}


.subMenuLink:not(.collapsed) .arrowIconSubmenu::before {
    transform: rotate(-225deg) translateX(2px);
    -webkit-transform: rotate(-225deg) translateX(2px);
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::after {
    transform: rotate(45deg) translateX(2px);
    -webkit-transform: rotate(45deg) translateX(2px);
}

.subMenuLink:not(.collapsed) {
    color: #fff;
    background: var(--primary-color);
    border-radius: 6px 6px 0 0 !important;
}

.subMenuLink:not(.collapsed) svg path {
    fill: var(--white-color);
}

.dashIconFold svg {
    color: #0D1118;
    transition: all .2s ease;
}



.dashIconFold {
    padding: 0;
    position: fixed;
    left: 274px;
    top: 75px;
    z-index: 1617;
    margin: 0;
    border-radius: 50% 0px 3px 50%;
    background-image: url(../img/foldBg.png);
    height: 66px;
    width: 23px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease 0s;
    background-size: contain;
}

.fold_iconBox {
    background-color: var(--secondary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
    color: var(--white-color);
}

.is-folded .side_nav:hover+.page_container .foldingBtn {
    left: 252px;
    transition: all 0.2s ease 0s;
}

.is-folded .side_nav {
    background-color: #0A3A40;
}

.is-folded .foldingBtn {
    left: 104px;
    top: 52px;
}

.is-folded .side_nav .side_nav_inner .sideNav_menu {
    padding-right: 10px;
}

.is-folded .fold_iconBox svg {
    transform: rotate(180deg);
}

.nav_dash_wrpLeft {
    display: flex;
    align-items: center;
}

.folded {
    display: none;
}


.is-folded .folded {
    display: block;
}

.is-folded .notFolded {
    display: none;
}


.dashBoard_overLay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}



/* login css  */

.section-box {
    min-height: 100vh;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 0px;
}

.login-box {
    max-width: 830px;
    margin: auto;
    padding: 40px;
    min-width: 500px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    border: 1px solid rgb(222, 223, 229);
    background: rgb(255, 255, 255);
    -webkit-box-shadow: 4px 0 24px 0 #dddddd;
    -moz-box-shadow: 4px 0 24px 0 #dddddd;
    box-shadow: 4px 0 24px 0 rgb(0 0 0 / 6%);
}

.logo-box {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.form_input_box .form-group {
    margin-bottom: 20px;
}

.login-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--title-color);
}

.login-header {
    margin-bottom: 50px;
}



.account-register-box {
    display: flex;
    justify-content: end;
    margin-bottom: 32px;
}

.forgot-password {
    color: #4B49AC;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

.forgot-password:hover {
    color: var(--black-color);
}


.password_icon {
    position: absolute;
    right: 20px;
    top: 14px;
    display: flex;
    cursor: pointer;
}

.password_showIcon {
    display: none;
}

.toggle-password.password_show .password_hideIcon {
    display: none;
}

.toggle-password.password_show .password_showIcon {
    display: flex;

}

.login_block {
    position: relative;
}

.login_block::after {
    position: absolute;
    content: "";
    background: url(../img/login-bg.png);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.no-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 22px;
}

.login-page .close-btn {
    border: 2px solid #343368;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    right: 18px;
    top: 19px;
    color: #343368;
}

.login-page .close-btn:hover {
    border: 2px solid var(--primary-color);
}

.login-page .close-btn:hover svg {
    color: var(--primary-color);
}


.orBox {
    position: relative;
    height: 100%;
    border-left: 1px solid #ddd;
    float: left;
    left: 30px;
}

.or-text {
    position: absolute;
    background: var(--white-color);
    left: -10px;
    transform: translateY(-50%);
    top: 50%;
    font-size: 15px;
    color: #4D5959;
}

.no-account div {
    font-size: 19px;
    font-weight: 500;
}



.wizard .nav-tabs .nav-link.active,
.wizard .nav-tabs .nav-link.checked {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.wizard .nav-tabs .nav-link {
    color: #6F6C90;
    background-color: #EFF0F6;
    border-color: #EFF0F6;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: unset;
    border: 0;
    padding: 0;
}

.wizard .nav-tabs .nav-item {
    position: relative;
    flex: 1 1 40%;
}

.wizard .nav-tabs .nav-item:last-child {
    flex: 1 1 10%;
}

.wizard .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #EFF0F6;
    left: 0;
    top: 50%;
    z-index: -1;
}

.wizard .nav-tabs .nav-link.checked::after {
    background-color: var(--primary-color);
}


.wizard .nav-tabs {
    max-width: 250px;
    margin: auto;
    display: flex;
    border-bottom: 0;
}


/* opt css */

.otp_verification {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 18px;
    justify-content: center;
}

.receive-code {
    color: var(--title-color);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 35px;
    text-align: center;
}

.resend-links {
    display: inline-block;
    color: #4B49AC;
    font-weight: 600;
}

.resend-links:hover {
    color: var(--primary-color);
}

.otp_verification .form-control.dark-form-control {
    display: inline-block;
    width: 78px;
    height: 78px;
    min-width: 78px;
    text-align: center;
    padding: 0;
    font-size: 18px;
    border-radius: 6px;
}

.otp_verification.form-control:focus {
    color: var(--black-color);
    border-color: var(--border-color);
    box-shadow: none;
}


/* opt css end */

.wizard .nav-tabs .nav-item:last-child .nav-link {
    margin-left: auto;
}

.wizard .nav-tabs .nav-item:last-child .nav-link.active::after {
    background-color: transparent;
}

.otpBox .login-page {
    max-width: 440px;
    min-width: 440px;
}

.verificationText {
    margin-bottom: 0;
    color: var(--heading-color-text);
    font-size: 15px;
}

.wizard {
    margin-top: 22px;
}

.login-header {
    margin-bottom: 38px !important;
}

.login-title.VerifiTitle {
    margin-bottom: 13px;
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
    border: 0;
    font-weight: 600;
    font-size: 18px;
    padding: 11px 21px;
    border-radius: 60px;
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--secondary-hover-color);
}




/* login css  end */




/*  */
.breadcrumb_linkBox .breadcrumb-item a {
    color: var(--link-color);
}

.breadcrumb_linkBox .breadcrumb-item+.breadcrumb-item::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='5' height='8' viewBox='0 0 5 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.176092 0.176092C0.0633406 0.288878 0 0.441828 0 0.601308C0 0.760787 0.0633406 0.913737 0.176092 1.02652L3.1532 4.00363L0.176092 6.98074C0.066536 7.09417 0.00591435 7.2461 0.00728468 7.40379C0.008655 7.56149 0.0719075 7.71233 0.183419 7.82384C0.29493 7.93536 0.445777 7.99861 0.603472 7.99998C0.761167 8.00135 0.913091 7.94073 1.02652 7.83117L4.42885 4.42885C4.5416 4.31606 4.60494 4.16311 4.60494 4.00363C4.60494 3.84415 4.5416 3.6912 4.42885 3.57842L1.02652 0.176092C0.913737 0.0633405 0.760787 0 0.601308 0C0.441828 0 0.288878 0.0633405 0.176092 0.176092Z' fill='%2399A1B7'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    width: 25px;
    height: 15px;
    padding: 0;
    background-size: 7px;
    margin-top: 2px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 2px;
}

.breadcrumb-item {
    font-size: 13px;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #99A1B7;
}


.user_dropdown .dropdown-toggle::after {
    border: none;
    height: 8px;
    width: 11px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.690378 0.603699C0.497088 0.802511 0.497088 1.12485 0.690378 1.32366L4.64997 5.39639C4.74279 5.49186 4.86869 5.5455 4.99996 5.5455C5.13122 5.5455 5.25712 5.49186 5.34994 5.39639L9.30953 1.32366C9.50282 1.12485 9.50282 0.802511 9.30953 0.603699C9.11624 0.404886 8.80286 0.404886 8.60957 0.603699L4.99996 4.31644L1.39034 0.603699C1.19705 0.404887 0.883667 0.404887 0.690378 0.603699Z' fill='%232E2E2E'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    vertical-align: middle;
    margin-top: 3px;
}

.login-header .notAC {
    font-size: 18px;
    color: var(--heading-color-text);
}

.login-header .notAC a {
    color: #4B49AC;
}

.login-header .notAC a:hover {
    color: var(--black-color);
}

.form-footer {
    margin-top: 25px;
}


/*  */

.thank-you-box img {
    margin: auto;
    display: flex;
    margin-bottom: 30px;
}

.thank-you-box p {
    color: var(--heading-color-text);
    font-size: 17px;
    text-align: center;
    max-width: 659px;
    margin: auto;
}

.thank-you-box p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thank-you-box p a:hover {
    color: var(--black-color);
    text-decoration: none;
}


.block-heading {
    font-size: 18px;
    margin-bottom: 28px;
    color: var(--heading-color-text);
    font-weight: 600;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control:focus {
    color: var(--field-color);
    background-color: #FFF;
    outline: 0;
    box-shadow: none;
    border-color: var(--border-color-focus);
}

.form-label {
    font-size: 14px;
    color: var(--label-color);
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
}

.form-control {
    padding: 8px 19px;
    min-height: 50px;
    color: var(--field-color);
    border: 1px solid var(--border-color);
    border-radius: 90px;
    font-weight: 500;
    font-size: 15px;
}

.login-page .form-control {
    padding: 12px 19px;
}



.section-block {
    margin-bottom: 20px;
}

.dash_headBox {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 27px;
}

.page-heading {
    color: var(--heading-color-text);
    font-weight: 600;
    font-size: 22px;
}

.input_iconBox {
    position: relative;
}

.custom-nav .nav {
    gap: 20px;
    margin-bottom: -2px;
}

.custom-nav .nav .nav-link {
    border: 0;
    border-bottom: 4px solid transparent;
    color: var(--heading-color-text);
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    padding: 0 14px 20px;
}

.custom-nav .nav .nav-link.active {
    border-bottom: 4px solid var(--primary-color);
    color: var(--primary-color);
}

.custom-nav nav {
    border-bottom: 1px solid #EBEDF3;
}

.custom-nav .tab-content {
    padding: 30px 0;
}

.user-info-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-info {
    display: flex;
}

.info-lable {
    font-size: 16px;
    color: #99A1B7;
    font-weight: 500;
    flex: 0 1 230px;
}

.info-data {
    font-size: 16px;
    color: var(--black-color-text);
    font-weight: 500;
    flex: 1 1 calc(100% - 230px);
}

.user-info-item .user-info:not(:last-child) {
    margin-bottom: 30px;
}

.status-box {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.status-box.red {
    color: #E40000;
    font-size: 16px;
}

.status-box::after {
    background-color: #E40000;
}

.status-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: translateY(-50%);
}





/*  */
/* Listing */
.right_buttonBox {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Table */
.table>thead tr th {
    padding: 15px 15px;
    color: #99A1B7 !important;
    font-size: 14px;
    font-weight: 400;
    padding-right: 0;
    border-bottom: 2px solid #D6E1F0 !important;
}

.table>tbody tr td {
    color: var(--black-color-text) !important;
    font-size: 14px;
    font-weight: 400;
    padding: 18px 15px;
    vertical-align: middle;
}

.table-responsive {
    min-height: 300px;
}

.dropdown-menu.show {
    padding: 2px 12px;
    border: none;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
}

tbody tr {
    border-color: #f3f3f3;
    border-style: solid;
    border-top: 1px !important;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-width: 0;
    border-top-width: 0;
}

.table> :not(caption)>*>* {
    border-top-width: 1px;
    border-color: #D6E1F0;
}

.table-secondary {
    --bs-table-bg: #f5f6f9;
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: rgb(245, 247, 255);
}

.table_actionBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 7px;
}

.table_editeBTn {
    background-color: var(--link-color);
    color: var(--white-color);
}

.table_editeBTn:hover {
    background-color: #1780e9;
    color: var(--white-color);
}

.table_deleteBTn {
    background-color: #E40000;
    color: var(--white-color);
}

.table_deleteBTn:hover {
    background-color: #ff233a;
    color: var(--white-color);
}

.table_viewBTn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.table_viewBTn:hover {
    background-color: #7500af;
    color: var(--white-color);
}

.table_menuBTn {
    background-color: #00207D;
    color: var(--white-color);
}

.table_menuBTn:hover {
    background-color: #001861;
    color: var(--white-color);
}

.table_action_lisl {
    display: flex;
    gap: 10px;
}

.table_menuBTn.dropdown-toggle::after {
    display: none;
}

.table_statusBtn::before {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 0;
    top: 1px;
    bottom: 0;
    margin: auto 0;
}

.inactive_btn::before {
    background-color: #E40000;
}

.inactive_btn {
    color: #E40000;
}

.active_btn::before {
    background-color: #11BD60;
}

.active_btn {
    color: #11BD60;
}

.table_statusBtn {
    position: relative;
    padding-left: 16px;
    white-space: nowrap;
}

.table_thead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address_tableBox {
    max-width: 200px;
}

.table_nameWD {
    min-width: 150px;
}

/* listing code end  */

.btn-md {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
}

.tableEntries_text {
    font-size: 15px;
    color: var(--label-color);
    font-weight: 500;
}

.entries_paginaBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination {
    gap: 6px;
}

.page-link {
    color: var(--label-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link.active {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.page-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.page-link:hover svg {
    color: var(--white-color);
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    box-shadow: unset;
}

.btn-clear {
    background: #E3E8F9;
    color: #6F7CB2;
    padding: 5px 17px;
    font-size: 15px;
}

.filter-search {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 20px 35px 0;
}

.no-border-input .form-control {
    border: 0;
}

.no-border-input .select2-container .select2-selection--single {
    border: 0;
}


/* FAQ-Page  CSS */

/* ======================= Accordion Start ============================= */

.faq-page-wrapper .accordion-button::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 19px;
    height: 28px;
    width: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='3' viewBox='0 0 16 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.2916 0.79043C0.762941 0.79043 0.334375 1.219 0.334375 1.74766C0.334375 2.27632 0.762942 2.70489 1.2916 2.70489H14.2073C14.7359 2.70489 15.1645 2.27632 15.1645 1.74766C15.1645 1.219 14.7359 0.79043 14.2073 0.79043H1.2916Z' fill='%236F6C8F' stroke='%236F6C8F' stroke-width='0.3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: 14px;
    background-color: #EEF5FD;
    border-radius: 6px;
    /* transform: translateY(-50%); */
}

.faq-page-wrapper .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.74473 0.334375C7.21607 0.334375 6.7875 0.762942 6.7875 1.2916V14.2073C6.7875 14.7359 7.21607 15.1645 7.74473 15.1645C8.27339 15.1645 8.70196 14.7359 8.70196 14.2073V1.2916C8.70196 0.762941 8.27339 0.334375 7.74473 0.334375Z' fill='%23fff' stroke='%23fff' stroke-width='0.3' stroke-linecap='round'/%3E%3Cpath d='M1.2916 6.79531C0.762941 6.79531 0.334375 7.22388 0.334375 7.75254C0.334375 8.2812 0.762942 8.70977 1.2916 8.70977H14.2073C14.7359 8.70977 15.1645 8.2812 15.1645 7.75254C15.1645 7.22388 14.7359 6.79531 14.2073 6.79531H1.2916Z' fill='%23fff' stroke='%23fff' stroke-width='0.3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-color: var(--primary-color);
    /* transform: translateY(-50%) rotate(180deg); */
}

.faq-page-wrapper .accordion-item {
    background-color: var(--white-color);
    border: 0;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 1px 32px -8px rgb(6 53 163 / 7%);
}

.faq-page-wrapper .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-page-wrapper .accordion-header {
    margin-bottom: 0;
}

.faq-page-wrapper .accordion-button:not(.collapsed) {
    background-color: var(--white-color);
    box-shadow: none;
    border: 0;
}

.faq-page-wrapper .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.faq-page-wrapper .accordion-button {
    color: var(--title-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
    cursor: pointer;
    padding: 21px 50px 21px 27px;
    position: relative;
}

.faq-page-wrapper .accordion-item .accordion-button {
    border-radius: 15px !important;
}

.faq-page-wrapper .accordion-body {
    padding: 0px 45px 21px 26px;
}

.faq_Questions_title p {
    font-size: 16px;
    color: rgb(0 0 0 / 60%);
    font-weight: 400;
    margin-bottom: 0;
}

/* ======================= Accordion End ============================= */
/* FAQ-Page CSS END */
.dropdown-menu.show li:not(:last-child) .dropdown-item {
    border-bottom: 1px solid #D9DBDD;
}
.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    padding: 12px 0;
    border-left: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent;
    color: var(--orange-color);
}

.heading-content {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Raleway';
}

@media only screen and (min-width: 992px) {
    .dash_headBox {
        margin-bottom: 12px;
    }

    body {
        overflow: hidden;
    }

    .page-content-area {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
    }

    .page-content-area-inner {
        margin: 0 -12px;
    }

    .white_mainBox {
        height: 100%;
    }



}

@media only screen and (max-width: 991.98px) {
    .page_container {
        background: #fff;
    }

    .nav_dash_wrap {
        min-height: 70px;
    }

    .nav_dash_wrap_main {
        padding: 0;
    }

    .dash_header {
        height: 72px;
    }

    .main_content {
        padding: 72px 0 0 0;
    }

    .page-content-area {
        border-top: 0;
    }

    .nav_dash_wrap {
        background-color: transparent;
        padding: 18px 10px;
    }

    .side_nav .side_nav_inner .sideNav_menu {
        height: calc(100vh - 70px);
    }

    .side_nav {
        top: 72px;
    }

    .dash_header {
        background-color: #ffff;
        border-bottom: 1px solid #D9DBDD;

    }

}



.newNotiMsg {
    color: #53535f;
    line-height: 1;
    font-weight: 500;
    border-radius: 50px;
    background: #FFF;
    border: 1px solid rgba(242, 116, 5, 0.18);
    background: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
}

.newNotiMsg.newNotiMsg::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #F27405;
    border: 1.18px solid #fff;
    position: absolute;
    right: 13px;
    top: 12px;
}

/* Login */

.login-signup-pages {
    overflow: auto;
}

.flex-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.flex-box-left {
    flex: 0 0 auto;
    width: 50%;
    min-height: 100%;
    background: url(../img/login-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    border-radius: 0 35px 35px 0;
}

.flex-box-right {
    flex: 0 0 auto;
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 90px;
    padding-bottom: 130px;
    left: 50%;
    position: relative;
}

.flex-box-right.pb-10 {
    padding-bottom: 50px;
}

.banner-section {
    text-align: center;
    margin: 0 auto;
    padding: 120px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.banner-img {
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    max-height: 610px;
}

.banner-img img {
    border-radius: 25px 0 25px 0;
    height: 100%;
    object-fit: cover;
}

.banner-img figure {
    position: relative;
    height: 100%;
    z-index: 1;
}

.banner-img figure::after {
    position: absolute;
    left: -100px;
    bottom: -100px;
    content: '';
    width: 200px;
    height: 200px;
    background-color: #00A59B;
    border-radius: 50%;
    z-index: -1;
}

.banner-img figure::before {
    position: absolute;
    right: -100px;
    top: -100px;
    content: '';
    width: 200px;
    height: 200px;
    background-color: #0A3A40;
    border-radius: 50%;
    z-index: -1;
}

.form-group.position-relative i {
    position: absolute;
    left: 18px;
    top: 17px;
    font-size: 17px;
    color: #3b4069;
}

.form-group.position-relative .show-pwd i {
    right: 13px;
    left: auto !important;
    color: #918f8f;
}

.form-group.position-relative .show-pwd i:hover {
    color: #36D0C4;
}

.remember-me span {
    font-size: 14px !important;
    color: var(--grey-color-text) !important;
    font-weight: 400;
}

.forgot-pwd {
    font-size: 14px;
    text-decoration: underline;
}

/* Custom Checkbox */
.customized-checkbox {
    position: relative;
}

.customized-checkbox span {
    font-size: 15px;
}

.checkbox {
    padding: 0 0 0 28px;
    --background: #fff;
    --border: #D1D6EE;
    --border-hover: #BBC1E1;
    --border-active: #36D0C4;
    --tick: #fff;
    position: relative;
}

.checkbox input,
.checkbox svg {
    width: 19px;
    height: 19px;
    display: block;
}

.checkbox input {
    position: absolute;
    top: 1px;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    background: var(--background);
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.3s;
    box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
}

.checkbox input:hover {
    --s: 2px;
    --b: var(--border-hover);
}

.checkbox input:checked {
    --b: var(--border-active);
}

.checkbox svg {
    pointer-events: none;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--stroke, var(--border-active));
    position: absolute;
    top: 1px;
    left: 0;
    width: 19px;
    height: 19px;
    transform: scale(var(--scale, 1)) translateZ(0);
}

.checkbox.path input:checked {
    --s: 2px;
    transition-delay: 0.4s;
}

.checkbox.path input:checked+svg {
    --a: 16.1 86.12;
    --o: 102.22;
}

.checkbox.path svg {
    stroke-dasharray: var(--a, 86.12);
    stroke-dashoffset: var(--o, 86.12);
    transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}

.checkbox.bounce {
    --stroke: var(--tick);
}

.checkbox.bounce input:checked {
    --s: 11px;
}

.checkbox.bounce input:checked+svg {
    -webkit-animation: bounce 0.4s linear forwards 0.2s;
    animation: bounce 0.4s linear forwards 0.2s;
}

.checkbox.bounce svg {
    --scale: 0;
}

@-webkit-keyframes bounce {
    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.login-block {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.remember-me {
    margin: -6px 0 0;
}

.remember-me a {
    color: var(--primary-hover-color);
    text-decoration: underline;
    font-weight: 500;
}

.btn-grey {
    color: #ffffff;
    background-color: grey;
    border: 0;
    font-weight: 600;
    font-size: 18px;
    padding: 11px 21px;
    border-radius: 60px;
    transition: ease-in-out .3s;
}

.btn-grey:hover {
    color: #fff;
    background-color: var(--primary-hover-color);
}

.btn-primary {
    color: var(--black-color);
    background-color: var(--primary-color);
    border: 0;
    font-weight: 600;
    font-size: 18px;
    padding: 11px 21px;
    border-radius: 60px;
    transition: ease-in-out .3s;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--primary-hover-color);
}

.btn-primary-outline {
    color: var(--black-color);
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    padding: 11px 21px;
    border-radius: 60px;
    transition: ease-in-out .3s;
}

.btn-primary-outline:hover {
    color: #fff;
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}
.btn-primary-cancelled {
    color: var(--black-color);
    background-color: #FFA500;
    font-weight: 600;
    font-size: 18px;
    padding: 11px 21px;
    border-radius: 60px;
    transition: ease-in-out .3s;
}

.btn-primary-cancelled:hover {
    color: #fff;
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.login-msg {
    text-align: center;
    margin: 30px auto 0;
    color: var(--grey-color-text);
    font-size: 14px;
}

.otp-mail {
    font-weight: 500;
    word-break: break-word;
}

.login-msg a {
    color: #0A3A40;
    font-weight: 700;
    text-decoration: underline;
}

.login-msg a:hover {
    color: var(--primary-hover-color);
}

.otp_verification {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.otp_verification .form-control.dark-form-control {
    width: 86px;
    height: 86px;
    color: var(--field-color);
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.otp_verification .form-control.dark-form-control:focus {
    border: 1px solid var(--border-color-focus);
    box-shadow: none;
}

.login-p {
    color: #606166;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 0 auto 37px;
}

.theme-logo img {
    max-width: 220px;
}

.theme-logo {
    text-align: center;
    margin: 0 auto 70px;
}

.login-h1 {
    margin: 0 auto 14px;
    color: #000;
    text-align: center;
    font-family: 'Raleway';
    font-size: 36px;
    font-weight: 700;
}

label {
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 7px;
}

.password_icon {
    position: absolute;
    right: 15px;
    top: 43px;
    display: flex;
    cursor: pointer;
}

.pwd-control {
    padding-right: 50px;
}

.icon-images {
    width: 116px;
    height: 116px;
    position: fixed;
    left: 0;
    right: 0;
    top: 178px;
    margin: 0 auto;
}

.lang-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 50px;
    text-align: center;
}

.btn-check:checked+.btn-secondary:focus,
.btn-check:active+.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: unset
}

.lang-dropdown .dropdown-toggle {
    border: 1px solid var(--border-color);
    background-color: #fff;
    border-radius: 80px;
    font-size: 18px;
    font-weight: 500;
    padding: 3px 10px 3px 4px;
}

.lang-dropdown .dropdown-toggle span {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 4px;
    background: rgba(21, 96, 100, 0.10);
    display: inline-block;
}

.lang-dropdown .dropdown-menu {
    min-width: 140px;
}

.lang-dropdown .dropdown-item {
    padding: 7px 1rem;
}

.lang-dropdown .dropdown-item .lang-flag {
    margin-right: 5px;
    width: 26px;
    display: inline-block;
}



.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    background-color: var(--primary-color);
    color: var(--black-color);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    background-color: var(--primary-color);
    color: var(--black-color);
    box-shadow: unset;
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
}

.login-block .btn-primary {
    margin-top: 25px;
}

/* new css */
.modal-backdrop.show {
    opacity: 0.88;
}

.shadow-modal {
    border-radius: 16px;
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 4px 42px 0px rgba(192, 192, 192, 0.23);
}

.close-modal {
    border: 0;
    background: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
}

.modal-graphic-img {
    text-align: center;
    padding: 20px 0 70px;
}

.modal-emoji {
    background: var(--secondary-hover-color);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    text-align: center;
    line-height: 77px;
    margin: 0 auto;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.thanks-modal .modal-dialog {
    max-width: 336px;
}

.modal-content {
    border: 0;
    border-radius: 15px;
}

.thanks-h1 {
    color: var(--black-color-text);
    font-family: 'Raleway';
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 15px;
}

.thanks-msg {
    color: var(--grey-color-text);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto 10px;
}

.thanks-msg2 {
    color: var(--black-color-text);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.step-h1 {
    color: #000;
    font-family: 'Raleway';
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
}
.steps-count {
    margin: -19px auto 20px;
    border-radius: 25px;
    background: rgba(0, 165, 155, 0.10);
    color: #00A59B;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
}

/*  */
.manage_proTabs .nav-pills .nav-link.active,
.manage_proTabs .nav-pills .show>.nav-link {
    color: var(--field-color);
    font-weight: 600;
    background-color: transparent;
}

.manage_proTabs .nav-pills .nav-link.active::before {
    position: absolute;
    content: '';
    bottom: -2px;
    height: 3px;
    left: 0;
    right: 0;
    border-radius: 50px;
    width: 100%;
    background-color: var(--field-color);
}

.manage_proTabs .nav-pills {
    gap: 18px;
    width: fit-content;
    border-bottom: 2px solid #D9D9D9;
}

.manage_proTabs .nav-pills .nav-link {
    color: var(--grey-color-text);
    border-radius: 0;
    position: relative;
    padding: 6px 10px;
}

.white-shodow {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 0 12px 0 rgba(192, 192, 192, 0.18);
    padding: 32px 26px;
    margin-block: 22px;
}

/*  */

.uploaded_inputBox {
    position: relative;
}

.uploadInputIcon {
    position: absolute;
    right: 18px;
    top: 12px;
    color: var(--grey-color-text);
    cursor: pointer;
}

.uploadInputIcon:hover {
    color: var(--field-color);
}
.uploadInputIcon2 {
    position: absolute;
    right: 18px;
    top: 12px;
    color: var(--grey-color-text);
    cursor: pointer;
}

.uploadInputIcon2:hover {
    color: var(--field-color);
}

.uploaded_inputBox .form-control {
    color: var(--switch-box-color);
    padding-block: 12px;
}

.button_box {
    padding-top: 22px;
    text-align: end;
    margin-top: 12px;
    border-top: 1px solid var(--border-color);
}

.button_box .btn-primary {
    min-width: 188px;
}

.availability_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.availability_items {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 2px dashed  #F2F2F2;
}

.availability_items:first-child {
    padding-top: 0;
}

.availability_items:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.availability_leftSwitch {
    display: flex;
    align-items: center;
    gap: 18px;
}

.leftSwitchTilte {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.switche-box .form-switch .form-check-input {
    border: 0;
    width: 43px;
    cursor: pointer;
    height: 22px;
    background-color: #B4B5B9;
    border-color: #B4B5B9;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.switche-box .form-check-input:checked {
    background-color: var(--switch-box-color);
    border-color: var(--switch-box-color);
}

.switche-box .form-check-input:focus {
    box-shadow: none;
}

.form-control::file-selector-button {
    display: none;
}

.availabilit_timeInput {
    border-radius: 100px;
    background: #F6F6F6;
    width: 123px;
    height: 42px;
    border: 0;
    padding: 10px 14px;
    font-size: 15px;
    padding-right: 30px;
    outline: 0;
}

.availabilit_timeInput[type="time" i]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M16.5 9C16.5 13.14 13.14 16.5 9 16.5C4.86 16.5 1.5 13.14 1.5 9C1.5 4.86 4.86 1.5 9 1.5C13.14 1.5 16.5 4.86 16.5 9Z' stroke='%23606166' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.7827 11.3848L9.45766 9.99732C9.05266 9.75732 8.72266 9.17982 8.72266 8.70732V5.63232' stroke='%23606166' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}

.datePickr_input {
    display: flex;
    align-items: center;
    padding: 5px 46px 5px 9px;
    /* min-height: 28px; */
    color: var(--field-color);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
}

.datePickr_input .selected-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex-grow: 1;
    min-height: 40px;
    align-items: center;
}

.datePickr_input .date-tag {
    border-radius: 100px;
    background: var(--label-tags-color);
    padding: 5px 6px 5px 16px;
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
    font-weight: 500;
}

.datePickr_input .date-tag .remove-date {
    cursor: pointer;
    font-weight: 500;
    color: #0A3A40;
    background-color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 17px;
    min-width: 20px;
}

.datePickr_input .date-tag .remove-date:hover {
    background-color: var(--secondary-hover-color);
    color: var(--white-color);
}

.selected_input {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.inputFrom {
    position: relative;
}

.inputTimeIcon {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}

.availability_timeBox {
    display: flex;
    gap: 24px;
}


/* user profile upload css */
.avatar-upload {
    max-width: 162px;
    position: relative;
}

.avatar-upload .avatar-edit {
    right: 10px;
    position: absolute;
    bottom: 4px;
}

.avatar-upload .avatar-edit .Upload_input {
    display: none;
}

.avatar-upload .avatar-edit .Upload_input+.Upload_icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--switch-box-color);
    background: var(--white-color);
}

.avatar-upload .avatar-edit .Upload_input+.Upload_icon {
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-preview {
    width: 162px;
    height: 162px;
    border: 6px solid var(--white-color);
    border-radius: 50%;
    min-width: 162px;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* user profile upload css end */

.profile_topBG {
    position: relative;
    padding-top: 30px;
}

.usersInfo {
    top: -10px;
    position: relative;
}

.userNames {
    color: var(--black-color-text);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.useremail.break-words {
    color: var(--field-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.profile_topBG::before {
    position: absolute;
    content: '';
    width: calc(100% + 52px);
    height: 144px;
    background: #0A3A40;
    border-radius: 16px 16px 0 0;
    top: -32px;
    left: -26px;
    z-index: 0;
}

.avatar-upload-main-box {
    position: relative;
    z-index: 1;
    margin: 0 0 40px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}


/* new css2 */
.dateIcon {
    position: absolute;
    right: 5px;
    /*top: 34px;*/
    top: 75px;
    /* background-color: var(--label-tags-color); */
    /* width: 42px; */
    /* height: 42px; */
    /* line-height: 40px; */
    /* border-radius: 50%; */
    pointer-events: none;
}

.Manage_dateIcon {
    position: absolute;
    right: 5px;
    top: 68px;
    pointer-events: none;
}

.textarea-control {
    height: 100px;
    resize: none;
    border-radius: 15px;
}

/* File Upload */
.image-upload {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 100%;
}

.image-upload input {
    position: absolute;
    top: 0;
    bottom: 0;
    visibility: hidden;
    left: 0;
    width: 100%;
    opacity: 0;
}

.upload-field {
    display: block;
    height: 100%;
}

.upload-field .file-thumbnail {
    cursor: pointer;
    border-radius: 16px;
    border: 1px dashed rgba(242, 116, 5, 0.30);
    background: rgba(242, 116, 5, 0.08);
    text-align: center;
    padding: 15px;
    height: 100%;
    /*height: 120px;*/
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.upload-field .file-thumbnail img {
    width: auto;
    max-height: 90px;
}

.upload-field .file-thumbnail h3 {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 4px;
}

.upload-field .file-thumbnail p {
    font-size: 12px;
    color: #9ABCD1;
    margin-bottom: 0;
}

.image-upload.no-files-upload .file-thumbnail img {
    width: auto;
}

.image-upload.no-files-upload .file-thumbnail .file-view {
    height: auto;
}

.filesName {
    color: var(--orange-color);
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.clear-files {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--orange-color);
}

.clear-files svg {
    background: #fff;
    border-radius: 50%;
}

/* .file-upload-blocks {
    height: calc(100% - 48px);
} */

.contryList {
    position: relative;
}

.intl-tel-input {
    display: block;
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: transparent;
    /* border-right: 1px solid #ddd; */
}

.iti-flag {
    background-image: url("../img/flags.png");
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    padding-right: 24px;
    color: var(--field-color);
    font-weight: 500;
}

.intl-tel-input.iti-container {
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
}

.intl-tel-input .country-list .country {
    font-size: 14px;
}

.intl-tel-input .country-list {
    white-space: unset;
    width: 100%;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: transparent;
}

.intl-tel-input .country-list.dropup {
    margin-bottom: 54px;
}

.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name {
    margin-right: 6px;
    color: var(--field-color);
}

.flatpickr-day {
    color: var(--field-color);
    font-weight: 500;
}

.flatpickr-current-month {
    font-size: 16px;
    font-weight: 500;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 500;
}

.flatpickr-current-month input.cur-year {
    font-weight: 500;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: var(--label-tags-color)
}

.timepickerOpen .flatpickr-calendar {
    width: 140px;
}

.timepickerOpen .flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border-top: 0;
}

.flatpickr-time .flatpickr-am-pm,
.flatpickr-time input {
    font-size: 14px;
}

.availability_box.bordered-availability {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 4px 17px;
}

.availability_box.bordered-availability .availability_items {
    padding: 7px 0;
    border-bottom: 0;
}

.availability_timeBox {
    gap: 8px;
}

.availability_leftSwitch {
    gap: 12px;
}

.clear-sign {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--field-color);
    font-size: 15px;
    font-weight: 500;
}

.signPanel {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    height: 150px;
}

/* ====  switch css  ===== */
.switch_time {
    display: flex;
}

.plan_time input[type="checkbox"] {
    width: 0;
    height: 0;
    visibility: hidden;
}

.plan_time label {
    width: 43px;
    height: 22px;
    display: block;
    position: relative;
    cursor: pointer;
    border-radius: 22px;
    background: #B4B5B9;
    transition: 0.5s;
}

.plan_time label::after {
    content: "";
    width: 17px;
    height: 17px;
    background-color: var(--white-color);
    position: absolute;
    border-radius: 70px;
    top: 2px;
    left: 2px;
    transition: 0.5s;
}

.plan_time input:checked~label {
    background-color: var(--orange-color);
}

.plan_time input:checked~label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
    background-color: var(--white-color);
}

/* ====  switch css END  ===== */
.setting_content {
    margin-top: 16px;
}

.setting_linkName {
    display: inline-block;
    flex: auto;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.setting_linkName:hover {
    color: var(--secondary-color);
}

.setting_items {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.settingList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E7E7E7;
    border-radius: 15px;
    padding: 9px 24px 9px 15px;
    margin-bottom: 13px;
}

.setting_dataBox {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.setting_linkIcons {
    width: 50px;
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #EEF5FD;
    border-radius: 100px;
    background: rgba(242, 116, 5, 0.10);
}

.right-arrowBtn {
    color: #4F6273;
    display: inline-block;
    line-height: normal;
}

.right-arrowBtn:hover {
    color: var(--secondary-color);
}

.right-arrowBtn svg {
    width: 16px;
}

.no-shadow {
    box-shadow: none;
}

.action_btnEdite {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
}

.action_btnEdite .lang-flag img,
.action-dropdown.language_dropdown .dropdown-item img {
    width: 21px;
    max-width: 21px;
    margin-right: 5px;
}

.action-dropdown.language_dropdown {
    min-width: 150px;
}

.action-dropdown.language_dropdown .dropdown-item {
    padding: 6px 1rem;
}

.settings_drodwanBox .dropdown-toggle::after {
    display: none;
}

/* @media (min-width: 992px) {
    .dropdown-menu {
      right: 0;
      left: auto;
    }
  } */
.noLinks {
    cursor: text;
}

.subpage-title {
    position: relative;
    padding: 0 0 0 30px;
    color: var(--field-color);
    font-family: 'Raleway';
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}

.backLink {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--field-color);
}

.cmspage h1 {
    font-size: 24px;
}

.cmspage h3 {
    font-size: 17px;
}

.cmspage h2 {
    font-size: 30px;
    font-weight: 500;
}

.faq_content_box .accordion-item {
    border-radius: 35px;
    margin-bottom: 20px;
    border: 0;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
}

.faq_content_box .accordion-button {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 22px 25px;
}

.faq_content_box .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4737 9.51973C5.90889 9.08146 6.61736 9.08021 7.0541 9.51694L11.2112 13.674C11.6468 14.1097 12.3532 14.1097 12.7888 13.674L16.9459 9.51694C17.3826 9.08021 18.0911 9.08146 18.5263 9.51973L18.7168 9.71154C19.1498 10.1476 19.1485 10.8518 18.714 11.2864L12.7888 17.2115C12.3532 17.6472 11.6468 17.6472 11.2112 17.2115L5.28603 11.2864C4.85147 10.8518 4.85022 10.1476 5.28324 9.71154L5.4737 9.51973Z' fill='%23303030'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
}

.faq_content_box .accordion-body {
    padding: 1rem 1.55rem;
    padding-top: 0;
}

.accordion_desc p {
    color: var(--grey-color-text);
    font-size: 16px;
    font-weight: 400;
}

.faq_content_box .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq_content_box .accordion-button:not(.collapsed) {
    color: var(--field-color);
}

.faq_content_box .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.fugu-default-content.contact-page {
    margin-top: 14px;
}

.contact-form {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
    padding: 28px;
}

.fugu-contact-info {
    margin-top: 40px;
    background-image: url(../img/contact-img.png);
    background-position: center right;
    background-repeat: no-repeat;
}

.ctp-h1 {
    font-family: 'Raleway';
    color: var(--black-color-text);
    font-size: 30px;
    font-weight: 600;
}

.fugu-contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fugu-contact-info ul li {
    position: relative;
    padding-left: 65px;
    margin-bottom: 30px
}

.fugu-contact-info ul li:last-child {
    margin-bottom: 0
}

.fugu-contact-info ul li a {
    color: rgba(2, 2, 30, .8)
}

.fugu-contact-info ul li h5 {
    font-weight: 600;
    margin-bottom: 5px
}

.fugu-contact-info ul li .fugu-contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--warning-500)
}

.fugu-contact-info ul li h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 21px;
}

.fugu-contact-wrap {
    background: #fff;
    box-shadow: 0 4px 80px rgba(0, 0, 0, .06);
    border-radius: 5px;
    padding: 40px
}

.break-words {
    word-break: break-all;
}

.text-danger {
    color: #dc3545 !important;
    font-size: 13px;
}

.supportsUpload {
	color: #dc3545 !important;
	font-size: 13px;
}

.login-block .faq_content_box .accordion-button {
    font-size: 16px;
}

.login-block .accordion_desc p {
    font-size: 16px;
}

.login-block .faq_content_box .accordion-item {
    margin-bottom: 16px;
}

.border-btn.primary-btn {
    border-radius: 1250px;
    border: 1px solid #DBF227;
    background: #FFF;
    padding: 16px;
    width: 100%;
    margin: 32px 0 0;
}

.border-btn.primary-btn:hover {
    background: #DBF227;
    color: #000;
}

.frequently {
    color: #000000;
}

.help-btn {
    display: flex;
    gap: 15px;
}

.left-btn-icon {
    padding-right: 10px;
    margin-right: 5px;
    border-right: 1px solid #DCDCDD;
}

.border-btn.help-btn.primary-btn {
    border: 1px solid #DCDCDD;
    margin-top: 32px;
}

.border-btn.help-btn.primary-btn:hover {
    background: #FFF;
    color: var(--primary-hover-color);
}



.settingList .lang-flag img {
    width: 21px;
    max-width: 21px;
    margin-right: 5px;
    height: 21px;
    border-radius: 50%;
    object-fit: cover;
}

.Se_podrá_modificar {
    font-size: 14px;
}


/*  */
.modal_button_box {
    padding-top: 14px;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
}
.modal-head-text{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.changePassword-modal .modal-dialog {
    max-width: 397px;
}


.custom_upload_input {
   display: block;
    padding: 11px 19px;
    min-height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 90px;
    font-weight: 500;
    font-size: 15px;
}
.custom_upload_input p a {
   color: var(--switch-box-color);
}
.label-info-icon{
    display: flex;
    align-items: center;
    gap: 5px;
}
.info-btn{
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
/*  */

.informationModal .modal-dialog {
    max-width: 430px;
    margin: auto;
}
.infoModal-box{
    position: relative;
}
.info-modal-content {
    display: flex;
    justify-content: space-between;
    padding: 42px 90px 30px 20px;
}
.textTrack{
    margin-bottom: 0;
    color: #000;
    font-size: 17px;
    font-weight: 600;
}
.img-box{
    position: relative;
}
.arrow-down {
    position: absolute;
    top: 122px;
    right: 29%;
    z-index: 10;
}
.arrow-up1 {
    position: absolute;
    top: -24px;
    right: 29%;
    z-index: 10;
}
.arrow-up2 {
    position: absolute;
    top: -25px;
    left: 8%;
    z-index: 10;
}

.informationModal .modal-title{
    color: var(--black-color);
    font-size: 20px;
    font-family: Raleway;
    font-weight: 700;
}
.informationModal .modal-header{
    padding-bottom: 0;
    border-bottom: 0;
}
.cover_box{
    position: relative;
    height: 309px;
}
.cover_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-image: url(../img/cover-img.png);
    background-repeat: no-repeat;
    height: 100%;
    background-size: cover;
}
.cover_box img {
    height: 228px;
    width: 100%;
    border-radius: 21px 22px 0 0;
}
.logoUpload_box {
    position: relative;
    height: 130px;

}
.logoUpload_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-image: url(../img/logo-frame-img.png);
    background-repeat: no-repeat;
    height: 100%;
    background-size: cover;
    z-index: 2;
    border-radius: 22px;
}
.upload-logo-box{
    z-index: 9;
    position: relative;
    top: 43px;
    left: 13px;
    width: 42px;
    height: 42px;
}

.upload-logo-box img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.upload-detailed-box {
    z-index: 1;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
}
.upload-detailed-box img {
    border-radius: 0px 22px 22px 0px;
    height: 100%;
    max-width: 380px;
    width: 100%;
}
.default-cover-img {
    width: auto;
}










.bookingmanagementHeader {
    border-radius: 16px 16px 0px 0px;
    color: #000;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    padding: 14px;
    position: relative;
}
.bookingmanagementHeader.pending {
    background: var(--primary-color);
}
.bookingmanagementHeader.confirm {
    background: var(--secondary-color);
    color: #fff;
}
.bookingmanagementHeader.finish {
    background: var(--secondary-hover-color);
    color: #fff;
}
.bookingmanagementHeader .totalOrder{
    position: absolute;
    top: 4px;
    right: 5px;
}
.bookingmanagementHeader .totalOrder .count{
    position: absolute;
    top: 8px;
    left: 12px;
}
.all_order_outer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 22px;
    gap: 22px;
}
.all_order_outer .white-shodow {
    width: 100%;
}
.order_item.white-shodow  {
    position: relative;
    padding: 14px;
    margin: 0;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
}
.order_item .order_id {
    color: #0A3A40;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}
.order_item .pro_title {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
}
.order_item .pro_quantity {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.order_item .pro_quantity .pro_icon {
    width: 16px;
    flex: 0 0 auto;
}
.order_item .de_title {
    color: #606166;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}
.order_item .de_val {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

/* .order_item:hover a {
    color: var(--secondary-color);
} */
.flex_head{
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.order_item .dropdown{
    position: relative;
    z-index: 1;
}

.order_item.finish .flex_head svg circle {
    stroke: #fff;
}

.order_item.pending {
    background-color: #DBF22729;
}
.order_item.confirm {
    background-color: #01A59B29;
}
.order_item.finish {
    background-color: #0A3A4029;
}

.cancelBtn{
    color: #B50027;
    font-family: Raleway;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid #B50027;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cancelBtn:hover{
    color: #fff;
    border: 1px solid #B50027;
    background: #B50027;
}

.modalHeader{
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    border-bottom: 1px solid #DCDCDD;
    padding-bottom: 16px;
}
.modalTitle {
    color: #000;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}
.form-group .currancy{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    position: absolute;
    top: 43px;
    left: 20px;
}
.form-group .form-control:has(+.currancy) {
    padding-left: 42px;
}
.currancyOuter{
    padding: 13px 11px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #F7F7F7;
    border-radius: 4px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.currancyOuter span {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 12px
}
.currancyOuter span::after {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.10);
}
.currancyOuter .form-control {
    border: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    min-height: unset;

}

/*  */

.draggable-card {
    cursor: move;
    user-select: none;
  }
  
  .sortable-ghost {
    opacity: 0.4;
    transform: rotate(2deg);
  }
  

  .orderCard-box {
    background: #ffffff;
    align-content: flex-start;
    gap: 0;
    border-radius: 10px;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
    height: 550px;
    overflow-x: hidden;
    overflow-y: auto;
}

  .orderCard-box .order_item.white-shodow {
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
    height: fit-content;
    margin: 10px;
    min-height: 140px;
}
.row_gap{
    --bs-gutter-y: 25px;
}
.loadMore-btn{
    margin: 15px auto auto;
    font-weight: 400;
}




/* Dashboard CSS Start */
.white_box {
    background-color: var(--white-color);
    border-radius: 16px;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
    padding: 14px;
}
.white_box:has(>.white_box_head,>.white_box_body){
    padding: 0;
}
.white_box .white_box_head, .white_box .white_box_body{
    padding: 16px;
}
.crd_icon{
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    aspect-ratio: 1/1;
    border-radius: 12px;
    border: 4px solid rgba(242, 116, 5, 0.08);
    background-color: var(--white-color);
    color: var(--orange-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04) inset;;
}
.flex-head, .crd_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.crd_info {
    justify-content: start;
}
.info_title {
    color: var(--grey-color-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.info_val {
    color: var(--black-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}
.lose_gain {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #00B889;
    border-radius: 10px;
    padding: 4px 7px;
    background-color: #00B88914;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lose_gain.lose {
    color: #E7062D;
    background-color: #E7062D1A;
}
.dash_graph_outer {
    margin-top: 32px;
}
.white_box_title {
    color: var(--black-color);
    font-family: 'Raleway';
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}
.graph_indicater {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    background: #F6F6F6;
    padding: 8px 16px;
    color: var(--black-color);
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.graph_indi_item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.graph_indi_item::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: var(--white-color);
}
.graph_indi_item.current_year::before {
    background-color: var(--secondary-hover-color);
}
.graph_indi_item.last_year::before {
    background-color: var(--secondary-color);
}
.white_box:has(+.white_box) {
    margin-bottom: 24px;
}
.white_box_head.border-bottom {
    border-color: #D9DBDD;
    padding: 18px 0 16px;
    margin: 0 16px;
}
.recent_reservations_item:not(.bookingCard):has(+.recent_reservations_item:not(.bookingCard)){
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #D9DBDD;
}
.recent_reservations_item {

}
.res_id {
    color: var(--secondary-hover-color);
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}
.res_cus_name {
    color: var(--black-color);
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.res_seat {
    color: var(--black-color);
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 4px;
}
.res_status {
    text-align: right;
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    padding: 2px 10px;
    border-radius: 50px;
}
.res_status.success {
    color: #00B889;
    background-color: #00B8891A;
}
.res_status.cancel, .res_status.reject {
    color: #E7062D;
    background-color: #FDE6EA;
}
.res_status.refund {
    color: var(--secondary-hover-color);
    background-color: #E8EFEF;
}
.res_detail {
    flex-wrap: wrap;
}
.res_title {
    color: var(--grey-color-text);
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}
.res_val {
    color: var(--black-color);
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.iconBtn {
    padding: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50px;
    border: 1px solid #D9DBDD;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}
.iconBtn:hover, .dropdown .iconBtn.show {
    color: var(--orange-color);
    border-color: var(--orange-color);
}

.bookingPopupOuter{
    position: fixed;
    z-index: 1060;
    inset: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.60);
    overflow-y: auto;
}
.bookingCard {
    max-width: 510px;
    width: 100%;
    margin: auto;
    padding: 22px 20px 14px;
    background-color: var(--white-color);
    border-radius: 0 0 16px 16px;
    box-shadow: 0px 8px 42px 0px rgba(192, 192, 192, 0.18);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #9a9a9a;
}
.res_foot {
    border-top: 1px solid #D9DBDD;
    padding-top: 14px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.mw-190 {
    max-width: 190px;
    width: 100%;
}
.recentReservasCard {
    position: sticky;
    top: 12px;
}
/* Dashboard CSS End */


/*Notification CSS Start*/
/* .notification-group {
    margin-bottom: 20px;
}

.group-title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin: 20px 0 10px;
}

.notification-item {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notification-item .title {
    font-weight: 600;
    color: #222;
}

.notification-item .description {
    color: #666;
    font-size: 14px;
}

.notification-item .time {
    color: #aaa;
    font-size: 12px;
    align-self: flex-end;
} */


.notiHeaderTopHeading {
    color: #212529;
    font-weight: 500;
}

.notificationListDrop {
    list-style: none;
}
.mh-unset {
    max-height: unset;
    overflow: visible;
}

.notificationListDrop li:not(.noti_day):has(+li:not(.noti_day)){
    border-bottom: 1px dashed #D9DBDD;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.notificationListDrop .dropdown-item {
    padding: 15px;
}

.notiListCard {
    display: flex;
    align-items: center;
}

.notiListCard .notiListImg {
    flex: 0 0 42px;
    max-width: 42px;
    background: #F274051A;
    border-radius: 16px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notiListCard .notiListContent {
    flex: auto;
    padding-left: 15px;
}

.notiListCard .notiListContent p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 3px;
    white-space: normal;
    font-weight: 500;
}

.notiListCard .notiListContent small {
    display: block;
    color: #606166;
}

.noti_date_time {
    text-align: right;
    font-size: 12px;
    color: #606166;
    display: block;
    font-weight: 400;
    padding-right: 30px;
}
.noti_day {
    color: #000;
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}
.notificationListDrop li:not(.noti_day)+li.noti_day {
    margin-top: 16px;
}
/*Notification CSS End*/

.customer-table-container h2 {
    margin-bottom: 16px;
    font-size: 20px;
    color: #333;
  }
  .customer-table .highlight {
    font-size: 16px !important;
  }
  .customer-table .highlight.orange {
    color: var(--orange-color) !important;
  }
  .customer-table .highlight.secondary {
    color: var(--secondary-color) !important;
  }
  
  .customer-table {
      margin: 0 !important;
  }
  .customer-table.table th, .customer-table.table td {
      color: #000 !important;
      font-family: 'poppins', sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.5;
      padding: 12px 16px;
      border: none !important;
  }
  .customer-table.table th {
      background-color: #0000000A;
      line-height: 24px;
  }
  .customer-table.table th:first-child {
      border-radius: 50px 0 0 50px;
  }
  .customer-table.table th:last-child {
      border-radius: 0 50px 50px 0;
  }
  .customer-table.table th:first-child, .customer-table.table td:first-child {
      padding-left: 32px;
  }
  .customer-table.table th:last-child, .customer-table.table td:last-child {
      padding-left: 32px;
  }
  .customer-table.table td {
      padding: 18px 16px;
      border-bottom: 1px dashed #D9DBDD !important;
  }
  .customer-table.table tbody tr:first-child td {
      padding-top: 27px;
  }
  .customer-table.table tbody tr:last-child td {
      border-bottom: none !important;
  }
  .customer-table.table .res_status {
    min-width: 100px;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    padding: 4px 10px;
  }
  .customer-table.table td a {
    color: var(--orange-color);
  }
.custom-table-head {
    margin-bottom: 18px;
}
.export_btn{
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn_outline_orange {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    border: 1px solid var(--orange-color);
    border-radius: 12px;
    color: var(--orange-color);
}
.btn_outline_orange:hover,.btn_outline_orange.show {
    color: var(--white-color);
    background-color: var(--orange-color);
}
.filter_dropdown .dropdown-menu {
    background-color: #fff;
    padding: 16px 14px;
    border-radius: 16px;
    width: max-content;
    max-width: 350px;
    min-width: unset;
    max-height: 400px;
    overflow-y: auto;
}
.borderBottom {
    padding-bottom: 18px;
    border-bottom: 1px solid #D9DBDD;
}
.form-control:has(+.absIcon) {
    padding-left: 44px;
}
.absIcon {
    position: absolute;
    top: 13px;
    left: 14px;
}
.filter_item {
    margin-top: 18px;
}
.custome_label {
    color: #000;
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 12px;
}
.filter_radio label {
    position: relative;
    display: block;
    cursor: pointer;
    margin: 0;
}
.filter_radio label::after,.filter_radio label::before {
    content: '';
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    transition: ease-in-out .3s;
}
.filter_radio label::after {
    width: 20px;
    height: 20px;
    border: 1px solid #606166;
    background-color: transparent;
    right: 0;
    top: 0;
}
.filter_radio label::before {
    width: 12px;
    height: 12px;
    background-color:var(--orange-color);
    top: 4px;
    right: 4px;
    opacity: 0;
}

.filter_radio input[type="radio"]:checked~label::after, .filter_radio input[type="radio"]:checked~label::before {
    border-color: var(--orange-color);
    opacity: 1;
}
.filter_radio:has(+.filter_radio) {
    margin-bottom: 8px;
}
.cancelBookingButton {
    font-size: 14px;
    font-weight: 400;
    color: red;
    position: relative;
    z-index: 2;
}
.cancelBookingButton:hover {
    color: rgb(184, 0, 0) !important;
}
.multi-file-item {
    position: relative;
}
.img_prev {
    margin: 6px;
    max-width: 140px;
    width: 100%;
}
.img_prev .clear-files {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    color: #fff;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}
.delete_img_btn, .save_img_btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    color: red;
    background-color: rgb(255, 172, 172);
    display: flex;
    align-items: center;
    justify-content: center;
}
.delete_img_btn:hover {
    color: #fff;
    background-color: red;
}
.save_img_btn{
    color:#fff;
    background-color: var(--secondary-color);
}
.save_img_btn:hover {
    opacity: .8;
     color:#fff;
}
.img_prev_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 12px;
}
.img_prev_list_booking {
    justify-content:end;
}
.img_prev_item{
    /*position: relative;*/
    width: 100%;
    padding: 4px;
    max-width: 99px;
    aspect-ratio: 1/1;
    border-radius: 8px;
    /*overflow: hidden;*/
    flex: 0 0 auto;
    background-color: rgb(241, 241, 241);
}   
.img_prev_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}   
.img_prev_item .img_prev_tool {
    /*position: absolute;*/
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /*background-color: rgba(0,0,0,.6);*/
    /*opacity: 0;*/
    transition: ease-in-out .3s;
    padding: 10px;
}
/*.img_prev_item:hover .img_prev_tool {
    opacity: 1;
}*/
.upload-document-file-name {
    word-wrap: break-word;
}
.view-icon-btn {
    position: relative;
    z-index: 2;
}


/* Image Cropper */
.croppie-container {
    width: 100%;
    height: 100%;
}

.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}

.croppie-container .cr-boundary {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	z-index: 1;
	width: 100% !important;
	height: 100%;
	border-radius: 16px;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
    position: absolute;
    border: 2px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
    display: block;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid black;
    background: #fff;
    width: 10px;
    height: 10px;
    content: '';
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
    left: 50%;
    margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
    top: 50%;
    margin-top: -5px;
}

.croppie-container .cr-original-image {
    display: none;
}

.croppie-container .cr-vp-circle {
    border-radius: 50%;
}

.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
    touch-action: none;
}

.croppie-container .cr-slider-wrap {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.croppie-result {
    position: relative;
    overflow: hidden;
}

.croppie-result img {
    position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
 
.cr-slider {
	-webkit-appearance: none;
    appearance: none;
	/* border: 1px solid white; */
	width: 300px;
	max-width: 100%;
	padding-top: 8px;
	padding-bottom:8px;
	background-color: transparent;
	position: unset !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #00a59b;
    margin-top: -6px;
}

.cr-slider:focus {
    outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/

.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #00a59b;
    margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
}

.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
	border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
	border-width: 6px 0;
	color: transparent;/*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #ddd;
	margin-top:1px;
}
.cr-slider:focus::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
}
/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 1;
}
.cr-rotate-controls button {
	border: 0;
	background: none;
}
.cr-rotate-controls i:before {
	display: inline-block;
	font-style: normal;
	font-weight: 900;
	font-size: 22px;
}
.cr-rotate-l i:before {
	content: '↺';
}
.cr-rotate-r i:before {
	content: '↻';
}
#my-image, #use {
  display: none;
}
.crop-result {
    text-align: center;
}
.btn-uploads {
	color: var(--black-color);
	background-color: var(--primary-color);
	border: 0;
	font-weight: 500;
	font-size: 14px;
	padding: 6px 20px;
	border-radius: 60px;
	transition: ease-in-out .3s;
	margin: 0 0 11px;
}

#my-cover_image, #upload-cover-image {
    display: none;
  }

#my-view_detail_image, #upload-view_detail_image {
    display: none;
 }


.pending-alert {
    display: inline-block;
    margin: 10px 0;
    color: #FF0000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    animation: blink 1s infinite;
    border: 1px solid #FF0000;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.is_read_notification {
    color: #53535f;
    line-height: 1;
    border-radius: 50px;
    background: #FFF;
    border: 1px solid rgba(242, 116, 5, 0.18);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
}


.term-upload-image .img_prev_item {
    max-width: 50px;
}
.term-upload-image .delete_img_btn, .term-upload-image .save_img_btn {
    width: 18px;
    height: 18px;
    padding: 2px;
}
.term-upload-image .img_prev_item .img_prev_tool {
    padding: 5px;
}
.column-avail-box .availability_items {
    flex-direction: column;
    gap: 10px;
}
.text_red_box {
    font-size: 14px;
    font-weight: 400;
    color: red;
}