/* START: GENERAL */   
body {
    margin:0;
    padding:0;
    padding-top:75px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--background-color-1);
    color: var(--text-color-1);
    font-size:16px;
}
body:has(.not-iframe) {
    background: var(--background-color-5);
    overflow:hidden;
}
div.not-iframe {
    scrollbar-width: none;
    width: 500px;
    background: var(--background-color-1);
    height: calc(100vh - 50px);
    position: absolute;
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
    top: 25px;
    left: 50%;
    overflow:scroll;
    border-radius: 15px;
    margin-left: -250px;
    padding-top:75px;
    box-sizing: border-box;
}
div.not-iframe:has(#scrollable-categories-pusher) {
    padding-top:0;
}
@media (max-width:500px) {
    div.not-iframe {
        top:0;
        width:100%;
        height:100vh;
        left:0;
        margin-left:0;
        border-radius:0;
    }
}
.container {
    max-width:500px;
    box-sizing:border-box;
    width:100vw;
    margin:0 auto;
}
.box {
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
    background: var(--background-color-1);
    padding: 25px;
    border-radius:15px;
    margin: 15px;
    border:0.5px solid var(--border-color-1);
}
.box.no-border {
    box-shadow:none;
    border:0;
    font-size:17px;
}
/* END: GENERAL */


/* HEADINGS */
.label-heading {
    font-size: 13px;
    color: #fff;
    background: var(--widget-color);
    border-radius: 15px;
    padding: 5px 15px;
    display: inline-block;
    left: 50%;
    width: fit-content;
    position: relative;
    transform: translateX(-50%);
}
.plain-heading {
    font-size:16px;
    margin-bottom:25px;
    text-align:center;
}
/* END: HEADINGS */


/* START: POWERED BY BLOCK */
.poweredby {
    transition:color 0.2s ease-in-out;
    position: sticky;
    top: 1000px;
    color: var(--text-color-2);
    text-align: center;
    font-size: 13px;
    margin: 50px auto;
    display: block;
    text-decoration: none;
}
.poweredby:hover {
    color: var(--text-color-1);
}
/* END: POWERED BY BLOCK */


/* START: LANGUAGE SWITCHER */
#languageSwitcher {
    position: fixed;
    top: 75px;
    left: 50%;
    z-index:3;
    border-radius:0;
    border-top:0;
    border-left:0;
    border-right:0;
    display:none;
    margin: 0;
    transform: translateX(-50%);
    overflow: scroll;
    max-height: min(200px, calc(100vh - 150px));
}
body .not-iframe #languageSwitcher {
    top:100px;
}
@media (max-width:500px) {
    body .not-iframe #languageSwitcher {
        top:75px;
    }
}
#languageSwitcher a:not(#languageSwitcher a:last-of-type) {
    margin-bottom:15px;
}
/* END: LANGUAGE SWITCHER */


/* START: HEADER */
body header {
    background: var(--background-color-1);
    position: fixed;
    z-index: 9999;
    top: 0;
    height: 75px;
    line-height:75px;
    display:flex;
    justify-content: space-between;
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
    left: 50%;
    transform: translateX(-50%);
}
body .not-iframe > header {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    top:25px;
}
@media (max-width:500px) {
    body .not-iframe > header {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        top:0;
    }
}
body header > * {
    white-space:nowrap;
}
body header > span.left, body header > span.right {
    flex:1;
}
body header > span.left {
    margin-left:15px;
}
body header > span.right {
    text-align: right;
    margin-right:15px;
}
body header > span.title {
    color: var(--widget-color);
    filter:brightness(0.85);
    font-size: 18px;
    font-weight:700;
}
body header span.link > a {
    color: var(--text-color-1);
}
body header span.link {
    cursor:pointer;
}
body header span.link:hover, body header span.link > a:hover {
    color:var(--text-color-2);
}
/* END: HEADER */


/* START: BUTTONS */
.button, input[type=submit] {
    transition: all .2s ease-in-out;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    background:var(--widget-color);
    padding: 10px;
    color:var(--text-color-3);
    cursor: pointer;
    font-size: 14px !important;
    border-radius: 7.5px;
    border: none;
    text-decoration: none !important;
    font-weight: 700;
    display: inline-block;
}
.button:hover, input[type=submit]:hover, button:hover, .button.selected {
    color:var(--text-color-3);
    background:var(--widget-color-light);
}
.button.secondary {
    background:var(--widget-color-light);
    color:var(--text-color-3);
}
.button.secondary:hover {
    background:var(--widget-color);
}
.button.disabled, input.disabled {
    opacity: 0.35;
    pointer-events: none;
}
.button.small, input[type=submit].small, button.small {
    font-size:13px !important;
}
/* END: BUTTONS */


/* START: FORMS */
.label, label {
    font-size: 13px;
    color: var(--text-color-1);
    margin-bottom:15px;
    display: block;
    font-weight:700;
}
input[type=text], input[type=email], input[type=password], select, textarea, input[type=number], input[type=time] {
    transition: all .2s ease-in-out;
    border: 1px solid var(--border-color-2);
    padding: 10px;
    background:var(--background-color-1);
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    display: block;
    width: 100%;
    color: var(--text-color-1);
    border-radius:7.5px;
    margin-bottom: 20px;
    appearance:none;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, select:focus, textarea:focus, input[type=number]:focus, input[type=time]:focus {
    outline:1px solid var(--border-color-2);
}
input.invalid, textarea.invalid, select.invalid, label:has(input[type="checkbox"].invalid)::before, label:has(input[type="radio"].invalid)::before {
    border-color:var(--negative-color);
}
form a, label a {
    color: var(--text-color-1);
}
form a:hover {
    text-decoration: underline;
}
label:has(input[type="checkbox"]) > input[type="checkbox"], label:has(input[type="radio"]) > input[type="radio"] {
    display: none;
}
label:has(input[type="checkbox"]), label:has(input[type="radio"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size:16px;
    font-weight:400;
    margin-bottom:0;
}
label:has(input[type="checkbox"])::before, label:has(input[type="radio"])::before {
    content: '';
    display: inline-block;
    width: 20px;
    min-width:20px !important;
    height: 20px;
    margin-right:10px;
    border:1px solid var(--border-color-2);
    box-sizing: border-box;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
label:has(input[type="checkbox"])::before {
    border-radius:7.5px;
}
label:has(input[type="radio"])::before {
    border-radius:25px;
}
label:has(input[type="checkbox"]:checked)::before, label:has(input[type="radio"]:checked)::before {
    background-color: var(--widget-color);
    border-color: var(--widget-color);
    text-align: center;
    color:var(--text-color-3);
    line-height: 20px;
}
label:has(input[type="checkbox"]:disabled)::before, label:has(input[type="radio"]:disabled)::before {
    opacity:0.35;
}
label:has(input[type="checkbox"]:checked)::before {
    content: '\f00c';
}
.right-symbol, .left-symbol {
    position:relative;
    display:block;
}
.right-symbol > input {
    padding-right:30px !important;
}
.left-symbol > input {
    padding-left:30px !important;
}
.right-symbol .symbol, .left-symbol .symbol {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.right-symbol .symbol {
    right: 10px;
}
.left-symbol .symbol {
    left: 10px;
}
/* END: FORMS */


/* START: INFO */
p.errorMessage {
    display:none;
}
p.info, p.errorMessage {
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
    padding: 15px;
    background: var(--background-color-1);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 13px;
    border-radius: 15px;
    border: 0.5px solid var(--border-color-1);
}
p.info.red, p.errorMessage  {
    background: var(--negative-color);
    color:var(--text-color-3);
}
p.info.green {
    background: var(--positive-color);
    color:var(--text-color-3);
}
/* END: INFO */


/* START: BOOKINGS LOCATION BOXES */
.locations-box {
    padding:0;
    margin:20px 15px;
}
.locations-box-split {
    padding:35px;
    gap:5px;
    display: flex; 
    justify-content: space-between;
    align-items: center;
}
.locations-box-split h2 {
    font-size:16px;
}
@media (max-width:400px) {
    .locations-box-split {
        display:block;
    }
    .locations-box-split > *:last-child {
        margin-top:10px;
    }
}
.locations-box-photo {
    object-fit:cover;
    width:100%;
    max-height:150px;
    border-top-left-radius:15px;
    border-top-right-radius:15px;
}
.locations-box-address {
    font-size:13px;
}
.locations-box-split .button {
    white-space: nowrap;
}
/* END: BOOKINGS LOCATION BOXES */


/* START: FLOATING BOX */
.floating-box {
    gap:10px;
    display: none;
    background: var(--background-color-1);
    position: fixed;
    align-items:center;
    bottom: 0;
    padding: 15px;
    z-index:9;
    box-shadow:var(--box-shadow-color) 0px -2px 10px 0px;
    border-top:0.5px solid var(--border-color-4);
}
.floating-box > span:first-child {
    flex:1;
}
.not-iframe .floating-box {
    bottom:25px;
    border-bottom-left-radius:15px;
    border-bottom-right-radius:15px;
}
@media (max-width:500px) {
    .not-iframe .floating-box {
        bottom:0;
        border-bottom-left-radius:0;
        border-bottom-right-radius:0;
    }
}
.floating-box #totalPrice {
    font-weight: 700;
    font-size: 18px;
}
.floating-box #totalOverview {
    max-height:100px;
    display: block;
    overflow: scroll;
}
.floating-box #totalOverview .total-overview-addon {
    font-size: 12px;
    display: block;
}
.floating-box #totalOverview .total-overview-item {
    margin-bottom: 5px;
    font-size: 13px;
    display: block;
}
.floating-box #totalOverview .total-overview-scroll-warning {
    font-size: 13px;
    color: var(--text-color-5);
    display: inline-block;
    margin-bottom: 5px;
}
/* END: FLOATING BOX */


/* START: SCROLLABLE CATEGORIES */
#scrollable-categories {
    background: var(--background-color-1);
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
    padding: 15px;
    position: fixed;
    top: 75px;
    height: 75px;
    z-index:2;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#scrollable-categories::-webkit-scrollbar {
    display: none;
}
#scrollable-categories #left-scroll-arrow, #scrollable-categories #right-scroll-arrow {
    top: 98.5px !important;
    border-radius:100px;
    position:fixed;
    background:var(--background-color-1);
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
}
#scrollable-categories #right-scroll-arrow {
    margin-left: min(calc(100vw - 54px), 446px);
}
.not-iframe #scrollable-categories {
    top:100px;
}
.not-iframe #scrollable-categories #left-scroll-arrow, .not-iframe #scrollable-categories #right-scroll-arrow {
    top: 123.5px !important;
}
@media(max-width:500px) {
    .not-iframe #scrollable-categories {
        top:75px;
    }
    .not-iframe #scrollable-categories #left-scroll-arrow, .not-iframe #scrollable-categories #right-scroll-arrow {
        top: 98.5px !important;
    }
}
#scrollable-categories-pusher {
    height:75px;
}
.not-iframe #scrollable-categories-pusher {
    height:150px;
}
.category-link {
    border-radius: 100px;
    font-size: 13px !important;
    font-weight: 400;
    margin-right:5px;
    background:none !important;
    color:var(--text-color-1) !important;
    border:1px solid var(--border-color-5) !important;
}
.category-link.current, .category-link:hover {
    border: 1px solid var(--widget-color) !important;
}
.category-heading {
    background:var(--background-color-1);
    color:var(--text-color-3);
    font-weight:normal !important;
    position: sticky;
    top: 150px;
    text-align: center;
    word-wrap: break-word;
}
.category-heading span {
    background: var(--widget-color);
    width:200px;
    border-radius:100px;
    display: inline-block;
    padding: 10px;
    font-size:13px;
    margin:10px auto;
}
.category-description {
    font-size:13px;
    padding:15px;
    text-align: center;
    font-style: italic;
}
/* END: SCROLLABLE CATEGORIES */


/* START: ITEMS-BLOCK */
.items-block .items-block-details-and-button {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.items-block .items-block-details-and-button div:first-child {
    flex:1;
}
.items-block-image {
    height: 200px;
    cursor:pointer;
    width: 100%;
    object-fit: contain;
    margin: 0 auto 25px;
    display: block;
}
.items-block-thumbnail-images {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    justify-content: center;
}
.items-block-thumbnail-image {
    max-width: 80px;
    aspect-ratio: 1;
    object-fit: contain;
    border: 0.5px solid var(--border-color-1);
    padding: 5px;
    box-sizing: border-box;
    border-radius: 15px;
    cursor: pointer;
}
.items-block-counter {
    text-align:right;
    white-space: nowrap;
}
.items-block-counter > span {
    margin-right: 10px;
    min-width: 20px;
    display: inline-block;
}
.items-block-name {
    font-weight:700;
    margin-bottom:5px
}
.items-block-duration-and-price {
    font-size:15px;
    margin-bottom:5px;
}
.items-block-overlap-warning, .items-cant-book-warning {
    display:none;
    font-size: 13px;
    max-width: 200px;
}
.items-block-cant-book-warning {
    font-size: 13px;
    max-width: 200px;
}
.items-block-description {
    font-size:13px;
    margin-top:15px;
    margin-bottom:15px;
    overflow:hidden;
}
.items-block-description.collapsed {
    max-height: 75px;
}
.items-block-more-link {
    font-size:13px;
    display:none;
    color: var(--widget-color);
    font-weight: 700;
}
.items-block-addons label {
    font-size:15px !important;
}
.no-services-yet {
    margin-top:25px; 
    font-size:13px;
    text-align:center;
}
/* END: ITEMS-BLOCK */

/* START: CALENDAR AVAILABILITY BLOCK */
.calendar-availability-block {
    padding:25px 0 0;
    overflow:hidden;
}
.calendar-availability-block-container {
    position:relative;
}
.calendar-availability-block-container #left-scroll-arrow, .calendar-availability-block-container #right-scroll-arrow {
    top:12.5px !important;
    border-radius:100px;
    position:absolute;
    background:var(--background-color-1);
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
}
.calendar-availability-block-container #left-scroll-arrow {
    margin-left: 10px;
}
.not-iframe #scrollable-categories #left-scroll-arrow, .not-iframe #scrollable-categories #right-scroll-arrow {
    top: 123.5px !important;
}
@media(max-width:500px) {
    .not-iframe #scrollable-categories {
        top:75px;
    }
    .not-iframe #scrollable-categories #left-scroll-arrow, .not-iframe #scrollable-categories #right-scroll-arrow {
        top: 98.5px !important;
    }
}
.calendar-availability-block-container #right-scroll-arrow {
    margin-left: min(calc(100vw - 64px), 436px);
}
.calendar-availability-block-container #dates {
    padding: 0px 25px;
    margin-top: 20px;
    display: flex;
    overflow:scroll;
    max-width:100%;
    column-gap: 5px;
}
.calendar-availability-block-container #dates > div {
    border-radius:7.5px;
    flex-basis: 0;
    min-width: 100px;
    cursor:pointer;
    width: 100px;
    font-size: 13px;
    text-align: center;
    padding: 5px;
    background:var(--background-color-1);
    border:1px solid var(--border-color-5);
    box-sizing: border-box;
}
.calendar-availability-block-container #dates > div.unavailable-date, .calendar-availability-block-container #dates > div:hover  {
    background: var(--background-color-2);
}
.calendar-availability-block-container #dates > div .date-name {
    color:var(--text-color-6);   
}
.calendar-availability-block-container #dates > div.selected {
    background:var(--widget-color) !important;
    color:var(--text-color-3) !important;
}
.calendar-availability-block-container #dates > div.selected .date-name {
    color:var(--text-color-3);
}
.calendar-availability-block #times {
    padding:0 25px 25px;
    overflow: scroll;
    max-height:250px;
    background:var(--background-color-1);
    margin-top:15px;
}
.calendar-availability-block #times > .time {
    border: 1px solid var(--border-color-5);
    margin-top: 5px;
    display: flex;
    font-size: 13px;
    padding: 5px;
    cursor:pointer;
    border-radius: 7.5px;
}
.calendar-availability-block #times > .time:hover {
    background:var(--background-color-2);
}
.calendar-availability-block #times > .time.selected {
    background:var(--widget-color);
    color:var(--text-color-3);
}
.calendar-availability-block #times > .no-times {
    margin-top: 20px;
    font-size:14px;
    text-align: center;
}
.calendar-availability-block #times > .no-times a {
    color:var(--widget-color);
    font-weight:700;
}
#loadingText {
    margin-bottom:25px;
}
/* END: CALENDAR AVAILABILITY BLOCK */


/* START: CALENDAR SELECTED SERVICES BLOCK */
#selectedServices {
    margin-top:15px;
}
#selectedServices .select-employee-container-multiple {
    display: flex;
    gap: 15px;
    font-size: 14px;
    align-items: center;
    padding-top: 20px;
    border-top: 0.5px solid var(--border-color-1);
    margin-top: 20px;
}
#selectedServices .select-employee-container-single-employee {
    font-size: 14px;
    padding-top: 20px;
    border-top: 0.5px solid var(--border-color-1);
}
#selectedServices .select-employee-container-single-service, #selectedServices .service-container-without-employee {
    font-size:14px;
    padding-top:20px;
    border-top:0.5px solid var(--border-color-1);
    margin-top:20px;
}
#selectedServices .select-employee-container-multiple > div:first-child {
    flex:1;
}
#selectedServices .select-employee-container-multiple > div:first-child strong, #selectedServices .select-employee-container-single-service strong, #selectedServices .service-container-without-employee strong {
    margin-bottom: 5px;
    display: inline-block;
}
#selectedServices .select-employee-container-multiple > div:nth-child(2) { 
    flex-shrink:0;
    margin:0;
    max-width:170px;
}
#selectedServices .selected-services-addon {
    font-size: 12px;
}
/* END: CALENDAR SELECTED SERVICES BLOCK */


/* START: CUSTOM SELECT ELEMENT */
.custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}
.custom-select:has(.custom-select-items:not(.custom-select-hide)) .custom-select-selected {
    outline:1px solid var(--border-color-2);
}
.custom-select-selected {
    padding: 10px;
    border: 1px solid var(--border-color-5);
    cursor: pointer;
    user-select: none;
    display: flex;
    border-radius: 7.5px;
    align-items: center;
    font-weight: normal;
    font-size:13px;
    width:100%;
    box-sizing: border-box;
}
.select-employee-container-single-employee .custom-select-selected {
    max-width: 300px;
    margin: 0 auto;
}
.custom-select-items {
    position: absolute;
    background-color: var(--background-color-1);
    border: 1px solid var(--border-color-5);
    width: 100%;
    z-index: 99;
    max-height:200px;
    overflow-y: auto;
    border-radius:7.5px;
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
}
.select-employee-container-single-employee .custom-select-items {
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
}
.custom-select-item {
    padding: 10px;
    font-size:13px;
    font-weight:normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}
.custom-select-item:hover, .custom-select-item.selected {
    background-color: var(--background-color-2);
}
.custom-select-hide {
    display: none;
}
.custom-select-employee-name {
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.custom-select-employee-photo {
    min-width: 35px;
    min-height: 35px;
    border-radius: 50px;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
}
/* END: CUSTOM SELECT ELEMENT */


/* START: TERMS AND CONDITIONS + PRIVACY POLICY + IMAGE POPUP */
#termsAndConditions, #privacyPolicy, #imagePopup {
    display:none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% - 15px));
    z-index: 99999999;
    width: calc(100% - 30px);
    box-sizing: border-box;
    max-width: 620px;
    overflow: scroll;
    max-height: calc(100vh - 30px);
}
#termsAndConditions .close-icon, #privacyPolicy .close-icon, #imagePopup .close-icon {
    color: var(--text-color-7);
    top: -15px;
    margin-top: -15px;
    margin-right: -10px;
    float: right;
    position: sticky;
    width: 20px;
    text-align: center;
    background: var(--background-color-1);
}
#termsAndConditionsOverlay, #privacyPolicyOverlay, #imagePopupOverlay {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(110 110 110 / 10%);
    z-index: 9999999;
}
#cancelationTerms {
    font-size:14px;
}
#privacyPolicyLink {
    font-size:13px;
    margin:25px 40px;
}
#privacyPolicyLink a {
    color: var(--text-color-7);
}
#imagePopup img {
    width: 100%;
}
/* END: TERMS AND CONDITIONS + PRIVACY POLICY + IMAGE POPUP */


/* START: GIFT CARD INPUT */
#payWithGiftCardButton {
    display:block;
    margin-top:15px;
    color:var(--widget-color);
    font-size:14px;
    font-weight:700;
}
/* END: GIFT CARD INPUT */

/* START: IMAGES UPLOADS */
#imagesPreview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.image-container {
    border: 1px solid var(--border-color-5);
    height: min-content;
}
.image-container img {
    width:100%;
}
.image-container .remove-image-icon { 
    position: absolute;
    margin-left: -20px;
    background: var(--background-color-1);
    width: 20px;
    text-align: center;
    height: 20px;
    line-height: 20px;
    cursor:pointer; 
}
#maximumImageUploadsReachedWarning {
    font-size: 13px;
    display: none;
    margin-bottom: 20px;
}
/* END: IMAGES UPLOADS */


/* START: CALENDAR-DIALOG */
#calendar-dialog {
    position: fixed;
    background: var(--background-color-1);
    box-shadow: var(--box-shadow-color) 0px 2px 10px 0px;
    padding: 10px;
    z-index: 999999999;
    border-radius:7.5px;
    border:1px solid var(--border-color-4);
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
  font-weight: bold;
}
.calendar-arrow {
  cursor: pointer;
  user-select: none;
}
select.month-select,
select.year-select {
    border: none;
    background: none;
    appearance: none; /* Hide native arrows in some browsers */
    font-weight: bold;
    cursor: pointer;
    margin:0;
    padding:0;
    width:auto;
    font-size: 14px;
}
table {
  border-collapse: collapse;
  margin: 0 auto;
}
thead {
    color:var(--text-color-4);
}
th,td {
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 13px;
    padding: 2px;
}
button.calendar-day {
    width: 100%;
    color:var(--text-color-1);
    height: 100%;
    border: none;
    background: var(--background-color-5);
    cursor: pointer;
    border-radius: 7.5px;
}
.calendar-dialog-current-day {
  color: var(--widget-color) !important;
}
.calendar-dialog-selected-day, button.calendar-day:hover {
    background: var(--widget-color) !important;
    color: var(--text-color-3) !important;
}
/* END: CALENDAR-DIALOG */


/* START: PHONE DIALOG */
.phone-input {
    display:flex;
    gap:5px;
}
.phone-input .custom-select {
    flex: 0;
    height:100%;
}
.phone-input .custom-select .custom-select-selected {
    border:1px solid var(--border-color-2);
    font-size:16px;
}
.phone-input .custom-select .custom-select-items {
    width: min-content;
    white-space: nowrap;
}
.phone-input .custom-select .custom-select-item {
    font-size:16px;
}
/* END: PHONE DIALOG */


/* START: SOCIAL LINKS */
#social-links-box {
    display:flex;
    justify-content: space-around;
}
#social-links-box > a {
    font-size: 18px;
    color: var(--text-color-1);
}
/* END: SOCIAL LINKS */


/* START: ADD TO CALENDAR LINKS */
#add-to-calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: center;
}
/* END: ADD TO CALENDAR LINKS */


/* START: REVIEW STARS */
#review-stars {
    display: inline-block;
    color: var(--background-color-4);
    display: flex;
    justify-content: space-evenly;
    width: 200px;
    margin: 25px auto 50px;
    font-size: 24px;
    cursor: pointer;
}
#review-stars .hover, #review-stars .selected {
    color: var(--widget-color);
}
/* END: REVIEW STARS */


/* START: REVIEW SCORE STARS */
.review-score-stars {
    color:var(--widget-color);
    margin:15px 0;
    display:block;
}
.review-score-stars i:not(.review-score-stars i:first-child) {
    margin-left:3px;
}
/* END: REVIEW SCORE STARS */


/* START: REVIEW RESPONSE */
.review-response {
    padding: 25px;
    border: 1px solid var(--widget-color);
    border-radius: 15px;
    margin-top: 25px;
    width: calc(100% - 50px);
    min-width: 250px;
    box-sizing: border-box;
}
/* END: REVIEW RESPONSE */

/* START: MAX LENGTH COUNTER */
.max-length-counter {
    margin-top: -42px;
    float: right;
    margin-right: 7px;
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
}
.max-length-counter.max {
    color:var(--negative-color);
}
/* END: MAX LENGTH COUNTER */


/* START: TIME-BASED DISCOUNT */
.time-based-discount-label {
    background:var(--positive-color); 
    padding: 1px 5px; 
    margin-left: 5px;
    color: var(--text-color-3);
    font-size: 12px;
    border-radius: 7.5px;
    font-weight: 700;
    white-space:nowrap;
}
/* END: TIME-BASED DISCOUNT */


/* START: FORM SIGNATURE */
.form-signature-pad {
    border:1px solid var(--border-color-5);
    border-radius:7.5px;
    width: 100%;
}
.form-signature-clear-link {
    color: var(--text-color-6);
    font-size: 14px;
    text-decoration: none;
}
/* END: FORM SIGNATURE */


/* START: DIGITS */
.digits {
    display: flex;
    gap:15px;
}
.digits input {
    font-size: 22px;
    text-align: center;
    caret-color: transparent;
    padding: 15px 10px;
    cursor: pointer;
    -moz-appearance: textfield;
}
.digits input::-webkit-outer-spin-button,
.digits input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* END: DIGITS */

/* START: WEBSTORE */
.products-box {
    display: flex;
    align-items: center;
}
#priceOverviewProducts, #priceOverviewDeliveryMethod {
    font-size:13px;
}
.webstoreFooterText {
    font-size:13px;
    border-radius:15px;
    margin:40px;
}
#returnPolicy {
    font-size:13px;
    margin-bottom:10px;
    overflow:hidden;
}
#returnPolicy.collapsed {
    max-height: 75px;
}
#returnPolicyShowMoreLessButton {
    font-size:13px;
    display:none;
    color: var(--widget-color);
    font-weight: 700;
}
/* END: WEBSTORE */

