:root {
    --text-dark: #1C1C1C;
    --black: #000;
    --site-danger: #D90865;
    --white: #ffffff;

    --fw-light: 300;
    --fw-medium: 500;
}

body {
    line-height: 1.65;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}


.filter-white {
    filter: brightness(0) invert(1);
}

.filter-black {
    filter: brightness(0) saturate(100%);
}

.justify-self-center {
    justify-self: center;
}

.site_header {
    padding: 31px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999
}

.site_header .header_container {
    width: 100%;
    padding: 0 48px;
    max-width: 1920px;
    margin-inline: auto
}

.site_header .header_row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between
}

.site_header .header_row .left_part {
    display: flex;
    align-items: center;
    gap: 48px
}

.site_header .header_row .left_part .dwnld {
    display: flex;
    align-items: center;
    gap: 8px
}

.site_header .header_row .left_part .dwnld a img {
    max-width: 20px;
}

.site_header .header_row .left_part .dwnld span {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--text-dark)
}

.site_header .header_row .left_part a.site_link {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--text-dark)
}

.site_header .header_row .right_part {
    display: flex;
    align-items: center;
    gap: 10px
}

.site_header .header_row .right_part a.solid_cta,
.site_header .header_row .right_part a.outline_cta{
    padding: 0.5em 2em;
} 

.username-under-dropdown {
    padding: 0.5em 0.5em 0.85em 0.5em;
    margin-block-end: 0.5em;
    border-bottom: 1px solid #ede4e4;
}

a.solid_cta,
a.outline_cta {
    display: inline-block;
    font-size: 1rem;
    padding: 0.75em 2em;
    border-radius: 1000em;
    font-weight: 500;
    transition: .3s all;
    border: 1px solid var(--text-dark)
}

a.solid_cta {
    background: var(--text-dark);
    color: var(--white);
}

a.solid_cta:hover {
    background: rgba(0, 0, 0, 0);
    color: var(--text-dark)
}

a.outline_cta {
    background: rgba(0, 0, 0, 0);
    color: var(--text-dark);

}

a.outline_cta:hover {
    background: var(--text-dark);
    color: var(--white)
}

.home_banner {
    position: relative;
    min-height: 750px
}

.home_banner .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/bg_gradient.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%
}

.home_banner .bg_layer img {
    width: 100%
}

@-moz-document url-prefix() {
    @media (min--moz-device-pixel-ratio:0) {
        .home_banner .bg_layer {
            opacity: 0.3;
        }

        .home_banner .bg_layer img {
            backdrop-filter: blur(200px);
        }
    }
}



.home_banner {
    padding: 150px 15px 50px;
    z-index: 1;
    position: relative
}

.home_banner .txt_layer h1 {
    text-align: center;
    font-family: var(--ff-heading);
    font-size: 2rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase
}

.home_banner .txt_layer h2 {
    text-align: center;
    margin-block-start: 0.8em;
    font-weight: 700;
    font-size: 64PX;
    line-height: 1.10;
    color: var(--text-dark)
}

.home_banner .txt_layer p {
    margin-block-start: 0.85em;
    font-size: 30px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    margin: 10px 0 0;
}

.home_banner .txt_layer .site_container{text-align: center;}

.search_block {
    width: 100%;
    max-width: 1232px;
    margin-block-start: 60px;
    /* top */
    margin-block-end: 0;
    /* bottom */
    margin-inline: auto;
    /* left & right */
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 3.125rem;
    height: auto;
    box-shadow: 0px 0px 37px rgba(0, 0, 0, .05)
}

.search_block:focus-within,
.search_block.select-dropdown-focused {
    background: #f7f7f7;
}

.search_block .field {
    max-width: 100%;
    padding: 10px 1.25em;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.search_block .field:not(:nth-child(4)):not(:last-child):after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 20px);
    width: 1px;
    background: #ddd;
    z-index: -2
}

.search_block .field span.bg {
    background: var(--white);
    border-radius: 50px;
    transition: .3s all;
    position: absolute;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, .08)
}

.search_block .field label {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.search_block .field input {
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border: 0;
    outline: 0;
    line-height: 2 !important;
    font-weight: inherit !important;
}

.search_block .field:focus-within span.bg,
.search_block .field .select2-container--open+span.bg,
.search_block .field .select2-container--focus+span.bg {
    opacity: 1
}

.search_block .field input:focus+.field::after {
    display: none
}

.search_block .field ::-moz-placeholder {
    color: #a7a7a7;

}

.search_block .field ::placeholder {
    color: #a7a7a7;
}

.search_block .field:first-child {
    flex: 2;
    /* width: 400px; */
}

.search_block .field:first-child span.bg {
    width: calc(100% + 10px);
}

.search_block .field:nth-child(2) {
    /* width: 280px; */
    flex: 2;
}

.search_block .field:nth-child(3) {
    /* width: 220px; */
    flex: 1;
}

.search_block .field:nth-child(4) {
    flex: 1;
}

.search_block .field:nth-child(2) span.bg,
.search_block .field:nth-child(3) span.bg,
.search_block .field:nth-child(4) span.bg {
    inset-inline-start: -10px;
    width: calc(100% + 20px)
}

.search_block .field:last-child {
    padding: 1.125em 1.5em;
}

.search_block .field:last-child .search_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--clr-pink);
    border: 0
}

.search_block .field:last-child .search_btn:hover {
    background: var(--clr-logo);
}

.search_block .field:last-child .search_btn span {
    font-size: 1rem;
    line-height: 1;
    font-weight: bold;
    color: var(--white)
}

.search_block .field:last-child .search_btn img {
    margin-block-start: -2.25px;
    width: 1.15em;
}


body .search_block .select2-container .select2-selection--single {
    background-color: transparent;
    border: none;
}

body .search_block .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}

body .search_block .select2-container--default .select2-selection--single .select2-selection__clear,
body .search_block .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

body .search_block .select2-container--default .select2-selection--single {
    height: auto;
}

.home_banner .counter_block {
    margin-block-start: 4rem;
    /* top */
    margin-block-end: 0;
    /* bottom */
    margin-inline: 0;
    /* left & right */
    display: flex;
    justify-content: center;
}

.home_banner .counter_block .c_item {
    position: relative;
    padding: 0 3em;
}

.home_banner .counter_block .c_item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 50px;
    background: #ddd;
    transform: translateY(-50%)
}


.home_banner .counter_block .c_item .inner {
    display: flex;
    gap: 1em;
    align-items: flex-start;
    flex-wrap: wrap;
}

.home_banner .counter_block .c_item .inner img {
    margin-block-start: 5px
}

.home_banner .counter_block .c_item .inner .txt_block p.title {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-dark);
}

.home_banner .counter_block .c_item .inner .txt_block p.txt {
    font-size: 18px;
    line-height: 1.25;
    margin-block-start: 0.25em;
    color: #555555;
}

.sliders_block {
    padding-block-end: 2rem;
}

.sliders_block .slider_block_item {
    margin-block-end: 4rem;
}

.sliders_block h3.title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0
}

.sliders_block .owl_slider {
    margin-block-start: 30px
}

.sliders_block .slide_item {
    position: relative
}

.sliders_block .slide_item .slide_link {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.sliders_block .slide_item .img_block {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden
}

.sliders_block .slide_item .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.sliders_block .service_slider p.title {
    font-size: 1.25rem;
    line-height: 27px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 10px 0 0 0
}

.sliders_block .service_info {
    margin-block-start: 10px
}

.sliders_block .service_info p.title,
.sliders_block .service_info p.titleX2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0
}

.sliders_block .service_info p.titleX2 {
    font-size: 1.125rem;
}

.sliders_block .service_info span.address {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #4A4A4A;
    margin: 8px 0;
}

.sliders_block .service_info .review {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sliders_block .service_info .review img {
    width: 1rem
}

.sliders_block .service_info .review p {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0
}

.sliders_block .service_info a.outline_cta {
    padding: 4px 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-block-start: 16px;
    margin-inline-start: 1px
}

.sliders_block .service_info .rating_block2{display: flex; align-items: center; gap: 5px}
.sliders_block .service_info .rating_block2 .material-icons{ font-size:  22px;}


.custom-nav button.owl-prev span,
.custom-nav button.owl-next span,
.sliders_block .owl-carousel .owl-nav button span {
    display: none;
}


.custom-nav button.owl-next,
.custom-nav button.owl-prev,
.sliders_block .owl-carousel .owl-nav button.owl-next,
.sliders_block .owl-carousel .owl-nav button.owl-prev {
    width: 2.5em;
    height: 2.5em;
    background: #FFFFFF;
    border: 1px solid #ADADAD;
    border-radius: 999px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMjUgMC43NUw4LjM1NjI1IDEuNjIwNjNMMTMuMDkzOCA2LjM3NUgwLjVWNy42MjVIMTMuMDkzOEw4LjM1NjI1IDEyLjM1ODFMOS4yNSAxMy4yNUwxNS41IDdMOS4yNSAwLjc1WiIgZmlsbD0iIzFDMUMxQyIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1em;
}

.custom-nav button.owl-prev,
.sliders_block .owl-carousel .owl-nav button.owl-prev {
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.custom-nav button.owl-next,
.sliders_block .owl-carousel .owl-nav button.owl-next {
    right: 0;
}


.custom-nav button.owl-next.disabled,
.custom-nav button.owl-prev.disabled,
.sliders_block .owl-carousel .owl-nav button.owl-next.disabled,
.sliders_block .owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}


.sliders_block .owl-carousel .owl-nav {
    position: absolute;
    display: inline-flex;
    gap: 1em;
    top: calc(-30px + -2.5em);
    inset-inline-end: 0;
}

/************ TESTIMONIALS ************/

.testimonial_slider {
    position: relative;
}

.testimonial_slider .bg_layer {
    position: absolute;
    width: 100%;
    height: 45%;
    top: 0;
    inset-inline-start: 0;
}

.testimonial_slider .bg_layer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.testimonial_slider .txt_layer {
    padding-block-start: 6.25rem;
    /* top */
    padding-block-end: 3.125rem;
    /* bottom */
    padding-inline: 0;
    /* left & right */
    z-index: 1;
    position: relative
}

.testimonial_slider .txt_layer h3 {
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white)
}

.testimonial_slider .txt_layer .slider_block {
    margin-block-start: 20px
}

.testimonial_slider .txt_layer .rev_item {
    padding: 2rem;
    border-radius: 10px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 3px 30px rgba(0, 0, 0, .06);
    margin-block-end: 30px
}

.testimonial_slider .txt_layer .rev_item .top_part .header {
    display: flex;
    align-items: center;
    gap: 24px
}

.testimonial_slider .txt_layer .rev_item .top_part .header .avatar {
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    overflow: hidden
}

.testimonial_slider .txt_layer .rev_item .top_part .header .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.testimonial_slider .txt_layer .rev_item .top_part .header h4.name {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0
}

.testimonial_slider .txt_layer .rev_item .top_part p {
    margin: 1em 0 0 0;
    font-size: 1.375rem;
    line-height: 1.65;
    color: var(--black)
}

.testimonial_slider .txt_layer .rev_item .review_stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.testimonial_slider .owl-carousel .owl-nav {
    position: absolute;
    margin: 0;
    top: -4.5rem;
    right: 0;
}

.testimonial_slider .owl-carousel .owl-nav button span {
    display: none;
}

.testimonial_slider .owl-carousel .owl-nav button.owl-next,
.testimonial_slider .owl-carousel .owl-nav button.owl-prev {
    width: 3rem;
    height: 3rem;
    background: #1C1C1C;
    border-radius: 999px;
    margin-inline-start: 0.75rem;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjI1IDMuNzVMMTAuMzU2MiA0LjYyMDYzTDE1LjA5MzggOS4zNzVIMi41VjEwLjYyNUgxNS4wOTM4TDEwLjM1NjIgMTUuMzU4MUwxMS4yNSAxNi4yNUwxNy41IDEwTDExLjI1IDMuNzVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;

}

.testimonial_slider .owl-carousel .owl-nav button.owl-prev {
    transform: matrix(-1, 0, 0, 1, 0, 0);
}


.testimonial_slider .owl-carousel .owl-nav button.owl-next.disabled,
.testimonial_slider .owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}


.testimonial_slider .owl-carousel .owl-dots {
    text-align: center;
}

.testimonial_slider .owl-carousel button.owl-dot {
    width: 31.25px;
    height: 5px;
    background: #E6E6E6;
    border-radius: 39px;
    margin: 0 0.5em;
}

.testimonial_slider .owl-carousel button.owl-dot.active {
    background: #1D1D1D;
}




/************ DOWNLOAD APP ************/

.download_app_block {
    padding-block-start: 2rem;
    padding-block-end: 3rem;
}

.download_app_block .inner_container {
    color: #1C1C1C;
    border: 1px solid #595959;
    border-radius: 1.25rem;
    background-image: url('./../img/downloadAppBg.svg');
    background-repeat: no-repeat;
    background-position: center var(--inline-end);
    padding-block-start: 5rem;
    /* top */
    padding-block-end: 0;
    /* bottom */
    padding-inline: 5rem;
    /* left & right */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download_app_content {
    max-width: 42%;
}

.download_app_content h4 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    color: #000000;
    margin-block-end: 0.5em;
}

.download_app_content p {
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.5;
    color: #212121;
    margin-block-end: 2em;
}

.download_app_content .download_app_links {
    grid-template-columns: auto auto;
}


/************** DOWNLOAD APP COMMON **************/
.download_app_links {
    display: inline-grid;
    gap: 1rem;
    font-size: var(--downloadAppSize, 1rem);
}

.download_app_links a {
    display: inline-grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 0 1em;
    border: 2px solid currentColor;
    border-radius: 100em;
    padding: 0.8em 1.85em;
}


.download_app_links svg {
    grid-row: 1/span 2;
    grid-column: 1;
    width: 1.625em;
    height: auto;
}

.download_app_links span {
    grid-column: 2;
    font-size: 0.8125em;
    color: inherit;
    font-weight: 500;
}

.download_app_links p {
    grid-column: 2;
    font-size: 1.25em;
    line-height: 1;
    margin-block-end: 0 !important;
}

.download_app_screens {
    max-width: 51%;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
    gap: 2rem;
}



/************ GROWTH SOFTWARE ************/
.growth_software_block {
    text-align: center;
    color: #212121;
    padding: 2rem;
    padding-block-end: 3rem;
}

.growth_software_block h5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 140%;
    color: #1C1C1C;
    text-wrap: balance;
    margin-block-end: 0.3em;
}

.growth_software_block p {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 160%;
    text-wrap: balance;
    margin-block-end: 2em;
}

.growth_software_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.growth_software_grid>div {
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    padding: 3rem 1.5rem;
}

.growth_software_grid h6 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 110%;
    color: #333333;
}

.growth_software_grid p {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 150%;
    margin-block-end: 0;
    margin-block-start: 0.5em;
}



/************ GROWTH BUSINESS ************/
.growth_business_block {
    background-image: url(./../img/growthBusninessBg.png), url(./../img/growthBusninessBgLeft.png);
    background-size: 50%, contain;
    background-repeat: no-repeat;
    background-position: bottom var(--inline-end), bottom var(--inline-start);
    padding-block-start: 10rem;
    padding-block-end: 10rem;
}

/* RTL override */
@media(min-width: 576px) {
    [dir="rtl"] .growth_business_block {
        background-size: 50%, 0%;
    }
}

.growth_business_content {
    max-width: 35%;
}

.growth_business_content h4 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    color: #000000;
    margin-block-end: 0.5em;
}

.growth_business_content p {
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.5;
    color: #212121;
    margin-block-end: 2em;
}

.growth_business_content .solid_cta {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 120%;
    padding: 1em 2em;
}


/************ FOOTER ************/
footer {
    background-color: #1c1c1c;
    color: #fff;
    padding-block-start: 5rem;
}

footer .inner_container {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
    margin-block-end: 5rem;
}

footer a:hover {
    color: #fff;
}

footer ul {
    list-style: none;
}

.footer_social {
    padding-inline-end: 1.5rem;
    margin-inline-end: 3rem;
    border-inline-end: 1px solid #474747;
}

.footer_social h2 {
    font-family: var(--ff-body);
    font-size: 1.125rem;
    margin-block-end: 1em;
}


.footer_social ul {
    display: grid;
    grid-auto-flow: column;
    gap: 1em;
    justify-content: start;
}

.footer_social ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    border: 1px solid #777777;
}


.footer_social ul a:hover {
    background-color: #fff;
    border-color: #fff;
}

.footer_social ul a:hover img {
    filter: saturate(0%) brightness(70%) contrast(1000%);
}

footer h6 {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 110%;
    margin-block-end: 1.5em;
}

.footer_menu li:not(:last-child) {
    margin-block-end: 1em;
}

.footer_menu a {
    display: inline-block;
    color: #CECECE;
}

.footer_app-download .download_app_links a {
    padding: 0.65rem 1.8rem;
    color: #CECECE;
}

.footer_app-download .download_app_links a:hover {
    background: #fff;
    color: #1c1c1c;
}

.footer_copyright {
    font-weight: 500;
    font-size: 0.875rem;
    color: #A2A2A2;
    border-top: 1px solid #414141;
    padding: 2em;
    text-align: center;
}

.footer_copyright br {
    display: none;
}

.footer_copyright p {
    margin-block-end: 0;
}


.li-info-list ul {
    padding-inline-start: 0;
    list-style: none;
}

.li-info-list ul li {
    display: grid;
    grid-template-columns: 1.15em 1fr;
    align-items: start;
    gap: 0.85em;
    font-weight: 400;
    font-size: 1.125rem;
    color: #4A4A4A;
}

.li-info-list ul li:not(:last-child) {
    margin-block-end: 1em;
}


.li-info-list.li-info-list-style-2 ul li {
    font-size: 1rem;
    gap: 0.5em;
    line-height: 1;
}

.li-info-list.li-info-list-style-2 ul li:not(:last-child) {
    margin-block-end: 0.65em;
}

/* INNER SEARCH BLOCK */
.inner-search .search_block {
    margin: 0;
    position: relative;
    z-index: 100;
}

.search-overlay {
    background: #79797991;
    position: fixed;
    inset: 0;
    z-index: 10;
    display: none;
}

@media(min-width: 992px) {
    .inner-search {
        flex: 1;
    }

    .inner-search .search_block {
        max-width: 56.25rem;
        margin: 0 auto;
        box-shadow: 0 0 0 100vw transparent;
        transition: max-width 0.2s ease-out,
            box-shadow 0.2s ease-out;
    }

    .inner-search .search_block.search-active {
        /* box-shadow: 0 0 0 100vw #79797991; */
        max-width: 80rem;
    }

    #searchForm:has(.search-active)+.search-overlay {
        display: block;
    }

    .inner-search .search_block:not(.search-active) .field:not(.has-value) input {
        width: 100%;
        opacity: 0;
    }

    .inner-search .search_block:not(.search-active) .field.has-value label {
        opacity: 0;
    }

    .inner-search .search_block:not(.search-active) {
        background-color: #fff;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjI4MjYgMTUuMjE3NkwxMy41MDAxIDEyLjQ1NzZDMTQuNTgwMSAxMS4xMTA5IDE1LjEwMzIgOS40MDE1MiAxNC45NjE3IDcuNjgxMDJDMTQuODIwMSA1Ljk2MDUzIDE0LjAyNDggNC4zNTk2NCAxMi43MzkyIDMuMjA3NTNDMTEuNDUzNiAyLjA1NTQzIDkuNzc1NDEgMS40Mzk2OCA4LjA0OTc0IDEuNDg2OUM2LjMyNDA4IDEuNTM0MTIgNC42ODIwOSAyLjI0MDcyIDMuNDYxNDEgMy40NjE0MUMyLjI0MDcyIDQuNjgyMDkgMS41MzQxMiA2LjMyNDA4IDEuNDg2OSA4LjA0OTc0QzEuNDM5NjggOS43NzU0IDIuMDU1NDMgMTEuNDUzNiAzLjIwNzUzIDEyLjczOTJDNC4zNTk2NCAxNC4wMjQ4IDUuOTYwNTMgMTQuODIwMSA3LjY4MTAzIDE0Ljk2MTdDOS40MDE1MyAxNS4xMDMyIDExLjExMDkgMTQuNTgwMSAxMi40NTc2IDEzLjVMMTUuMjE3NiAxNi4yNkMxNS4yODczIDE2LjMzMDMgMTUuMzcwMiAxNi4zODYxIDE1LjQ2MTYgMTYuNDI0MkMxNS41NTMgMTYuNDYyMyAxNS42NTEgMTYuNDgxOSAxNS43NTAxIDE2LjQ4MTlDMTUuODQ5MSAxNi40ODE5IDE1Ljk0NzEgMTYuNDYyMyAxNi4wMzg1IDE2LjQyNDJDMTYuMTI5OSAxNi4zODYxIDE2LjIxMjggMTYuMzMwMyAxNi4yODI2IDE2LjI2QzE2LjQxNzcgMTYuMTIwMiAxNi40OTMzIDE1LjkzMzMgMTYuNDkzMyAxNS43Mzg4QzE2LjQ5MzMgMTUuNTQ0MyAxNi40MTc3IDE1LjM1NzQgMTYuMjgyNiAxNS4yMTc2Wk04LjI1MDA1IDEzLjVDNy4yMTE3IDEzLjUgNi4xOTY2NyAxMy4xOTIxIDUuMzMzMzEgMTIuNjE1M0M0LjQ2OTk1IDEyLjAzODQgMy43OTcwNCAxMS4yMTg1IDMuMzk5NjggMTAuMjU5MUMzLjAwMjMyIDkuMjk5ODMgMi44OTgzNiA4LjI0NDIzIDMuMTAwOTMgNy4yMjU4M0MzLjMwMzUgNi4yMDc0MyAzLjgwMzUxIDUuMjcxOTcgNC41Mzc3NCA0LjUzNzc0QzUuMjcxOTcgMy44MDM1MSA2LjIwNzQzIDMuMzAzNSA3LjIyNTgzIDMuMTAwOTNDOC4yNDQyMyAyLjg5ODM2IDkuMjk5ODMgMy4wMDIzMiAxMC4yNTkxIDMuMzk5NjhDMTEuMjE4NSAzLjc5NzA0IDEyLjAzODQgNC40Njk5NSAxMi42MTUzIDUuMzMzMzFDMTMuMTkyMSA2LjE5NjY2IDEzLjUwMDEgNy4yMTE3IDEzLjUwMDEgOC4yNTAwNUMxMy41MDAxIDkuNjQyNDQgMTIuOTQ2OSAxMC45Nzc4IDExLjk2MjQgMTEuOTYyNEMxMC45Nzc4IDEyLjk0NjkgOS42NDI0NCAxMy41IDguMjUwMDUgMTMuNVoiIGZpbGw9IiM4MzgzODMiLz4KPC9zdmc+Cg==");
        background-repeat: no-repeat;
        background-position: var(--inline-start) 1.25rem center;
        background-size: 1.25rem;
        padding-inline-start: 1.65rem;
    }

    .inner-search .search_block:not(.search-active) .field label {
        position: absolute;
        top: 0.66em;
        pointer-events: none;
    }

    .inner-search .search_block:not(.search-active) .field {
        padding: 0.5em 1.5em;
    }

    .inner-search .search_block:not(.search-active) .field:last-child {
        padding: 0;
    }

    .inner-search .search_block:not(.search-active) .field:last-child .search_btn {
        transform: translateX(-100%);
        opacity: 0;
        display: none;
    }

    .search_block .field:first-child {
        padding-inline-start: 2em;
    }

    body.overflow-hidden .salon-location iframe {
        pointer-events: none;
    }
}


.salong-hub__top-nav {
    background-color: #fff;
    padding: 1rem 0;
}

/* BREADCUMBS */
.salong-hub__breadcrumbs {
    border-bottom: 1px solid #eee;
}

.salong-hub__breadcrumbs ul {
    font-size: 0.875rem;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: start;
    gap: 0.5em;
    color: #000;
    padding: 1.25em 0;
    list-style: none;
}

.salong-hub__breadcrumbs ul a {
    color: #4A4A4A;
}

.salong-hub__breadcrumbs ul a:hover {
    color: var(--clr-pink);
}

.salong-hub__breadcrumbs ul li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNSAxMi43NUwxMS4yNSA5TDcuNSA1LjI1IiBzdHJva2U9IiNBMkEyQTIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    vertical-align: middle;
    margin-inline-start: 0.5em;
}

.salong-hub__breadcrumbs.steps ul {
    color: #8D8D8D;
}

.salong-hub__breadcrumbs.steps .step-completed,
.salong-hub__breadcrumbs.steps .step-current {
    color: #1C1C1C;
}

.salong-hub__breadcrumbs.steps ul li a {
    color: inherit;
}

/* SALON LISTING */
.salon-listing {
    overflow: hidden;
}

.salon-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.salon-listing>* {
    padding: 2rem;
    background: #FFFFFF;
    border-inline-start: 1px solid #dfdfdf;
}

.searchedvalues {
    padding: 0.5rem 1rem;
    border: 1px solid rgb(207 207 207);
    border-radius: 0.5rem;
    margin-block-end: 1.5rem;
    display: grid;
    grid-auto-flow: column;
    align-items: end;
    gap: 1rem;
    justify-content: space-between;
}

.salon-listing__header h5 {
    font-weight: var(--fw-medium);
    font-size: 2rem;
    line-height: 1.3;
    margin-block-end: 0.2em;

}

.salon-listing__header p {
    color: #8b8b8b;
}

.salon-listing__header p span {
    color: var(--text-dark);
}

.salon-card .salon-card__content {
    margin-block-start: 1rem;
}

.salon-card__figs {
    border-radius: 0.5rem;
    overflow: hidden;
}

.salon-card__figs figure {
    aspect-ratio: 1 / 0.675;
    overflow: hidden;
}

.salon-card__figs figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-card__content {
    display: grid;
    gap: 0.5rem;
}

.salon-card__content h6 {
    font-size: var(--salong-heading, 1.25rem);
    font-weight: 500;
    color: #1C1C1C;
    line-height: 1.35;
}

.salon-card__content span,
.salon-card__content p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #929292;
}

.salon-card__services {
    margin-block-start: 1rem;
    /*border-top: 1px solid #eaeaea;*/
    border: 1px solid #eaeaea;
    border-width: 1px 0 1px 1px;
}

.salon-card__serviceRow {
    background: var(--serviceRowBg, #FFFFFF);
    /*border-inline-end: 1px solid #eaeaea;*/ 
    border: 1px solid #eaeaea; 
    display: grid;
    grid-template-columns: 1fr auto; 
    align-items: start;
    gap: 2rem;
    padding: 0.85rem;
}

.salon-card__serviceRow.cell-3 {
    grid-template-columns: 1fr auto auto;
    padding: 1.25rem;
}

.salon-card__serviceRow h5,
.salon-card__serviceRow>p {
    font-size: 1.125rem;
    color: #1C1C1C;
    font-weight: 500;
}

.salon-card__serviceRow time,
.salon-card__serviceRow>div>p {
    font-weight: 400;
    color: #7A7A7A;
}

.salon-card__serviceRow.addBtn {
    position: relative;
    z-index: 1;
}

.salon-card__serviceRow.addBtn .bookNowChkbox input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
}

.salon-card__serviceRow.addBtn .bookNowChkbox .bg-outer {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.salon-card__serviceRow.addBtn .bookNowChkbox .check-circle {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--chkCircleBg, #F0F0F0);
    color: var(--chkCircleClr);
    position: relative;
    cursor: pointer;
    transition: all 0.25s;
}

.salon-card__serviceRow.addBtn .bookNowChkbox .check-circle::before,
.salon-card__serviceRow.addBtn .bookNowChkbox .check-circle::after {
    content: '';
    background-color: currentColor;
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 100px;
    transition: all 0.2s;
}

.salon-card__serviceRow.addBtn .bookNowChkbox .check-circle::before {
    width: 2px;
    height: 45%;

}

.salon-card__serviceRow.addBtn .bookNowChkbox .check-circle::after {
    height: 2px;
    width: 45%;
}

.salon-card__serviceRow.addBtn .bookNowChkbox input[type="checkbox"]:checked~.bg-outer {
    background-color: #FEF7F7;
}

.salon-card__serviceRow.addBtn .bookNowChkbox input[type="checkbox"]:checked~.check-circle {
    --chkCircleBg: var(--clr-pink);
    --chkCircleClr: #fff;
}


.salon-card__serviceRow.addBtn .bookNowChkbox input[type="checkbox"]:checked~.check-circle::before {
    width: 2px;
    height: 48%;
    transform: rotate(50deg) translate(0.1em, -0.1em);
    border-radius: 0;
}

.salon-card__serviceRow.addBtn .bookNowChkbox input[type="checkbox"]:checked~.check-circle::after {
    height: 2px;
    width: 25%;
    transform: rotate(50deg) translate(-2px, 3px);
    transform-origin: left;
    border-radius: 0;
}


.salon-card__serviceRow:hover {
    --serviceRowBg: #FAFAFA;
    --chkCircleBg: #1c1c1c;
    --chkCircleClr: #fff;
}

/* ------------------------------------------------- */


.salon-card__addedServicesRow {
    background: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1rem;
    font-size: 1rem;
    color: #1C1C1C;
    font-weight: 500;
}

.salon-card__addedServicesRow>p {
    font-size: 1.125rem;
}

.salon-card__addedServicesRow time {
    color: #7A7A7A;
}

.salon-card__addedServicesRow time span {
    color: var(--clr-logo);
}

.salon-card__addedServicesTotal,
.salon-card__addedServicesTotal p {
    font-size: 1.25rem;
    line-height: 1.25;
}

.salon-card__addedServicesTax {
    color: #797979;
    padding-block-end: 1em;
    border-block-end: 1px solid currentColor;
}

/* ------------------------------------------------- */

.salon-card__content .cta {
    font-size: 1.125rem;
    margin-block-start: 1rem;
}


.salon-listing__recommended h5 {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 140%;
    color: #1C1C1C;
    margin-block-end: 1em;
}

.salon-card--horizental {
    --salong-heading: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.salon-listing .owl-carousel .owl-nav button span {
    display: none;
}


.salon-listing .owl-carousel .owl-nav button.owl-next,
.salon-listing .owl-carousel .owl-nav button.owl-prev {
    background: #1C1C1C;
    border-radius: 999px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjI1IDMuNzVMMTAuMzU2MiA0LjYyMDYzTDE1LjA5MzggOS4zNzVIMi41VjEwLjYyNUgxNS4wOTM4TDEwLjM1NjIgMTUuMzU4MUwxMS4yNSAxNi4yNUwxNy41IDEwTDExLjI1IDMuNzVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-position: center;
}

.salon-listing .owl-carousel .owl-nav button.owl-next.disabled,
.salon-listing .owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}

.salon-listing .owl-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
}

.salon-listing .owl-carousel button.owl-dot {
    background: #E6E6E6;
    width: 10px;
    height: 10px;
    margin: 0 0.2em;
    border-radius: 50%;
}

.salon-listing .owl-carousel button.owl-dot.active {
    background: var(--clr-pink);
}

.salon-listing .owl_slider__1>.owl-nav button.owl-next,
.salon-listing .owl_slider__1>.owl-nav button.owl-prev {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.salon-listing .owl_slider__1>.owl-nav button.owl-prev {
    transform: translateY(-50%) matrix(-1, 0, 0, 1, 0, 0);
    inset-inline-start: 0.5rem;
}

.salon-listing .owl_slider__1>.owl-nav button.owl-next {
    inset-inline-end: 0.5rem;
}


.salon-listing .owl_slider__3>.owl-nav button.owl-next,
.salon-listing .owl_slider__3>.owl-nav button.owl-prev {
    width: 2.5rem;
    height: 2.5rem;
}

.salon-listing .owl_slider__3>.owl-nav button.owl-prev {
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.salon-listing .owl_slider__3>.owl-nav {
    position: absolute;
    inset-inline-end: 0;
    top: -3.5rem;
}

.salon-listing .owl_slider__3>.owl-nav>*+* {
    margin-inline-start: 1em;
}

.salon-listing__horizental>*+* {
    margin-block-start: 3rem;
}

.salon-location {
    position: sticky;
    top: 82px;
    inset-inline-end: 0;
    width: 100%;
    height: calc(100svh - 82px);
}

.salon-location iframe {
    width: 100%;
    height: calc(100svh - 82px);
}


/* SALON DETAILS */
.salong-hub__shop-details {
    padding: 2rem 0 5rem;
}

/* ------------------------------------------------- */



.shop-basic-info h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 3.125rem;
    line-height: 120%;
    color: #1C1C1C;
    margin-block-end: 0.2em;
}


/* ------------------------------------------------- */

.shop-inline-infos {
    color: #4A4A4A;
    gap: 1em;
}

.shop-inline-infos>*:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 1em;
    display: inline-block;
    background: #ddd;
    margin-inline-end: 1em;
    margin-block-start: 0.35em;
    vertical-align: top;
}

/* ------------------------------------------------- */


.shop-address {
    color: #4A4A4A;
}

.shop-address>*:not(:first-child) {
    margin-inline-start: 1em;
}

.shop-address>* {
    vertical-align: top;
}

/* ------------------------------------------------- */

.shop-images-grid {
    display: grid;
    grid-template-columns: 0.75fr 0.5fr 0.5fr;
    gap: 1rem;
    margin-block-start: 1.5rem;
    position: relative;
    aspect-ratio: 1 / 0.345;
    overflow: hidden;
}

.shop-images-grid>* {
    grid-row: 1;
}

.shop-images-grid figure {
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.shop-images-grid figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-images-grid figure:nth-of-type(1) {
    grid-column: 1;
}

.shop-images-grid figure:nth-of-type(2) {
    grid-column: 2;
}

.shop-images-grid figure:nth-of-type(3) {
    grid-column: 3;
}

.shop-images-grid .btn-rounded {
    --bs-btn-border-color: #fff;
    --btn-gap: 1em;
    grid-column: 3;
    align-self: end;
    justify-self: start;
    margin: 8%;
    text-align: start;
    line-height: 1.5;
}

/* ------------------------------------------------- */

.shop-grp-info-grid {
    display: grid;
    grid-template-columns: 1fr 0.41fr;
    gap: 3rem;
    align-items: start;
    margin-block-start: 3rem;
}

.shop-grp-info {
    width: 100%;
    overflow-x: hidden;
}

/* ------------------------------------------------- */

.shop-grp-info_booknow>*+* {
    margin-block-start: 1.5rem;
}

.shop-grp-info_booknow {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 1.25rem;
    position: sticky;
    inset-block-start: 100px;
    inset-inline-end: 0;
}

.shop-grp-info_booknow h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.15;
    word-break: break-word;
}


.shop-grp-info_booknow .btn-rounded {
    font-weight: 700;
    width: 100%;
    padding: 0.75em;
    font-size: 1.25rem;
}

/* ------------------------------------------------- */

.shop-grp-infos>*+* {
    margin-block-start: 5rem;
}

.shop-grp-info>*+* {
    margin-block-start: 2rem;
}

.shop-grp-info .service-heading {
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.25;
    color: #1C1C1C;
}

.shop-grp-info .service-sub-heading {
    font-size: 1.125rem;
}

/* ------------------------------------------------- */

.shop-grp_teamGrid {
    display: grid;
    grid-template-columns: repeat(var(--teamGridCol, 4), minmax(0, 1fr));
    gap: 1.5rem;
}

.shop-grp_teamGrid.grid-col--3 {
    --teamGridCol: 3;
}


.team-card {
    text-align: center;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-block-start: 2.8125rem;
}

.team-card>figure {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    overflow: hidden;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-block-start: -5rem;
    margin-block-end: 1rem;
}

.team-card>figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card>h6 {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.25;
}

.team-card>p {
    font-size: 0.875rem;
    line-height: 1.25;
    color: #6D6D6D;
}

.team-card>*+* {
    margin-block-start: 0.4rem;
}

label.team-card {
    position: relative;
    cursor: pointer;
}

label.team-card input[type="radio"],
label.team-card input[type="checkbox"] {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    visibility: hidden;
}

label.team-card .chkbg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    transition: 0.2s ease;
}

label.team-card input[type="radio"]:checked~.chkbg {
    border: 1px solid var(--clr-pink);
    background-color: #FEF7F7;
}

label.team-card input[type="radio"]:checked~.rating_block {
    --ratingBrdrClr: currentColor;
}

/* ------------------------------------------------- */

.shop-grp_reviewGrid {
    display: grid;
    grid-template-columns: repeat(var(--reviewGridCol, 2), minmax(0, 1fr));
    gap: var(--reviewGridGap, 2rem);
}

.review-card {
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 1.5rem;
}

.review-card .rating_block {
    font-size: 1.2rem;
}

.review-card--reviewer {
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: 1rem;
    align-items: center;
    gap: 1em;
    margin-block-end: 1.5em;
}

.review-card--reviewer figure {
    width: 4em;
    height: 4em;
    border-radius: 50%;
    overflow: hidden;
}

.review-card--reviewer h6 {
    font-weight: 400;
    font-size: 1.125em;
    line-height: 110%;
    color: #253644;
    margin-block-end: 0.1em;
}

.review-card--reviewer time {
    font-weight: 400;
    font-size: 0.875em;
    line-height: 110%;
    color: #848484;
}

.review-card--content {
    color: #1D1D1D;
    font-size: 1.125rem;
    margin-block-start: 0.5em;
}

/* ------------------------------------------------- */

.shop-grp_about>*+* {
    margin-block-start: 1rem;
}

.shop-grp_about p {
    font-size: 1.125rem;
}

.shop-grp_about


/* ------------------------------------------------- */

.shop-location {
    border-radius: 10px;
    overflow: hidden;
}

.shop-location iframe {
    width: 100%;
    height: 350px;
}


/* ------------------------------------------------- */

.shop-timing h6 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-block-end: 0.5em;
}

.shop-timing ul {
    font-size: 1.125rem;
    padding-inline-start: 1em;
}

.shop-timing li {
    margin-block-end: 0.25em;
}

.shop-timing li span:nth-child(1) {
    display: inline-block;
    width: 9ch;
    margin-inline-end: 3em;
}

.shop-timing li::marker {
    color: var(--clr-pink);
}

/* ------------------------------------------------- */

.book-now-grp {
    margin-block-end: 1.5rem;
}

.book-now-grp h5 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin-block-end: 0.25em;
}

.book-now-grp .btn {
    margin-block-start: 0.85em;
}

#modal--bookNow {
    --bs-modal-width: 54.375rem;
}

/* ------------------------------------------------- */

.salon-book-step-grid {
    display: grid;
    grid-template-columns: 1fr 28rem;
    gap: 3rem;
    align-items: start;
    padding: 1.5rem 0 3rem;
}


.salon-service-price-box {
    grid-column: 2;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 1.25rem;
    position: sticky;
    top: 70px;
    inset-inline-end: 0;
    z-index: 11;
    /* height: calc(100dvh - 180px); */
    display: flex;
    flex-direction: column;
}

.salon-service-price-box h2 {
    font-size: 1.375rem;
    color: #1c1c1c;
    line-height: 1.15;
}


.salon-service-price-box .btn-rounded {
    font-weight: 700;
    width: 100%;
    padding: 0.75em;
    font-size: 1.25rem;
}

.salon-service-price-box .spa-center-block .spa-center-block_info{
    flex: auto;
}
.salon-service-price-box .spa-center-block .spa-center-block_img{
    max-width: 90px; 
    min-width: 90px;
}
.salon-service-price-box .open-shopImgGallry img{
    border-radius: 10px;
    object-fit: fill;
    height: 100%;
}

/* ------------------------------------------------- */

.salon-service-price-box .salon-imgs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 200px;
    gap: 0.85rem;
}

.salon-service-price-box .salon-imgs-grid>figure {
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.salon-service-price-box .salon-imgs-grid>figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-service-price-box .salon-imgs-grid>figure:nth-child(1) {
    grid-column: 1;
    grid-row: 1/span 2;
}

.salon-service-price-box .salon-imgs-grid>figure:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.salon-service-price-box .salon-imgs-grid>figure:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* ------------------------------------------------- */

.info-inline>* {
    display: inline;
}

.info-inline>*:not(:last-child)::after {
    content: '•';
    margin-inline-start: 0.2em;
}

/* ------------------------------------------------- */


.service-sticky-nav-1 {
    position: sticky;
    top: 0;
    inset-inline-start: 0;
    z-index: 11;
}

/* .service-sticky-nav-2{
    position: sticky;
    top: 4rem;
    left: 0;
    z-index: 11;
    background-color: #fff;
} */

/* ------------------------------------------------- */

.calendar-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-top-nav .swiper-nav {
    width: auto;
}

.calendar-top-nav .dropdown {
    display: inline-block;
    vertical-align: middle;
    margin-inline-start: 0.5em;
}

.calendar-top-nav .dropdown .btn-circle {
    width: 2em;
    height: 2em;
    padding: 0 0.35em;
}

.calendar-top-nav .dropdown .btn-circle img {
    display: block;
    margin: auto;
}

.calendar-top-nav .calendar-current-date {
    font-size: 1.125rem;
    color: #515151;
}

/* ------------------------------------------------- */

.salon-timing-list {
    display: grid;
    /* grid-template-columns: repeat(5, minmax(0, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-block-start: 2rem;
}

.salon-timing-list:empty {
    display: none;
}

.salon-timing-list:empty+.nosuitabletime {
    display: none;
}

.salon-timing-list label {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateX(10px);
    animation: animOpac 0.5s ease forwards calc(0.05s * calc(var(--i)));
}

.salon-timing-list label input {
    position: absolute;
    visibility: hidden;
}

.salon-timing-list label span {
    display: block;
    padding: 0.65em;
    border: 1px solid #bdbdbd;
    border-radius: 0.5em;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}


.salon-timing-list label input:checked~span {
    border-color: var(--clr-pink);
    background-color: #FEF7F7;
}

/* ------------------------------------------------- */

.professional-unavailable {
    text-align: center;
    padding: 2rem;
    border: 1px solid #E2E2E2;
    border-radius: 0.5rem;
    margin-block-start: 2rem;
}

.professional-unavailable figure {
    display: inline-block;
    width: 5.625rem;
    height: 5.625rem;
    border-radius: 50%;
    overflow: hidden;
}

.professional-unavailable figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}

.professional-unavailable h6 {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.35;
    margin-block-end: 0.5em;
    text-wrap: balance;
}

.professional-unavailable p {
    font-weight: 400;
    font-size: 1.125rem;
    color: #7C7C7C;
}

.professional-unavailable .btn-rounded {
    display: inline-block;
    margin: 1em 0.2em;
    --bs-btn-color: var(--clr-gry59);
    font-weight: 600;
}

/* ------------------------------------------------- */

.payIcons {
    display: -ms-inline-grid;
    display: inline-grid;
    grid-auto-flow: column;
    gap: 1em;
    align-items: center;
}

/* ------------------------------------------------- */

.salon-payment-card-details {
    background-color: #FCFCFC;
    border: 1px solid #E2E2E2;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

/* ------------------------------------------------- */


.payment-sucessfull {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-image: url('./../img/gradient-bg.webp');
    text-align: center;
    display: grid;
    place-items: center;
}


.payment-sucessfull h6 {
    font-weight: 500;
    font-size: 1.75rem;
    color: #1C1C1C;
    line-height: 1.25;
}

.payment-sucessfull p {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 500;
    color: #515151;
}

.payment-sucessfull .btn {
    display: inline-block;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.75em 3em;
    margin-block-start: 3.5rem;
}

.payment-sucessfull figure {
    display: inline-block;
    position: relative;
}


.payment-sucessfull span.star {
    position: absolute;
    transform-origin: center;
}

.payment-sucessfull span.star.starTL {
    top: 1%;
    inset-inline-start: 2%;
    width: 18%;
}

.payment-sucessfull span.star.starBR {
    top: 4%;
    inset-inline-end: 7%;
    width: 8%;
}

.payment-sucessfull span.star.starTR {
    top: 78%;
    inset-inline-start: 12%;
    width: 8%;
}

.payment-sucessfull span.star.starBL {
    top: 79%;
    inset-inline-end: 1%;
    width: 14%;
}

.payment-sucessfull path.star {
    opacity: 0;
}

.payment-sucessfull .starTL {
    animation: starTLTranslate 0.5s ease forwards;
}

.payment-sucessfull .starBR {
    animation: starBRTranslate 0.5s ease forwards;
}

.payment-sucessfull .starTR {
    animation: starTRTranslate 0.5s ease forwards;
}

.payment-sucessfull .starBL {
    animation: starBLTranslate 0.5s ease forwards;
}

.payment-sucessfull .star img {
    transform-origin: center;
    animation: starRotate 2s ease 0.5s infinite;
}

@keyframes starTLTranslate {
    0% {
        transform: translate(235%, 235%);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes starBRTranslate {
    0% {
        transform: translate(-394%, 235%);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes starTRTranslate {
    0% {
        transform: translate(394%, -235%);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes starBLTranslate {
    0% {
        transform: translate(-300%, -235%)
    }

    100% {
        transform: translate(0);
    }
}



@keyframes starRotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(90deg);
    }

    75% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ------------------------------------------------- */

.salon-appointments_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.salon-appointments_grid>* {
    padding: 3rem;
}

.salon-appointments-list>*+* {
    margin-block-start: 3rem;
}

.salon-appo-box {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--box-border-color, #D2D2D2);
}


.salon-appo-box.selected {
    --box-bg: #FEF7F7;
    --box-border-color: var(--clr-pink);
}

.salon-appo-box.selected figure::after {
    position: absolute;
    inset: 0;
    background: #00000008;
}
@media(min-width: 991px) {
    .salon-appo-box.selected {
        --box-bg: #FEF7F7;
        --box-border-color: var(--clr-pink);
    }

    .salon-appo-box.selected figure::after {
        position: absolute;
        inset: 0;
        background: #00000008;
    }
}

.salon-appo-box figure {
    position: relative;
}

.salon-appo-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-appo-box--content {
    background-color: var(--box-bg, #ffffff);
    padding: 1.5rem;
    border-start-end-radius: inherit;
    border-end-end-radius: inherit;
}

.salon-appo-box--content h6 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 140%;
    color: #1C1C1C;
}

.salon-appo-box--content p {
    font-weight: 400;
    line-height: 150%;
    color: #4A4A4A;
}

.salon-appo-box--content p span {
    font-weight: 700;
    line-height: 150%;
    color: #4A4A4A;
    margin-inline-end: 0.5em;
}

.salon-appo-box--content .btn {
    --bs-btn-border-radius: 100em;
    --bs-btn-padding-y: 0.55em;
    --bs-btn-padding-x: 1.15em;
}

.salon-appointments-details {
    background: #FAFAFA;
    /*box-shadow: 50vw 0 0 50vw #FAFAFA;*/
    position: sticky;
    top: 6.75rem;
    inset-inline-end: 0;
    max-height: calc(100svh - 6.75rem);
    overflow: auto;
}


.salon-appointments-details .salon-appo--fig {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    max-height: 16.875rem;
    overflow: hidden;
}

.salon-appointments-details .salon-appo--fig img {
    width: 100%;
}

.salon-appointments-details .salon-appo--fig::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.salon-appointments-details .salon-appo--fig .fig-content {
    position: absolute;
    padding: 1.5rem;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 1;
}

.salon-appointments-details .salon-appo--fig h5 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 140%;
    color: #FFFFFF;
}

.salon-appointments-details .salon-appo--fig span {
    color: #1f1f1f;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2.5px);
    border-radius: 999px;
    padding: 0.5em 1.5em;
    line-height: 1;
    font-weight: 500;
}

.salon-appointments-details .salon-appo--date-time h6 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: #1C1C1C;
}

.salon-appointments-details .salon-appo--date-time p {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #717171;
}

.salon-appo--pointer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-block-end: 2rem;
}


.salon-appo--pointer>figure {
    --fig-size: 3.875rem;
    background: #FFE4F0;
    color: var(--clr-pink);
    border-radius: 50%;
    width: var(--fig-size);
    height: var(--fig-size);
    display: grid;
    place-items: center;
}

.salon-appo--pointer>figure svg {
    max-width: 50%;
    height: auto;
}

.salon-appo--pointer article {
    border-bottom: 1px solid #D9D9D9;
    padding-block-end: 1rem;
}

.salon-appo--pointer h6 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #1C1C1C;
}

.salon-appo--pointer p {
    font-weight: 500;
    color: #7A7A7A;
}

.salon-appo--pointer:hover figure {
    background: var(--clr-pink);
    color: #fff;
}

.salon-appo--infoBox {
    background-color: #fff;
    border: 1px solid #E7E7E7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: #757575;
}

.salon-appo--infoBox h6 {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.2;

    color: #1C1C1C;
    margin-block-end: 0.5em;
}


/* ------------------------------------------- */

.downloadApp_dropdown {
    --bs-btn-bg: transparent;
    --downloadAppSize: 0.95rem
}

.downloadApp_dropdown .dropdown-menu {
    --bs-dropdown-min-width: 15rem;
    --bs-dropdown-padding-x: 1rem;
    --bs-dropdown-padding-y: 1rem;
}


/* ------------------------------------------- */

/* GIFT CARD */

.salon-hub__giftcard {
    padding-block-start: 3rem;
    padding-block-end: 3rem;
}

.salon-hub__giftcard-grid {
    display: grid;
    grid-template-columns: 1fr 26.3125rem;
    gap: 3rem;
    align-items: start;
}

.salon-hub__giftcard-actions {
    overflow-x: hidden;
    width: 100%;
}

.salon-hub__giftcard-actions .subheading {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    color: #1C1C1C;
}

.salon-hub__giftcard-amount-radio-box {
    position: relative;
    overflow: hidden;
}


.salon-hub__giftcard-amount-radio-box input[type="radio"],
.salon-hub__giftcard-amount-radio-box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.salon-hub__giftcard-amount-radio-box .rdio-content {
    border: 1px solid #CFCFCF;
    border-radius: 0.25em;
    font-size: 1.25rem;
    padding: 1em;
    display: grid;
    grid-auto-flow: column;
    gap: 0.75em;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: 200ms ease;
}

.salon-hub__giftcard-amount-radio-box .icon {
    color: #515151;
}

.salon-hub__giftcard-amount-radio-box .icon svg {
    width: 1.25em;
    height: auto;
    display: block;
}

.salon-hub__giftcard-amount-radio-box input[type="radio"]:checked+.rdio-content:not(.custom-amount),
.salon-hub__giftcard-amount-radio-box input[type="checkbox"]:checked+.rdio-content:not(.custom-amount) {
    background-color: #1C1C1C;
    color: #fff;
}

.salon-hub__giftcard-amount-radio-box input[type="radio"]:checked+.rdio-content:not(.custom-amount) .icon,
.salon-hub__giftcard-amount-radio-box input[type="checkbox"]:checked+.rdio-content:not(.custom-amount) .icon {
    color: inherit;
}

.salon-hub__giftcard-amount-radio-box .custom-amount span:nth-of-type(1) {
    margin-inline-start: -3ch;
    opacity: 0;
}

.salon-hub__giftcard-amount-radio-box .custom-amount span:nth-of-type(2) {
    margin-inline-start: -0.75em;
}

.salon-hub__giftcard-amount-radio-box .custom-amount input[type="text"] {
    font-size: inherit;
    color: inherit;
    opacity: 0;
    pointer-events: none;
}

.salon-hub__giftcard-amount-radio-box .ins {
    opacity: 0;
    transform: translateY(10px);
    transition: 400ms ease-in-out;
}


.salon-hub__giftcard-amount-radio-box input[type="radio"]:checked+.custom-amount span:nth-of-type(1) {
    margin-inline-start: 0;
    opacity: 1;
    transition: 400ms ease-in-out;
}

.salon-hub__giftcard-amount-radio-box input[type="radio"]:checked+.custom-amount span:nth-of-type(2) {
    display: none;
}

.salon-hub__giftcard-amount-radio-box input[type="radio"]:checked+.custom-amount input[type="text"] {
    opacity: 1;
    pointer-events: all;
    transition: 400ms ease-in-out;
}

.salon-hub__giftcard-amount-radio-box input[type="radio"]:checked~.ins {
    opacity: 1;
    transform: translateY(0);
}

.salon-hub__giftcard-sticky {
    position: sticky;
    top: 0;
    inset-inline-end: 0;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 1rem;
}

.salon-hub__giftcard-sticky .btn-rounded {
    font-weight: 700;
    width: 100%;
    padding: 0.5em;
    font-size: 1.25rem;
}

.salon-hub__giftcard-sticky .salon-hub__giftcard--shopInfo figure {
    height: 174px;
    border-radius: 10px;
    overflow: hidden;
}

.salon-hub__giftcard-sticky .salon-hub__giftcard--shopInfo figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-hub__giftcard-sticky .salon-hub__giftcard--shopInfo h2 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 120%;
}

.salon-hub__giftcard-sticky .salon-hub__giftcard--totalamount,
.salon-hub__giftcard-sticky .salon-hub__giftcard--totalamount p {
    font-size: 1.25rem;
    line-height: 1.25;
}


.salon-hub__giftcard-sticky .salon-hub__giftcard--purchased {
    padding: 1.25em 0;
    border-top: 1px solid rgb(213 213 213);
    border-bottom: 1px solid rgb(213 213 213);
}


.salon-hub__giftcard--style h6 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-block-end: 0.5em;
}

.gift-style label {
    display: block;
    position: relative;
    cursor: pointer;
}

.gift-style figure {
    border: 1px solid transparent;
    border-radius: 0.3em;
    overflow: hidden;
}

.gift-style input[type="radio"] {
    position: absolute;
    visibility: hidden;
}

.gift-style input[type="radio"]:checked+figure {
    border-color: var(--clr-pink);
}

.salon-hub__giftcard--style .owl-carousel .owl-nav button span {
    display: none;
}

.salon-hub__giftcard--style .owl-carousel .owl-nav button.owl-next,
.salon-hub__giftcard--style .owl-carousel .owl-nav button.owl-prev {
    width: 2rem;
    height: 2rem;
    background: #FFFFFF;
    border-radius: 999px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMjUgMC43NUw4LjM1NjI1IDEuNjIwNjNMMTMuMDkzOCA2LjM3NUgwLjVWNy42MjVIMTMuMDkzOEw4LjM1NjI1IDEyLjM1ODFMOS4yNSAxMy4yNUwxNS41IDdMOS4yNSAwLjc1WiIgZmlsbD0iIzFDMUMxQyIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.salon-hub__giftcard--style .owl-carousel .owl-nav button.owl-prev {
    transform: translateY(-50%) matrix(-1, 0, 0, 1, 0, 0);
    left: 1rem;
}

.salon-hub__giftcard--style .owl-carousel .owl-nav button.owl-next {
    right: 1rem;
}

.gift-payment-card-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gift-payment-card-box label {
    display: block;
    position: relative;
    cursor: pointer;
}

.gift-payment-card-box label input {
    position: absolute;
    visibility: hidden;
}

.gift-payment-card-box .chk-content {
    width: 288px;
    height: 100%;
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #F6F6F6;
    border: 1px solid #DCDCDC;
    color: #1C1C1C;
    background-repeat: no-repeat;
    background-position: var(--inline-end) 0.5em top 0.5em;
}

.gift-payment-card-box .chk-content p small {
    color: #484848;
}

.gift-payment-card-box .btn--addcard figure,
.gift-payment-card-box .chk-content figure {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
}

.gift-payment-card-box label input[type="radio"]:checked+.chk-content {
    background-color: #F6EEFF;
    border-color: var(--clr-pink);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNSAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzg3Ml8zOTU5KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCA4QzAgNi4wMTA4OCAwLjc5MDE3NiA0LjEwMzIyIDIuMTk2NyAyLjY5NjdDMy42MDMyMiAxLjI5MDE4IDUuNTEwODggMC41IDcuNSAwLjVDOS40ODkxMiAwLjUgMTEuMzk2OCAxLjI5MDE4IDEyLjgwMzMgMi42OTY3QzE0LjIwOTggNC4xMDMyMiAxNSA2LjAxMDg4IDE1IDhDMTUgOS45ODkxMiAxNC4yMDk4IDExLjg5NjggMTIuODAzMyAxMy4zMDMzQzExLjM5NjggMTQuNzA5OCA5LjQ4OTEyIDE1LjUgNy41IDE1LjVDNS41MTA4OCAxNS41IDMuNjAzMjIgMTQuNzA5OCAyLjE5NjcgMTMuMzAzM0MwLjc5MDE3NiAxMS44OTY4IDAgOS45ODkxMiAwIDhaTTcuMDcyIDExLjIxTDExLjM5IDUuODEyTDEwLjYxIDUuMTg4TDYuOTI4IDkuNzg5TDQuMzIgNy42MTZMMy42OCA4LjM4NEw3LjA3MiAxMS4yMVoiIGZpbGw9IiNEOTA4NjUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF84NzJfMzk1OSI+CjxyZWN0IHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMC41KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
}

.gift-payment-card-box .btn--addcard {
    font-size: 14px;
    display: grid;
    justify-items: center;
    gap: 0.5em;
    padding: 1em;
    border-radius: 0.5rem;
    background-color: #F6F6F6;
    border: 1px solid #DCDCDC;
}

.gift-payment-card-box .btn--addcard figure {
    padding: 0.5em;
}


.salon-hub__giftcard--recipient-dtls label {
    color: #1C1C1C;
    font-weight: 500;
}

.salon-hub__giftcard--recipient-dtls p {
    color: #6F6F6F;
    margin-block-start: 0.3em;
}

.setGiftAmount {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.setGiftAmountInner {
    flex: 1;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 1px solid #B7B7B7;
    line-height: 1;
    border-radius: 0.3em;
}

.setGiftAmountInner span {
    color: #797979;
}

.setGiftAmountInner input {
    flex: 1;
    color: #1c1c1c;
}

.setGiftAmount button {
    color: #666666;
}

.setGiftAmount button svg {
    width: 1em;
    display: block;
}

.setGiftAmount button:hover {
    color: var(--clr-pink);
}


.salon-hub_review-and-ratings {
    margin-block-start: 3rem;
}


/* FAV BTN */
.favorite-btn {
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5em;
    border-radius: 50%;
}

.favorite-btn[data-favorited="false"] {
    background-image: url(../../assets/img/icons/ico-heart.svg);
}


.favorite-btn[data-favorited="true"] {
    background-image: url(../../assets/img/icons/ico-heartFill.svg);
}


/* GIFT CARD COUPON FORM */
.salon-gift-coupon-form {
    --frm-control-font-size: 0.95rem;
    --frm-control-font-weight: 400;
    --frm-control-border: #d5d5d5;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #FFF6F6;
    border: 1px solid #DEBBBB;
    margin-block-start: 1rem;
    /* opacity: 0;
    transform: translateY(10px);
    transition: 200ms ease-in-out; */
}

.salon-gift-coupon-form p {
    font-size: 1.15rem;
}

.salon-gift-coupon-form .form-control {
    max-width: 100%;
    flex: 1;
}

/* .salon-payment-option button[aria-expanded="true"] ~ .salon-gift-coupon-form{
    opacity: 1;
    transform: translateY(0);
    transition: 200ms ease-in-out 250ms;
} */


/* GIFT CARD PURCHASED */
.salon-gift-purchased .grid-col-3 {
    display: grid;
    grid-template-columns: repeat(var(--grid-col, 3), minmax(0, 1fr));
    gap: 1.25rem;
}


.giftcode {
    display: inline-block;
    border-radius: 0.5rem;
    padding: 0.5rem;
    width: 200px;
    font-size: 20px;
    font-weight: 500;
    color: var(--statusClr);
    background-color: var(--bgClr);
    border: 1px dashed currentColor;
    margin-block-end: 0.5rem;
}

.salon-giftcard-purchased {
    --statusClr: #00a931;
    --bgClr: #00a9300a;
    padding: var(--giftcard-padding, 1.25rem);

    border: 1px solid #d0d0d0;
    border-radius: 1rem;
}

.salon-giftcard-purchased h6 {
    font-size: 1.5rem;
}

.salon-giftcard-purchased h6 img {
    width: 1em;
    height: auto;
    vertical-align: middle;
    margin-block-end: 0.15em;
}

.salon-giftcard-purchased figure {
    flex: 0 0 5.125rem;
    width: 5.125rem;
    height: 5.125rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.salon-giftcard-purchased figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-giftcard-purchased .table {
    --bs-table-bg: transparent;
    --bs-border-color: #EDD5CF;
    margin-block-end: 0;
}

.salon-giftcard-purchased .bg-status {
    color: var(--statusClr);
    transform: translateY(-2px);
}

.salon-giftcard-purchased .bg-status::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    display: inline-block;
    border-radius: 50%;
    background-color: currentColor;
    margin-inline-end: 0.5em;
}

.salon-giftcard-purchased.sent {
    --statusClr: #773ec8;
    --bgClr: #773ec814;
}

.salon-giftcard-purchased.expired {
    --statusClr: var(--clr-red1);
    --bgClr: #df14140d;
}

.salon-giftcard-purchased.redeemed {
    --statusClr: var(--clr-pink);
    --bgClr: #d908650f;
}

.salon-giftcard-purchased.sent .giftcode,
.salon-giftcard-purchased.expired .giftcode,
.salon-giftcard-purchased.redeemed .giftcode {
    user-select: none;
    /* Prevent text selection */
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE/Edge */
}

/* .salon-giftcard-purchased.expired .table {
    --bs-table-color: #5a4d4d;
}

.salon-giftcard-purchased.sent {
    --bgClr: #F6EEFF;
    --brdrClr: #DBBAFF;
} */




.suggestion-list {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: rgba(13, 22, 25, 0.02) 0px 4px 8px 0px, rgba(13, 22, 25, 0.06) 0px 12px 20px 0px;
    border: 1px solid rgb(229, 229, 229);
    position: absolute;
    z-index: 1111;
    display: none;
    overflow: auto;
}

.suggestion-btn {
    width: 100%;
    display: flex;
    gap: 0.85em;
    align-items: center;
    text-align: left;
    font-weight: 500;
    border-radius: 0.25em;
}

.suggestion-btn p:nth-of-type(2) {
    font-size: 80%;
    font-weight: 400;
    color: #727373;
}

.suggestion-btn:hover {
    background: var(--clr-pink-400);
}

.suggestion-list .suggestion-btn,
.suggestion-list .suggestion-heading {
    padding: 0.5em;
}

.suggestion-list .ico-container {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 0.5em;
    padding: 0.5em;
}

.suggestion-list .ico-container img {
    max-width: 1.25em;
    display: block;
    margin: auto;
}


.suggestion-list .img-container {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 0.5em;
}

.suggestion-list .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.suggestion-list .suggestion-heading {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
}

#location-suggestion {
    left: 0;
    right: 0;
}

@media(max-width: 575px) {
    #time-suggestion {
        max-width: 310px;
    }
}

.search-input-reset {
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: bold;
    background: #eee;
    border-radius: 50%;
    display: none;
}

.search-input-reset:hover {
    background: #1c1c1c;
    color: #fff;
}

/* .search_block .field input:focus + .search-input-reset {
    display: block;
} */

.home_banner {
    z-index: 11;
}

.search_block mark {
    background-color: var(--clr-pink-400);
    padding: 0;
}

.review-block_wrap{
    position: relative; margin-bottom: 50px; padding-top: 80px; 
    background: url(./../img/review-bg.png) 0 0 no-repeat;
}
.review-block_wrap h3.title {
    font-weight: 700; font-size: 28px;
    line-height: 1.5; color: #ffffff;
    padding: 0 0 30px;   
}

.review-block_wrap .reviews-card{
    border: 1px solid #dedede;
    border-radius: 10px; padding: 1.5rem; 
    background-color: #ffffff;
    display: flex; flex-direction: column; gap: 30px;
}
.review-block_wrap .reviews-name{
    display: flex; align-items: center; gap: 20px;
}
.review-block_wrap .reviews-name figure{
    min-width: 70px; width: 70px; height: 70px;
    overflow: hidden; border-radius: 100px;
}
.review-block_wrap .reviews-name h3{
    font-size: 24px; font-weight: 500;
}
.review-block_wrap .ratting-details{font-size: 22px; line-height: 1.6;}
.review-block_wrap .ratting-details p{font-size: 22px; line-height: 1.6;}

.review-block_wrap .group-ratting{margin-top: 30px;} 

.review-block_wrap .owl-carousel .owl-nav {
    position: absolute; display: inline-flex;
    gap: 1em; top: calc(-30px + -2.5em); inset-inline-end: 0;
}
.review-block_wrap .owl-carousel .owl-nav button.owl-next.disabled, 
.review-block_wrap .owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.5; 
}
.review-block_wrap .owl-carousel .owl-nav button.owl-prev {
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.review-block_wrap .owl-carousel .owl-nav button.owl-next,
.review-block_wrap .owl-carousel .owl-nav button.owl-prev {
    width: 2.5em; height: 2.5em; background: #ffffff;
    border: 1px solid #ADADAD; border-radius: 999px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMjUgMC43NUw4LjM1NjI1IDEuNjIwNjNMMTMuMDkzOCA2LjM3NUgwLjVWNy42MjVIMTMuMDkzOEw4LjM1NjI1IDEyLjM1ODFMOS4yNSAxMy4yNUwxNS41IDdMOS4yNSAwLjc1WiIgZmlsbD0iIzFDMUMxQyIvPgo8L3N2Zz4K);
    background-repeat: no-repeat; background-position: center; background-size: 1em;
}
.review-block_wrap button.owl-prev span, 
.review-block_wrap button.owl-next span {display: none;}

.review-block_wrap .owl-dots {text-align: center; margin-top: 50px;}
.review-block_wrap .owl-dots button.owl-dot{
    margin: 0 10px; background: #e6e6e6;
    width: 30px; height: 5px; border-radius: 5px;
}
.review-block_wrap .owl-dots button.owl-dot.active{background: #1d1d1d;}


.home_banner .main_logo{
    padding: 0 40px;
}
.home_banner .main_logo img{
    max-width: 300px;
}

@media only screen and (max-width: 1400px) {
    .home_banner .main_logo{
        padding: 0 20px;
    }
}

@media only screen and (max-width: 991) {
    .home_banner .main_logo{
        padding: 0 10px;
    }
}







/* surojit -- 25-05-26 */



.no_salon_grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    
}

.no_salon_grid .salon-listing {
    
}

.no_salon_grid .salon-listing>* {
    padding: 0;
}

.no_salon_grid .salon-listing__header {
    padding: 10rem 2rem;
}

.no_salon_grid .hide-tabP {
    width: 60%;
    padding: 30px;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 0 10px #ccc;
    text-align: center;
}

.no_salon_grid .hide-tabP h6 {
    font-size: 22px;
    font-weight: 500;
}

.no_salon_grid .salon-location {
    height: auto;
}