:root {
    --font-primary: "Nunito Sans 7pt";

    --white: #ffffff;
    --black-shade-1: #111111;
    --black: #000000;
    --red: #d33b3b;
    --blue: #23346c;
    --blue-tint-1: #eeeeff;
    --blue-tint-2: #c7c7ea;
    --gray-shade-1: #222222;
    --gray: #555555;
    --gray-tint-1: #777777;
    --gray-tint-2: #7d7d7d;
    --gray-tint-3: #707070;
    --gray-tint-4: #f5f5f5;

    --font-13: 8px;
    --font-14: 14px;
    --font-16: 16px;
    --font-18: 18px;
    --font-20: 20px;
    --font-24: 24px;
    --font-32: 32px;
    --font-40: 40px;
    --font-56: 56px;

    --size-8: 8px;
    --size-12: 12px;
    --size-16: 16px;
    --size-20: 20px;
    --size-24: 24px;
    --size-32: 32px;
    --size-42: 42px;
    --size-64: 64px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.firefox {
    scrollbar-width: thin;
    scrollbar-color: var(--blue) var(--blue-tint-2);
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-18);
    background-color: var(--white);
    line-height: 1.3;
}

/* PLACEHOLDER */
::placeholder {
    color: var(--gray-tint-1);
    opacity: 1;
    font-family: var(--primary-font);
    font-size: var(--font-16);
    font-weight: 400;
}

:-ms-input-placeholder {
    color: var(--gray-tint-1);
    font-family: var(--primary-font);
    font-size: var(--font-16);
    font-weight: 400;
}

/* SCROLL */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--blue);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-tint-2);
}

/* INPUT */
input:focus,
input:focus-visible,
textarea:focus-visible {
    outline: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input {
    line-height: 1;
}

textarea {
    resize: none;
}

textarea.app-input::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.bussi_head{
    display: flex;
    justify-content: space-between;
}

.app-input {
    width: 100%;
    padding: var(--size-12) var(--size-16);
    background-color: transparent;
    border: 1px solid var(--blue-tint-2);
    border-radius: var(--size-12);
    font-size: var(--font-16);
    font-weight: 600;
    color: var(--gray-shade-1);
    height: var(--height-48);
    transition: 0.3s all;
}

.app-input:focus {
    background-color: var(--blue-tint-1);
    border-color: var(--blue);
    color: var(--gray-shade-1);
}

.input-space {
    margin-bottom: var(--size-20);
}

.sm-input-space {
    margin-bottom: var(--size-12);
}

.md-input-space {
    margin-bottom: var(--size-16);
}

.lg-input-space {
    margin-bottom: var(--size-24);
}

.llg-input-space {
    margin-bottom: var(--size-32);
}

.xl-input-space {
    margin-bottom: var(--size-42) !important;
}

.app-input-icon-xs {
    width: 14px;
    height: 14px;
}

.app-input-icon-sm {
    width: 16px;
    height: 16px;
}

.left-icon-input {
    padding-left: calc(var(--size-16) + var(--size-20) + var(--size-8));
}

.right-icon-input {
    padding-right: calc(var(--size-16) + var(--size-20) + var(--size-8));
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--size-12);
}

.input-grid.sm {
    grid-gap: var(--size-8);
}

.input-grid.xs {
    grid-gap: 4px;
}

.app-label {
    font-size: var(--font-16);
    font-weight: 600;
    color: var(--gray-tint-1);
    display: block;
    margin-bottom: 4px;
}

input[type="password"] {
    padding-right: calc(var(--size-16) + 24px + 4px) !important;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: var(--size-16);
    transform: translateY(-50%);
    color: var(--gray-tint-2);
}

.password-toggle i {
    width: 24px;
    height: 24px;
}


.header_menus {
    display: flex;
    flex-direction: row;
}

/* DROPDOWN */
.dropdown-toggle::after {
    display: none;
}

.sb-dropdown .dropdown-menu {
    border: none;
    background-color: var(--white);
    box-shadow: 0px 4px 40px 0px #0000001a;
}

.sb-dropdown.lg .dropdown-menu {
    padding: var(--size-16);
}

.sb-dropdown.sm .dropdown-menu {
    padding: var(--size-12);
}

.container {
    padding: 0 15px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT UTILITY START */
h1,
.h1 {
    font-size: var(--font-56);
}

h2,
.h2 {
    font-size: var(--font-40);
}

h3,
.h3 {
    font-size: var(--font-32);
}

h4,
.h4 {
    font-size: var(--font-24);
}

h5,
.h5 {
    font-size: var(--font-20);
}

h6,
.h6 {
    font-size: var(--font-18);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.3;
}

p,
.p {
    font-size: var(--font-16);
}

p.small,
.p.small {
    font-size: var(--font-14);
}

.text-blue {
    color: var(--blue) !important;
}

.text-gray-tint-3 {
    color: var(--gray-tint-3) !important;
}

.text-gray-shade-1 {
    color: var(--gray-shade-1);
}

/* TEXT UTILITY END */

/* IMAGE UTILITY START */
.img img,
.img svg {
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

/* .contain-img img,
.contain-img svg {
  object-fit: contain;
} */

.cover-img img,
.cover-img svg {
    object-fit: cover;
}

/* IMAGE UTILITY END */

/* BUTTON START */
button:focus-visible {
    outline: none;
}

.sb-btn {
    text-align: center;
    transition: 0.3s all;
    font-size: var(--font-18);
    font-weight: 600;
    border-radius: var(--size-12);
    padding: var(--size-12) var(--size-24);
    line-height: 1.3;
}
.location-icon-wrap{
    border: 1px solid #C7C7EA;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
}
.salon-location-list{
    gap: 32px;
}
.salon-location-card{
    border: 1px solid #C7C7EA;
    border-radius: 10px;
    padding: 20px;
}

.sb-btn-new.blue {
    text-align: center;
    transition: 0.3s all;
    font-size: var(--font-18);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 37px;
    line-height: 1.3;
   width: fit-content;
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}



.main_head {
    display: flex;
    justify-content: space-between;
    /* gap: 20px; */
}

.pro_name {
    color: black;
    font-family: "Nunito Sans 7pt";
    font-weight: 600;
    font-size: 18px;
}

.hide_menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;

    /* Ensure justification works across browsers */
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;

    /* Additional properties for WebKit browsers */
    -webkit-box-pack: end !important;

    /* Ensure full width */
    width: 100% !important;
}


@media (max-width: 992px) {
    .main_head {
        justify-content: space-between;
    }
    .bussi_head{
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {

    .main_head {
        justify-content: space-between;
    }

    .bussi_head{
        display: flex;
        justify-content: flex-end;
    }

    .hide_menu {

        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;

        /* Ensure justification works across browsers */
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;

        /* Additional properties for WebKit browsers */
        -webkit-box-pack: end !important;

        /* Ensure full width */
        width: 100% !important;
    }


}

@media (max-width: 576px) {


    .main_head {
        justify-content: flex-end;
    }

    .bussi_head{
        display: flex;
        justify-content: flex-end;
    }

}

@media (max-width: 480px) {
    .sb-btn {
        padding: var(--size-8) var(--size-12);
        font-size: 10.5px !important;
    }

    .main_head {
        justify-content: flex-end;
    }
    .bussi_head{
        display: flex;
        justify-content: flex-end;
    }

}

.sb-btn.sm-space {
    padding: calc(var(--size-12) - 2px) var(--size-24);
}

.sb-btn.disabled,
.sb-btn:disabled {
    opacity: 0.5;
}

.sb-btn.sm {
    font-size: var(--font-16);
}

.sb-btn.xs {
    font-size: var(--font-14);
}

.sb-btn.blue {
    font-weight: 600;
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
    border-radius: 8px;
    font-size: 16px;
    padding: 12px 37px;
}

.sb-btn.blue:hover {
    background-color: var(--white);
    color: var(--blue);
}

.sb-btn.transparent {
    color: var(--blue);
    background-color: transparent;
    border: 1px solid var(--blue-tint-2);
}

.sb-btn.transparent:hover {
    background-color: var(--blue-tint-2);
}

.sb-btn.theme-bordered {
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.sb-btn.theme-bordered:hover {
    background-color: var(--blue);
    color: var(--white);
}

.sb-btn.gray-bordered {
    background-color: transparent;
    border: 1px solid var(--gray-tint-3);
    color: var(--gray-tint-3);
}

.sb-btn.gray-bordered:hover {
    background-color: var(--gray-tint-3);
    color: var(--white);
}

.sb-btn.red-bordered {
    background-color: transparent;
    border: 1px solid var(--red);
    color: var(--red);
}

.sb-btn.red-bordered:hover {
    background-color: var(--red);
    color: var(--white);
}

.sb-btn.yellow-bordered {
    background-color: transparent;
    border: 1px solid #ff9e0d;
    color: #ff9e0d;
}

.sb-icon {
    padding: var(--size-12);
    width: 48px;
    height: 48px;
    border-radius: var(--size-8);
}

.sb-icon i,
.sb-btn-icon {
    width: var(--size-24);
    height: var(--size-24);
}

.btn-flush {
    font-size: var(--font-18);
    font-weight: 600;
    color: var(--blue);
}

.icon-size {
    width: 20px;
    height: 20px;
}

/* BUTTON END */

/* HEADER START */
.hamburger {
    z-index: 3;
    display: none;
}

.header_menus {
    display: flex;
    flex-direction: row;
}




.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--blue);
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 15px;
    margin-left: auto;
}

.show-menu .hamburger .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.show-menu .hamburger .line:nth-child(2) {
    opacity: 0;
}

.show-menu .hamburger .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

.show-menu {
    overflow: hidden;
}

/* HEADER END */

/* CHECKBOX START */
.checkbox-input label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-16);
    font-weight: 600;
    color: var(--gray-shade-1);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checkbox-input label:before {
    -webkit-appearance: none;
    background-color: initial;
    border: 1.5px solid var(--blue);
    border-radius: 3px;
    content: "";
    cursor: pointer;
    display: inline-block;
    margin-right: var(--size-8);
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    vertical-align: middle;
}

.checkbox-input label.sm::before {
    max-height: 18px;
    max-width: 18px;
    min-height: 18px;
    min-width: 18px;
}

.checkbox-input input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    left: 7px;
    top: 7.5px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3337 1L5.00033 9L1.66699 5.36364' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 8px;
}

.checkbox-input input:checked+label.sm:after {
    left: 5px;
    top: 7.5px;
    width: 8px;
    height: 6px;
}

.checkbox-input input:checked+label:before {
    background: var(--blue);
}

/* CHECKBOX END */

/* MODAL START */
.sb-modal .modal-content {
    border: none;
    border-radius: var(--size-24);
    padding: var(--size-32);
    background-color: var(--white);
}

.sb-modal .modal-body {
    padding: 0;
}

.modal-heading-wrap {
    padding-bottom: var(--size-16);
    border-bottom: 1px solid var(--blue-tint-2);
    margin-bottom: var(--size-20);
}

.sb-modal .md-input-space {
    margin-bottom: var(--size-20);
}

.delete-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(252, 0, 0, 0.1);
    color: var(--red);
    border-radius: 50%;
    margin-bottom: var(--size-20);
}

.delete-heading {
    line-height: 1.36;
    margin-bottom: var(--size-12);
}

.sb-modal .icon-size {
    width: var(--size-32);
    height: var(--size-32);
}

/* MODAL END */

/* DATEPICKER CUSTOMIZATION START */
.sb-datepicker.ui-datepicker {
    width: 360px;
}

.sb-datepicker.ui-widget.ui-widget-content {
    font-family: var(--font-primary);
    padding: var(--size-20);
    border-radius: var(--size-12);
    background: var(--white);
    box-shadow: 0px 2px 12px 0px rgba(35, 52, 108, 0.15);
    border: none;
    z-index: 99999 !important;
}

.sb-datepicker .ui-widget-header {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.sb-datepicker.ui-datepicker .ui-datepicker-title {
    font-family: var(--font-primary);
    font-size: var(--font-18);
    font-weight: 600;
    color: #1f1f28;
}

.sb-datepicker.ui-datepicker .ui-datepicker-prev,
.sb-datepicker.ui-datepicker .ui-datepicker-next {
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.sb-datepicker.ui-datepicker .ui-datepicker-prev:focus-visible,
.sb-datepicker.ui-datepicker .ui-datepicker-next:focus-visible {
    outline: none;
}

.sb-datepicker .ui-state-hover,
.sb-datepicker.ui-widget-content .ui-state-hover,
.sb-datepicker .ui-widget-header .ui-state-hover,
.sb-datepicker .ui-state-focus,
.sb-datepicker.ui-widget-content .ui-state-focus,
.sb-datepicker .ui-widget-header .ui-state-focus,
.sb-datepicker .ui-button:hover,
.sb-datepicker .ui-button:focus {
    background-color: transparent;
    border: none;
}

.sb-datepicker.ui-datepicker .ui-datepicker-prev {
    left: 0;
}

.sb-datepicker.ui-datepicker .ui-datepicker-next {
    right: 0;
}

.sb-datepicker.ui-datepicker .ui-datepicker-prev,
.sb-datepicker.ui-datepicker .ui-datepicker-next,
.sb-datepicker.ui-datepicker .ui-datepicker-prev span,
.sb-datepicker.ui-datepicker .ui-datepicker-next span {
    width: 25px;
    height: 25px;
}

.sb-datepicker.ui-datepicker .ui-datepicker-prev span {
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='25' viewBox='0 0 26 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 6.5L10.5 12.5L16.5 18.5' stroke='%2323346C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.sb-datepicker.ui-datepicker .ui-datepicker-next span {
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='25' viewBox='0 0 26 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 6.5L16.5 12.5L10.5 18.5' stroke='%2323346C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.sb-datepicker.ui-datepicker .ui-datepicker-prev span,
.sb-datepicker.ui-datepicker .ui-datepicker-next span {
    position: unset;
    margin: unset;
    background-position: center;
}

.sb-datepicker.ui-datepicker table {
    margin-bottom: 0;
}

.sb-datepicker.ui-datepicker th {
    font-size: var(--font-16);
    font-weight: 600;
    color: var(--gray-tint-1);
}

.sb-datepicker.ui-datepicker td {
    padding: 4px;
}

.sb-datepicker.ui-datepicker td span,
.sb-datepicker.ui-datepicker td a {
    text-align: center;
    padding: 0;
    background-color: transparent;
    font-size: var(--font-16);
    font-weight: 600;
    color: #131313;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.sb-datepicker.ui-datepicker .ui-state-active {
    background-color: var(--blue);
    border-radius: 50%;
    color: var(--white);
}

.sb-datepicker.ui-datepicker .ui-datepicker-today a {
    /* color: var(--blue); */
}

.datepick-icon,
.arrow-icon {
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
}

.datepick-icon {
    left: var(--size-16);
}

.arrow-icon {
    right: var(--size-16);
}

/* DATEPICKER CUSTOMIZATION END */

/* PILL CHECKBOX / RADIO START */
.pill-checkbox label {
    padding: var(--size-8) var(--size-20);
    font-size: var(--font-16);
    font-weight: 600;
    color: #a5a5a5;
    border: 1px solid #a5a5a5;
    border-radius: var(--size-8);
    cursor: pointer;
    width: 100%;
    transition: 0.3s all;
    outline: none;
}

.pill-checkbox label:focus {
    outline: none;
}

.pill-checkbox label.lg {
    height: var(--height-48);
}

.pill-checkbox input:checked+label {
    background-color: var(--blue-tint-1);
    border-color: var(--blue-tint-2);
    color: var(--blue);
}

/* PILL CHECKBOX / RADIO END */

/* TAB START */
.sb-tab-pills {
    margin-bottom: var(--size-24);
    border: 1px solid var(--blue-tint-2);
    border-radius: var(--size-12);
    justify-content: space-between;
    height: var(--height-48);
    flex-wrap: nowrap;
}

.sb-tab-pills .nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-tab-pills .nav-link {
    font-size: var(--font-16);
    font-weight: 600;
    color: #444444;
    padding: calc(var(--size-12) - 2px);
    height: 100%;
    border-radius: var(--size-12);
    width: 100%;
}

.sb-tab-pills.nav-pills .nav-link.active,
.sb-tab-pills.nav-pills .show>.nav-link {
    background-color: var(--blue-tint-1);
    color: var(--blue);
}

/* TAB END */

/* SWITCH START */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--blue-tint-2);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--blue);
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px) translateY(-50%);
    -ms-transform: translateX(16px) translateY(-50%);
    transform: translateX(16px) translateY(-50%);
}

.app-input.red {
    color: var(--red);
    border-color: var(--red);
}

/* SWITCH END */

/* SWIPER BUTTON START */
.sb-swiper-btn .swiper-button-prev {
    margin-right: var(--size-24);
}

.sb-swiper-btn .swiper-button-next,
.sb-swiper-btn .swiper-button-prev {
    position: unset;
    margin-top: unset;
    width: var(--height-48);
    height: var(--height-48);
    background-color: var(--blue-tint-1);
    border-radius: var(--size-8);
    color: var(--blue);
}

.sb-swiper-btn .swiper-button-next.small,
.sb-swiper-btn .swiper-button-prev.small {
    width: 32px;
    height: 32px;
}

.sb-swiper-btn .swiper-button-next.small i,
.sb-swiper-btn .swiper-button-prev.small i {
    width: 20px;
    height: 20px;
}

.sb-swiper-btn .swiper-button-next:after,
.sb-swiper-btn .swiper-button-prev:after {
    display: none;
}

/* SWIPER BUTTON END */

/* PHONE NUMBER INPUT START */
.phone-dropdown {
    position: absolute;
    top: 50%;
    left: var(--size-16);
    transform: translateY(-50%);
}

.phone-dropdown button::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--blue-tint-2);
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.phone-input {
    padding-left: 90px;
}

/* PHONE NUMBER INPUT END */

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviewSwiper .swiper-wrapper {
    align-items: stretch;
}

.reviewSwiper .swiper-slide {
    height: auto !important;
}

.person-name,
.service-booked-name {
    max-width: 50%;
    flex-shrink: 0;
}

.custom-tel-input .iti--separate-dial-code .iti__selected-flag {
    border-top-left-radius: var(--size-12);
    border-bottom-left-radius: var(--size-12);
}

/* HTML SELECT */

select:focus-visible {
    outline: none;
}
