:root{
    --primaryColor: #F35F5D;
    --secondaryColor: #000000;
}
/* General styles */
/*body {*/
/*    opacity: 0.3; !* Start invisible *!*/
/*    transition: opacity 1s ease-in-out; !* Smooth fade-in effect *!*/
/*}*/

/* Fade-in effect when page loads */

/*Loader*/
div, span, p, label, a, h1, h2, h3, h4, h5, h6, li, td, th {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.rescheduleStripeDiv{
    padding: 3px 5px;
}
.createPostDiv{
    border:1px dashed #F35F5D;
    margin:5px;
    border-radius:15px;
}

.createTextDiv{
    padding: 5px 2px;
}

.textDesign{
    font-weight: 400;
    text-align: center;
    font-size:16px;
}

.rescheduleStripeDiv p{
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--primaryColor);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*Loader*/

body.fade-in {
    opacity: 1; /* Become fully visible */
}

.toast.toast-success{
    background-color: var(--bs-green);
    color: #ffffff;
}
.toast.toast-error {
    background-color: var(--bs-red);
    color: #ffffff;
}
.toast-container {
    position: fixed;
    bottom: 50px;
    margin-top: .9375rem;
    right: .9375rem;
    z-index: 1080;
}
.btn-outline-primary{
    border-color: var(--primaryColor) !important;
    color: var(--primaryColor) !important;
}
.bg-primary{
    background-color: var(--primaryColor) !important;
}
.bg-primary-100{
    background-color: #FFEEEE !important;
}
.text-primary{
    color: var(--primaryColor) !important;
}
.text-secondary{
    color: var(--secondaryColor) !important;
}
.border-primary{
    border: 1px solid var(--primaryColor) !important;
}
.border-secondary{
    border: 1px solid #cccccc !important;
}
.form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor)
}
.form-check-input:focus {
    border-color: #ee8f8d;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(52, 143, 226, .25)
}
/*Custom Radio*/
.custom-checkbox {
    position: relative;
}

.custom-checkbox [type="radio"]:checked, .custom-checkbox [type="radio"]:not(:checked) {
    position: absolute;
    left: 0;
    visibility: hidden;
}

.custom-checkbox [type="radio"]:checked + label, .custom-checkbox [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom-checkbox [type="radio"]:checked + label, .custom-checkbox [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.1px;
}

.custom-checkbox [type="radio"]:checked + label:before, .custom-checkbox [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #C9D0DA;
    border-radius: 100%;
    background: #fff;
    top: 0%;
    transform: translateY(0%);
}

.custom-checkbox input[type="radio"]:checked + label:after {
    content: url("/images/check.png");
    font-size: 20px;
    line-height: 20px;
    width: 14px;
    height: 14px;
    color: white;
    display: block;
    position: absolute;
    top: 0px !important;
    left: 1px !important;
    border-radius: 3px;
    background: unset !important;
    font-weight: 600;
}

.custom-checkbox [type="radio"]:not(:checked) + label.removeButton:before {
    display: none !important;
}

.custom-checkbox input[type="radio"]:checked + label.removeButton:after {
    content: "-" !important;
    font-size: 25px;
    line-height: 18px;
    height: 18px;
    color: white !important;
    background: red !important;
    display: block;
    display: flex;
    width: 18px;
    padding: 0px 0px 4px;
    position: absolute;
    top: 9px !important;
    left: 0px !important;
    border-radius: 100%;
    /* background: unset !important; */
    font-weight: 600;
    justify-content: center;
    align-items: center;
}

.custom-checkbox [type="radio"]:checked + label:after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.custom-checkbox [type="radio"]:checked + label:after {
    color: var(--bs-primary) !important;
}
/*Custom Radio*/

/*Custom Checkbox*/
.custom-checkbox [type="checkbox"]:checked, .custom-checkbox [type="checkbox"]:not(:checked) {
    position: absolute;
    left: 0;
    visibility: hidden;
}

.custom-checkbox [type="checkbox"]:checked + label, .custom-checkbox [type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom-checkbox [type="checkbox"]:checked + label, .custom-checkbox [type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.1px;
}

.custom-checkbox [type="checkbox"]:checked + label:before, .custom-checkbox [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #C9D0DA;
    border-radius: 100%;
    background: #fff;
    top: 0%;
    transform: translateY(0%);
}

.custom-checkbox input[type="checkbox"]:checked + label:after {
    content: url("/images/check.png");
    font-size: 20px;
    line-height: 20px;
    width: 14px;
    height: 14px;
    color: white;
    display: block;
    position: absolute;
    top: 0px !important;
    left: 1px !important;
    border-radius: 3px;
    background: unset !important;
    font-weight: 600;
}

.custom-checkbox [type="checkbox"]:not(:checked) + label.removeButton:before {
    display: none !important;
}

.custom-checkbox input[type="checkbox"]:checked + label.removeButton:after {
    content: "-" !important;
    font-size: 25px;
    line-height: 18px;
    height: 18px;
    color: white !important;
    background: red !important;
    display: block;
    display: flex;
    width: 18px;
    padding: 0px 0px 4px;
    position: absolute;
    top: 9px !important;
    left: 0px !important;
    border-radius: 100%;
    /* background: unset !important; */
    font-weight: 600;
    justify-content: center;
    align-items: center;
}

.custom-checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.custom-checkbox [type="checkbox"]:checked + label:after {
    color: var(--bs-primary) !important;
}
/*Custom Checkbox*/
a{
    text-decoration: unset;
}
fieldset.custom-fieldset {
    border: 2px solid #969696;
    background-color: #ffffff;
    border-radius: 5px;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    padding-block-start: 0.35em;
    padding-inline-start: 1em;
    padding-inline-end: 1em;
    padding-block-end: 0.625em;
    margin-bottom: 20px;
}

legend.custom-legend {
    background-color:var(--primaryColor);
    color: #fff;
    padding: 2px 12px;
    font-size: 14px;
    border-radius: 5px;
    width: auto;
    float: none;
    margin-bottom: 0;
}
.floating-btn{
    width: 45px;
    height: 45px;
    position: fixed;
    right: 20px;
    bottom: 80px;
    border-radius: 50%;
    background-color: var(--secondaryColor);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
body.main-page{
    position: relative;
    background-image: url(/images/main-bg.jpg);
    background-color: rgba(0,0,0,0.6);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
body.main-page .main-section-bg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
body.main-page .bottom-fixed{
    position: absolute;
    bottom: 10%;
    margin: 0 auto;
    width: 100%;
}
#header .navbar-header{
    height: 80px !important;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.app-header .navbar-header{
    padding: 50px 12px 5px 12px
}
.app-without-sidebar .app-content{
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
.container-main {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    position: relative;
    z-index: 1;
}
.p-12px{
    padding: 12px;
}
.pb-60px {
    padding-bottom: 60px !important;
}
.search-holder input{
    padding-left: 30px;
}
.search-icon{
    position: absolute;
    left: 10px;
    top: 6px;
    font-size: 15px;
    color: #626161;
}
.search-mike{
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 18px;
    color: #000000;
}

/* User Type Card */
.content-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 35px 35px 0 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    min-height: 400px;
}
.eye-icon {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}
.user-option-type .user-option-card{
    border-radius: 3rem;
    padding: 10px 20px;
    border: 1px solid #cccccc;
    margin-bottom: 12px;
}
.user-option-type .user-option-card.active{
    border: 2px solid var(--primaryColor);
}
.icon-box{
    height: 55px;
    width: 55px;
       border-radius: 50%;
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
}

.otp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:20px;
}

.otp-input {
    width: 200px; /* Adjust the width for your design */
    height: 50px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 20px; /* Space between the characters to simulate boxes */
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 0 10px;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.otp-input::placeholder {
    letter-spacing: 20px;
    color: var(--primaryColor);
}


.heading-section a{
    text-decoration: unset;
}
.wrInputText{
    border-radius: 25px;
}
.btn.btn-primary{
    background-color: var(--primaryColor);
    font-size: 16px;
    border: unset;
    border-radius: 25px;
}
.home-section-bg{
    background-color: var(--primaryColor);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 10px;
}
.carousel-caption {
    position: absolute;
    bottom: 2rem;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    z-index: 3;
}
.carousel-caption p{
    font-size: 16px;
}
.carousel-caption h2 {
    font-size: 30px;
}
.carousel-item img{
    border-radius: 10px;
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.3));
    z-index: 1;
    border-radius: 10px;
}
.services-holder{
    display: flex;
    flex-flow: row wrap;
}
.services-holder .service-box{
    width: auto;
    height: auto;
    flex: 1;
    flex-basis: 20%;
    margin-bottom: 10px;
}
.services-holder .service-box a{
    text-decoration: none;
}
.services-holder .service-box .service-img{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    margin: 0 auto 5px auto;
}
.services-holder .service-box .service-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-holder .service-box .service-text{
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0;
}
.service-card{
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
}
.service-card .product-img{
    height: 120px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.service-card .product-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.rating-tag{
    position: absolute;
    bottom: 7px;
    right: 7px;
    background-color: #ffffff;
    display: inline-block;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid var(--primaryColor);
}

.provider-card{
    border-radius: 8px;
    overflow: hidden;
    height: 210px;
}
.provider-card .provider-img{
    height: 150px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.provider-card .provider-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.owl-dots {
    text-align: center;
    padding-top: 10px;
}
.owl-dots button.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: #cccccc !important;
    margin: 0 3px;
}
.owl-dots button.owl-dot.active {
    background-color: #000000 !important;
}
.owl-dots button.owl-dot:focus {
    outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav button:focus {
    outline: none;
}

.toolbar-bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    height: 65px;
    z-index: 1020;
    box-sizing: border-box;
    box-shadow: 0px -3px 5px 0px rgba(37,117,252,0.18);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.toolbar-bottom .toolbar-inner{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
}
.toolbar-bottom .toolbar-inner .tab-link{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 0 8px 0;
    text-decoration: unset;
    color: #4a4a4a;
}
.toolbar-bottom .toolbar-inner .tab-link .toolbar-icon{
    font-size: 15px;
}
.toolbar-bottom .toolbar-inner .tab-link .toolbar-text{
    font-weight: 600;
    font-size: 13px;
}
.toolbar-bottom .toolbar-inner .tab-link.active{
    color: var(--primaryColor);
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 0.3rem;
    margin-left: 15%;
}

.service-detail-image{
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.service-detail-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-name-holder{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    padding: 10px;
}
.scan-qr{
    height: 23px;
    width: 23px;
    position: absolute;
    right: -5px;
    top: -5px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--primaryColor);
}
.provider-details-section{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #ffffff;
    margin-top: -12px;
}

ul.theme-nav-tabs{
    width: 100%;
}
.theme-nav-tabs li.nav-item{
    flex: 1;
}
.theme-nav-tabs li.nav-item a.nav-link{
    text-align: center;
    border-bottom: 3px solid #ededed;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding:8px !important;
}
.theme-nav-tabs li.nav-item a.nav-link.active{
    color: var(--primaryColor);
    background-color: #ffffff;
    border-bottom: 4px solid var(--primaryColor);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

ul.service-nav-pills{
    width: 100%;
}
.service-nav-pills li.nav-item{
    /*margin: 0 5px;*/
}
.service-nav-pills li.nav-item a.nav-link{
    text-align: center;
    border: 1px solid var(--primaryColor);
    background-color: #eeeeee;
    color: var(--primaryColor);
    border-radius: 25px;
    margin: 4px;
    padding: 0.23rem 1rem;
}
.service-nav-pills li.nav-item a.nav-link.active{
    color: #ffffff;
    background-color: var(--primaryColor);;
}

.select2-container--default .select2-selection--multiple{
    border-radius: 25px;
    width: 100%;
}

/*Upload icon*/
.file-upload-container {
    position: relative;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
}

.file-label span {
    flex-grow: 1;
}

.upload-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    font-size: 16px;
    background-size: contain;
}
.file-input {
    display: none;
}

/*Upload icon*/

.setting-menu-ul{
    padding: 0;
    margin: 0;
}
.setting-menu-ul li{
    list-style-type: none;
    border-bottom: 1px solid #cccccc;
    padding: 10px 15px;
}
.setting-menu-ul li a{
    list-style-type: none;
    font-size: 15px;
    color: var(--secondaryColor);
}
.setting-menu-ul li a span.icon{
    font-size: 17px;
    margin-right: 10px;
    color: var(--primaryColor);
    width: 20px;
    display: inline-block;
    text-align: center;
}
.title-header{
    background: linear-gradient(to right, rgba(255, 0, 0, 0.1), transparent);
    padding: 10px;
    margin-bottom: 8px;
}

/*Timeline*/
.service-timeline {
    position: relative;
    margin: 15px auto 15px auto;
}

.service-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 14px;
    width: 2px;
    border-left: 2px dashed #ddd;
}

.service-timeline .timeline-step {
    position: relative;
    margin-left: 53px;
    padding: 0 0 13px 0;
}

.service-timeline .timeline-left {
    position: absolute;
    left: -57px;
    top: 0px;
}

.service-timeline .step-number {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background-color: #ededed;
    padding: 5px;
    border-radius: 50%;
    border: 2px solid var(--primaryColor);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-timeline .timeline-content {
    padding: 10px;
    background-color: #f8f8f8;
    border: 1px solid #999999;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-timeline .timeline-content h3 {
    margin: 0;
    font-size: 14px;
}

.service-timeline .timeline-content p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
}
/*Timeline*/

/*Privider CSS*/
.booking-card{
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #ededed;
    padding: 9px 11px;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.08);
    margin-bottom: 10px;
}
.serviceLocationUL{
    padding: 0;
    margin: 0;
}
.serviceLocationUL li{
    list-style-type: none;
    padding: 5px;
    background-color: #ffffff;
    margin-bottom: 3px;
    border-bottom: 1px solid #cccccc;

}
.accordion-button{
    border-radius: 8px;
}
.accordion-body {
    background-color: #f8f8f8;
}
.schedule-calendar {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    border: 1px solid var(--primaryColor);
    margin-bottom: 10px;
}

.schedule-calendar .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.schedule-calendar .calendar-header h2 {
    font-size: 18px;
    color: #000000;
}


.schedule-calendar .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #000000;
    height: 28px;
    width: 28px;
}
.schedule-calendar .day-label{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
}

.schedule-calendar .day {
    border-radius: 50%;
    margin: 8px;
}
.schedule-calendar .day.today{
    background-color: var(--secondaryColor);
    color: #fff;
}
.schedule-calendar .day.active {
    background-color: var(--primaryColor);
    color: #fff;
}

.schedule-calendar .day.prev-month, .day.next-month {
    color: #ccc;
}
/*Privider CSS*/

.profile-container {
    position: relative;
}

.profile-pic {
    position: relative;
    width: 110px;
    height: 110px;
    border: 2px solid #f04b4b;
    border-radius: 50%;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-upload-icon{
    height: 30px;
    width: 30px;
    position: absolute;
    right: -5px;
    bottom: 0px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--primaryColor);
}

/*Multiple images upload box*/
.upload-box {
    width: 100%;
    height: 180px;
    border: 2px dashed #999999;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-content {
    pointer-events: none;
}

.upload-content .icon {
    font-size: 18px;
    color: var(--secondaryColor);
}

.upload-content p {
    margin-top: 5px;
}
.upload-preview-box {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.upload-preview-box .preview-box{
    width: 150px;
    height: 120px;
    border: 2px dashed #999999;
    border-radius: 5px;
    position: relative;
}
.upload-preview-box img,
.upload-preview-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.upload-preview-box .remove-icon{
    height: 25px;
    width: 25px;
    background-color: #ff0000;
    color: #ffffff;
    position: absolute;
    right: -11px;
    top: -8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* learning video css */
.learning-card{
    height: 100%;
    width: 100%;
    object-fit: inherit;
    max-height:160px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 160px;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 10px;
}

.video-container i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    z-index: 20;
    cursor: pointer;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: none;
}

/*Multiple images upload box*/

.posts-card{
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #ededed;
    padding: 9px 11px;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.08);
    margin-bottom: 8px;
}
.posts-card .post-image{
    width: 120px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}
.posts-card .post-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.posts-card .post-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
}
.faq-accordion .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d353c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed){
    color: var(--primaryColor);
}

/*Counter*/
.counter-container {
    display: flex;
    align-items: center;
}

button.plus-btn, button.minus-btn{
    width: 30px;
    height: 30px;
    background-color: var(--secondaryColor);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.counter-input {
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    border: unset;
    border-radius: 5px;
}
/*Counter*/
.fixed-bottom-div{
    width: 100%;
    padding: 10px;
    position: fixed;
    height: 75px;
    bottom: 0;
    box-shadow: 1px 1px 6px 1px rgba(0,0,0,0.2);
    background-color: #ffffff;
}

.messenger .messenger-chat .messenger-chat-list .messenger-chat-item .messenger-chat-link .messenger-chat-content {
    flex: 1;
    max-width: calc(100% - 60px);
    padding-left: .703125rem;
}

.notification-box{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #cccccc;
    padding: 10px;
}
#faqListPage .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d353c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#faqListPage .accordion-item{
    background-color: unset;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.verify-mobile-link{
    position: absolute;
    right: 15px;
    top: 30px;
    color: var(--primaryColor);
    text-decoration: underline;
    font-weight: 600;
    font-size: 15px;
}
.mobile-verified{
    position: absolute;
    right: 15px;
    top: 32px;
    font-weight: 600;
    font-size: 14px;
}
.profile-verify-tag{
    position: absolute;
    bottom: 8px;
    right: 0;
}
ul.upload-document-list{
    padding: 0;
}
ul.upload-document-list li{
    padding: 8px 5px;
    border-bottom: 1px solid #cccccc;
}
.chat-message-input{
    height: 75px;
    padding-bottom: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.send-message-icon{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: var(--primaryColor);*/
    border-radius: 50%;
}
.send-message-icon svg{
    height: 22px;
    width: 22px;
}
.bankProofImageDiv .file-upload-container {
    display: inline-block;
    position: relative;
    float:right;
}

.bankProofImageDiv .custom-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--primaryColor);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.bankProofImageDiv .custom-upload-button:hover {
    background: var(--primaryColor);
}
.bankProofImageDiv .file-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.bank-proof.image-preview-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.bank-proof .image-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.service-proof-holder .file-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.service-proof.image-preview-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.service-proof .image-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.user-email-ellipse{
    width: 220px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.custom-radio-button {
    margin: 0 5px 0 0;
    width: 50%;
    height: 40px;
    position: relative;
}
.custom-radio-button label,
.custom-radio-button input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.custom-radio-button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}
.custom-radio-button input[type="radio"]:checked + label {
    background-color: var(--primaryColor);
    border-radius: 25px;
    color: #ffffff !important;
}

.custom-radio-button label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.4rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.slot-booking-section{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #ffffff;
}

.slot-date-selector {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 5px;
    padding: 10px 0;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 400px; /* Width to fit 7 items */
}

.slot-date-selector .date-item {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    min-width: 45px; /* Adjust based on desired box size */
    width: 14.28%;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    flex: 0 0 auto;
}

.slot-date-selector .date-item input[type="radio"] {
    display: none;
}

.slot-date-selector .date-item span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #000;
    transition: all 0.3s ease;
}

.slot-date-selector .date-item span strong {
    font-size: 14px;
    color: #888;
}

.slot-date-selector .date-item span em {
    font-size: 10px;
}

.slot-date-selector .date-item input[type="radio"]:checked + span {
    background-color: var(--primaryColor);
    color: #fff;
    border-color: var(--primaryColor);
    border-radius: 30px;
    width: 100%;
    height: 100%;
}

.slot-date-selector .date-item input[type="radio"]:checked + span strong,
.slot-date-selector .date-item input[type="radio"]:checked + span span {
    color: #fff;
}
.time-slots-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust columns as per design */
    gap: 10px;
}

.time-slots-holder .time-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.time-slots-holder .time-slot input[type="radio"] {
    display: none;
}

.time-slots-holder .time-slot input[type="radio"]:checked + span {
    background-color: var(--primaryColor);
    color: #fff;
    border-color:var(--primaryColor);
    font-weight: 600;
}

.time-slots-holder .time-slot input[type="radio"]:disabled + span {
    background-color: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
}

.time-slots-holder .time-slot span {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fullscreen-image {
    max-width: 80%;
    max-height: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-fullscreen {
    position: absolute;
    top: 40px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}
.close-fullscreen:hover {
    color: red;
}

.disabled{
    pointer-events: none;
    opacity: .6;
}

/*Rating*/
.overall-rating-stars span.service-rating > i.fa{
    color:#ccc; /* Color on idle state */
}
.overall-rating-stars span.service-rating.selected > i.fa{
    color:#FF912C;
}
.ratings ul{
    padding: 0;
    margin: 0;
}
.ratings ul li{
    display: inline-block;
    list-style-type: none
}
.ratings ul li.star > i.fa {
    color:#ccc; /* Color on idle state */
}
.ratings ul li.star.hover > i.fa {
    color:#FFCC36;
}
.ratings ul li.star.selected > i.fa {
    color:#FF912C;
}

.nsm7Bb-HzV7m-LgbsSe {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background-color .218s, border-color .218s;
    transition: background-color .218s, border-color .218s;
    -webkit-user-select: none;
    -webkit-appearance: none;
    background-color: #ffffff00!important;
    background-image: none;
    border: none !important;
    color: #ffffff!important;
    cursor: pointer;
    font-family: "Google Sans", arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
}

.messenger .messenger-chat .messenger-chat-list .messenger-chat-item .messenger-chat-link .messenger-chat-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--bs-component-color-rgb), .35);
    font-weight: 600;
    font-size: .75rem;
    width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
}

/*New Location page*/
ul.search-locations-ul{
    margin-bottom: 0;
    padding: 0;
}
.search-locations-ul li{
    list-style-type: none;
    padding: 5px 10px;
    border-bottom: 1px solid #cccccc;
}

/* Gift Card Style */

.image-container {
    width: 289px;
    height: 135px;
    border-radius: 8px;
    border: 1px solid #F35F5D;
    margin-bottom: 3%;
}

.image-container img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.gift-card-image{
    width: 360px;
    height: 180px;
}

.gift-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-text-area{
    border-radius: 15px;
}

.gift-label{
    color: #6A6A6A;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.my-gift-card {
    width: 100%;
    height: 106px;
}

.gift-card-part{
    border: 1px solid #F35F5D;
    border-radius: 8px;
    width: 289px;
    margin-bottom: 3%;
}

.my-gift-card img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    object-fit: cover;
}

.next-icon{
    background: #F35F5D;
    color: #ffffff;
    padding: 0 5px;
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
}

.next-icon i {
    margin-top: 6px;
}

.check-icon{
    background: green;
    color: #ffffff;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    text-align: center;
}

.check-icon i {
    margin-top: 6px;
}

.image-part{
    width: 150px;
}

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

.slot-count {
    background-color: var(--primaryColor);
    padding: 6px 10px;
    color: #ffffff;
    border-radius: 5px;
}

.full-address {
    font-size: 13px;
    color: #626262;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.next-btn {
    display: block;
    height: 21px;
    width: 21px;
    border-radius: 50%;
    background-color: var(--primaryColor);
    text-align: center;
}

.post-details-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}
.post-details-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}