/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Common
2.0 Steps
2.01 MUNICIPALITY_INIT
2.02 MUNICIPALITY_BOOKING_SLOTS
2.03 MUNICIPALITY_CONTACT_DETAILS
2.04 MUNICIPALITY_MEETING_CONFIRMATION

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

/*- 1.0 Common */
.promotional-offers ~ .uj-wrapper {
    margin-top: var(--custom-theme-promotional-offers-height);
}
.uj-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.admin-bar .uj-wrapper {
    padding-bottom: 32px;
}
.uj-footer-push {
    flex: 1 1 auto;
    min-height: 96px;
}

.uj-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E4DFD8;
    height: 100px;
    margin-bottom: 9px;
}
.uj-header__logo img {
    display: block;
}


.uj-header__contact .contact-cm {
    display: none;
}
.contact-cm {
    display: flex;
    gap: 15px;
}
.contact-cm__icon {
    width: 40px;
    height: 40px;
    background: var(--custom-theme-gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}
.contact-cm__phone-number {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.1;
    text-decoration: none;
}
.contact-cm__schedules {
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-top: -3px;
}

.uj-footer {
    background: #3C3937;
    color: #FFF;
}
.uj-footer > .layout-width {
    position: relative;
    padding-top: 23px;
    padding-bottom: 16px;
}
.uj-footer-legal-links {
    margin-bottom: 0!important;
}
.uj-footer-legal-links ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.uj-footer-legal-links a {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.43;
    color: inherit;
}
.admin-bar .uj-footer-legal-links {
    margin-bottom: 32px;
}


.uj-steps {
    min-height: calc(100vh - 258px);
}
.uj-steps__nav {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.is-style-link .uj-steps__nav__back {
    gap: 15px;
}
.uj-steps__nav__back .icon-back {
    height: 1.5em;
}
.uj-steps__nav.has-progress {
    margin-bottom: 51px;
}
.uj-steps-progress {
    display: flex;
    counter-set: progress 0;
    gap: 14px;
    --custom-theme-uj-step-progress: 0%;
    padding: 0;
    margin: 0 0 0 auto;
}
.uj-steps-progress li {
    position: relative;
    list-style-type: none;
    counter-increment: progress 1;
}
.uj-steps-progress li,
.uj-steps-progress li .text {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.43;
    padding-right: 40px;
}
.uj-steps-progress li:last-child,
.uj-steps-progress li:last-child .text {
    padding-right: 0;
}
.uj-steps-progress li::before,
.uj-steps-progress li .text::before {
    content: counter(progress);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
}
.uj-steps-progress li .text {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
}
/* not used here */
.uj-steps-progress__bar {
    display: none!important;
}
.uj-steps-progress__bar,
.uj-steps-progress__bar::after {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    width: 100%;
    height: 3px;
    background: #F6F3EE;
}
.uj-steps-progress__bar::after {
    content: '';
    top: 0;
    background: var(--custom-theme-gradient-orange);

    transition: 0.5s ease-in-out;
}
.uj-steps-progress li:first-child .uj-steps-progress__bar {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.uj-steps-progress li[aria-current="step"] .uj-steps-progress__bar::after {
    width: var(--custom-theme-uj-step-progress);
}
.uj-steps-progress li[aria-current="step"] ~ li .uj-steps-progress__bar::after {
    width: 0;
}
.uj-steps-progress li[aria-current="step"] {
    color: #E52638;
}
.uj-steps-progress li[aria-current="step"] .text {
    opacity: 1;
}

.uj-step {
    display: none;
}

.uj-step.is-active {
    display: block;
}

.uj-step__context,
.uj-step__title,
.uj-step__description {
    text-align: center;
}

.uj-step__title,
.uj-step__description {
    max-width: 665px;
    margin-left: auto;
    margin-right: auto;
}

.uj-step__title {
    margin-top: 24px;
}

.uj-step__context:empty {
    display: none;
}

.uj-step__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 54px auto;
}
.uj-step__form label {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
}

.uj-step__form-layout {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 30px;
}
.uj-step-form-item--full {
    width: 100%;
}
.uj-step-form-item--push {
    flex: 1 1 auto;
}
.uj-step-form-item--half {
    flex: 0 0 calc(50% - 15px);
}
.uj-step-form-item label {
    display: block;
    margin-bottom: 6px;
}
.uj-step-form-item__help {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.43;
    margin-top: 12px;
}

.uj-step__form input[type="text"],
.uj-step__form input[type="date"],
.uj-step__form input[type="email"],
.uj-step__form input[type="tel"],
.uj-step__form input[type="number"],
.uj-step__form textarea,
.uj-step__form .select2-selection--single,
.uj-step__form .uj-add-to-calendar-btn,
.uj-subscribe-online__full-commune{
    padding: 12px 16px 12px 20px;
    border: 1px solid #E4DFD8;
    border-radius: 10px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
    font-family: inherit;
    width: 100%;
}
.uj-step__form input[type="text"]:focus,
.uj-step__form input[type="date"]:focus,
.uj-step__form input[type="email"]:focus,
.uj-step__form input[type="tel"]:focus,
.uj-step__form input[type="number"]:focus,
.uj-step__form textarea:focus,
.uj-step__form .uj-add-to-calendar-btn:focus,
.uj-step__form .uj-add-to-calendar-btn.atcb-active {
    outline: 0;
    border-color: inherit;
}

.uj-step__form input[type="text"]::placeholder,
.uj-step__form input[type="date"]::placeholder,
.uj-step__form input[type="email"]::placeholder,
.uj-step__form input[type="tel"]::placeholder,
.uj-step__form input[type="number"]::placeholder,
.uj-step__form textarea::placeholder {
    color: #BDB7B0;
    opacity: 1;
}

.uj-step__form input[type="text"].is-invalid,
.uj-step__form input[type="date"].is-invalid,
.uj-step__form input[type="email"].is-invalid,
.uj-step__form input[type="tel"].is-invalid,
.uj-step__form input[type="number"].is-invalid,
.uj-step__form textarea.is-invalid,
.uj-step__form select.is-invalid ~ .select2 .select2-selection--single {
    border-color: #FF6262;
}

.uj-step__form input[type="number"] {
    appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
.uj-step__form input[type="number"]::-webkit-outer-spin-button,
.uj-step__form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.uj-step__form input[type="checkbox"],
.uj-step__form input[type="radio"] {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.uj-step__form input[type="date"] {
    text-transform: uppercase;
    appearance: textfield;
}

.uj-step__form .select2-container {
    width: 100%;
    display: block;
}
.uj-step__form .select2-container.select2-container--open:not([data-select2-id]) {
    top: 80px!important;
}
.uj-step__form .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.uj-step__form .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.uj-step__form .select2-selection--single,
.uj-step__form .uj-add-to-calendar-btn {
    height: 50px;
    min-width: 175px;
}
.uj-step__form .select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: 1rem;
}
.uj-step__form .select2-container--default.select2-container--disabled .select2-selection--single {
    background: none;
    border-color: #E4DFD8;
    color: #E4DFD8;
}
.uj-step__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit;
    padding-left: 0;
}
.uj-step__form .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__placeholder {
    color: #E4DFD8;
}
.uj-step__form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 8px;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    margin-top: -4px;
}
.uj-step__form .select2-container--default .select2-selection--single .select2-selection__arrow svg {
    display: block;
}
.uj .select2-dropdown {
    border-color: #E4DFD8;
    border-radius: 0 0 10px 10px;
}
.uj .select2-results__option {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    padding: 5px 16px 5px 20px;
    margin: 4px;
    border-radius: 4px;
}
.uj .select2-container--default .select2-results__option--selected,
.uj .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #F6F3EE;
    color: inherit;
}

.uj-add-to-calendar-btn {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid;
}
.uj-add-to-calendar-btn.atcb-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.uj-add-to-calendar-btn.atcb-active .icon-caret {
    transform: scaleY(-1);
}
.uj-add-to-calendar-btn + [atcb-button-id] {
    left: 0!important;
    top: -1px!important;
    width: 100% !important;
}
.uj-radio-choices {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.uj-radio-choices__choice label,
.uj-radio-choices__choice label .text {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 15px;
    border: 1px solid #E4DFD8;
    border-radius: 15px;
    width: 100%;
    cursor: pointer;

    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.3;

    transition: 0.3s ease-out;
}
.uj-radio-choices__choice label:hover,
.uj-radio-choices__choice input:checked + label {
    color: #E52638;
    border-color: transparent;
}

.uj-radio-choices__choice label .text {
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    border-color: #E52638;
}
.uj-radio-choices__choice label:not(:hover) .text {
    opacity: 0;
}
.uj-radio-choices__choice input:checked + label .text {
    opacity: 1;
}

.uj-radio-choices__choice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--custom-theme-gradient-orange);
    color: #FFF;
    flex: 0 0 auto;
}

.uj-radio-choices__choice__icon .icon {
    display: block;
}

.uj-radio-choices--horizontal {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}
.uj-radio-choices--horizontal > label {
    flex: 1 1 100%;
}
.uj-radio-choices--horizontal .uj-radio-choices__choice {
    flex: 1 1 auto;
}
.uj-radio-choices--horizontal .uj-radio-choices__choice label {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    padding-top: 13px;
    padding-bottom: 13px;
    display: block;
    text-align: center;
    transition: 0.1s ease-out;
}
.uj-radio-choices--horizontal .uj-radio-choices__choice input + label:hover,
.uj-radio-choices--horizontal .uj-radio-choices__choice input:checked + label {
    background: var(--custom-theme-gradient-orange);
    border-color: transparent;
    color: #FFF;
}

.uj-checkbox + label {
    padding-left: 28px;
    display: block;
}
.uj-checkbox + label::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    margin-left: -28px;
}
.uj-checkbox:checked + label::before {
    background: url('data:image/svg+xml;utf8,<svg width="14" height="10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2 5.125 8 2 5.273" stroke="%23fff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>'), var(--custom-theme-gradient-orange);
    background-repeat: no-repeat;
    background-position: center center;
    border-width: 0;
}
.uj-checkbox + label a {
    color: inherit;
}

.uj-step__form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    width: 100%;
    margin-top: 24px;
}
.uj-step__form__actions button[type="submit"] {
    min-width: 202px;
}

button {
    cursor: pointer;
}

label .uj-tooltip {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
label .uj-tooltip .icon {
    width: 20px;
    height: 20px;
}
.uj-tooltip--big .uj-tooltip__text {
    width: 500px;
    max-width: calc(100vw - var(--wp--style--root--padding-left) - var(--wp--style--root--padding-right));
}

.uj-error-message {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.33;
    margin-top: 6px;
    scroll-margin-top: 100px;
    color: #FF6262;
}
.uj-error-message:empty {
    display: none;
}

.uj-error-message--main {
    font-size: 1.25rem;
    text-align: center;
    max-width: 665px;
    margin: 24px auto;
}

.is-read-only {
    background: #F7F7F7;
    cursor: not-allowed;
}
.is-read-only + .uj-edit-adresse-btn {
    pointer-events: none;
    display: none;
}

.uj-form-loader {
    position: fixed;
    z-index: 4000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--custom-theme-gradient-orange);
    color: #FFF;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}
.uj-form-loader.is-active,
.uj-form-local-loader.is-active {
    opacity: 1;
    pointer-events: initial;
}
.uj-form-loader .icon,
.uj-form-local-loader .icon {
    display: block;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: 1s uj-form-loader-anim alternate-reverse infinite;
}
@keyframes uj-form-loader-anim {
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
.uj-form-local-loader {
    position: relative;
    margin: -34px 14px 0 auto;
    float: right;
    height: 14px;
    width: 27px;
    color: #E52638;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
    background: #FFF;
}
.uj-form-local-loader .icon {
    width: 100%;
    height: auto;
}

.uj-step__form .is-hidden,
.uj-step__form .is-hidden + .select2 {
    display: none!important;
}


.uj-adresse-list,
.uj-commune-list {
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #E4DFD8;
    border-radius: 10px;
}
.uj-adresse-list li,
.uj-commune-list li {
    list-style-type: none;
    margin: 4px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
}
.uj-adresse-list button,
.uj-commune-list button {
    border: 0;
    background: transparent;
    font-size: inherit;
    line-height: inherit;
    padding: 5px 16px 5px 20px;
    border-radius: 4px;
    display: block;
    width: 100%;
    text-align: left;
}
.uj-adresse-list button:hover,
.uj-commune-list button:hover {
    background: #F6F3EE;
}

.adresse-selected,
.commune-selected,
.adresse-selected ~ .uj-subscribe-online__toggle-pays,
.adresse-selected ~ .uj-country-select-label,
.adresse-selected ~ .uj-country-select,
.adresse-selected ~ .uj-country-select + .select2 {
    display: none!important;
}
.uj-edit-adresse-btn,
.uj-edit-commune-btn {
    background: none;
    padding: 0;
    border: 0;
    color: inherit;
    font-size: 1rem;
    text-decoration: underline;
    float: right;
    margin-top: -35px;
    margin-right: 20px;
    position: relative;
}
.uj-subscribe-online__full-adresse,
.uj-subscribe-online__full-commune {
    color: rgba(99, 94, 88, 0.6);
    padding-right: 103px;
}

.uj-sidebar-help__toggle-btn,
.uj-sidebar-help__toggle-btn .text {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #E52638!important;
    border-color: transparent!important;
}
.uj-sidebar-help__toggle-btn::before,
.uj-sidebar-help__toggle-btn .text {
    opacity: 1!important;
}
.uj-sidebar-help__toggle-btn {
    position: absolute;
    bottom: 0;
    right: var(--wp--style--root--padding-right);
    transform: translateY(-50%);
}

.uj-sidebar-help {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    background: #FFF;
    z-index: 3000;
    padding: 22px var(--wp--style--root--padding-right) 32px var(--wp--style--root--padding-left);
    width: 475px;
    max-width: 100%;
    transform: translateX(120%);
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}
.admin-bar .uj-sidebar-help {
    padding-bottom: 64px;
}
.uj-sidebar-help__toggle-btn[aria-haspopup][aria-expanded="true"] + .uj-sidebar-help {
    transform: none;
}
.uj-sidebar-help__toggle-btn[aria-haspopup][aria-expanded="true"] + .uj-sidebar-help + .uj-sidebar-help__overlay {
    opacity: 0.2;
    pointer-events: initial;
}
.uj-sidebar-help__overlay {
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-in-out;
    position: fixed;
    z-index: 2999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--medium-grey);
}
.uj-sidebar-help__close-btn {
    background: #F6F3EE;
    cursor: pointer;
    border: 0;
    padding: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}
.uj-sidebar-help__logo {
    display: none;
}
.uj-sidebar-help__title {
    margin-bottom: 16px;
}
.uj-sidebar-help .schema-faq {
    margin-top: 24px;
    margin-bottom: 16px;
    gap: 8px;
}
.uj-sidebar-help .schema-faq-section {
    padding: 16px;
}
.uj-sidebar-help .schema-faq-section.is-hidden {
    display: none;
}
.uj-sidebar-help .schema-faq-question,
.uj-sidebar-help .schema-faq-answer {
    font-size: 1rem;
    line-height: 1.2;
}
.uj-sidebar-help .schema-faq-question .icon-plus,
.uj-sidebar-help .schema-faq-question .icon-minus {
    width: 20px;
    height: 20px;
    margin-top: -10px;
}
.uj-sidebar-help .schema-faq-answer p {
    margin-top: 0;
}
.uj-sidebar-help__push {
    flex: 1 1 auto;
}
.uj-sidebar-help__cta-text {
    font-size: 0.9375rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.uj-sidebar-help__webcallback {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 10;
    top: 94px;
    left: 0;
    bottom: 0;
    width: 100%;

    background: #FFF;
    padding: 0 0 32px var(--wp--style--root--padding-left);
    transform: translateX(120%);
    transition: 0.5s ease-in-out;
}
.uj-sidebar-help__webcallback[aria-hidden="false"] {
    transform: translateX(0);
}

.uj-sidebar-help__webcallback__title {
    margin-bottom: 16px;
    padding-right: 20px;
}
.uj-sidebar-help__webcallback__description {
    margin-bottom: 24px;
}
.uj-sidebar-help__webcallback__form {
    overflow: auto;
    padding-right: var(--wp--style--root--padding-right);
}
.uj-sidebar-help__webcallback__form .uj-step__form {
    margin-top: 0;
    gap: 16px 15px;
}
.uj-sidebar-help__webcallback__form .uj-step-form-item--half {
    flex: 0 0 calc(50% - 15px / 2);
}
.uj-sidebar-help__webcallback__form .uj-radio-choices--horizontal .uj-radio-choices__choice label {
    padding-left: 10px;
    padding-right: 10px;
}
.uj-sidebar-help__webcallback__form .uj-step__form__actions {
    margin-top: 0;
}
.uj-sidebar-help__webcallback__form .uj-step__form__actions button[type="submit"] {
    width: 100%;
}
.uj-sidebar-help__webcallback__form .uj-subscribe-with-cm-webcallback:not(:empty) ~ * {
    display: none;
}
.uj-sidebar-help__webcallback__form .uj-subscribe-with-cm-webcallback__date,
.uj-sidebar-help__webcallback__form .uj-subscribe-with-cm-webcallback__tel {
    font-size: 1.125rem;
}
.uj-sidebar-help__webcallback__form .uj-subscribe-with-cm-webcallback__date .icon,
.uj-sidebar-help__webcallback__form .uj-subscribe-with-cm-webcallback__tel .icon {
    display: none;
}



@media screen and (max-width: 1279px) {
    .uj-sidebar-help__toggle-btn,
    .uj-sidebar-help__toggle-btn .text {
        padding: 12px;
    }
    .uj-sidebar-help__toggle-btn.is-framed .text {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }
    .uj-sidebar-help__toggle-btn .button-text {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .admin-bar .uj-wrapper {
        padding-bottom: 0;
    }

    .uj-header__logo img {
        width: 156px;
    }
    .uj-header__contact {
        padding: 0;
        border: 0!important;
    }
    .uj-header__contact::before,
    .uj-header__contact__text,
    .uj-header__contact .text,
    .uj-header__contact .contact-cm__content {
        display: none;
    }

    .uj-header__contact .contact-cm {
        display: block;
    }

    .uj-header__contact .contact-cm__icon {
        background: transparent;
    }
    .uj-header__contact .contact-cm__icon .icon {
        color: var(--wp--preset--color--medium-grey);
        width: 28px;
        height: 28px;
    }

    .uj-footer-legal-links ul {
        flex-direction: column;
        gap: 8px;
    }

    .uj-sidebar-help__toggle-btn {
        top: auto;
        bottom: 20px;
        right: 0;
        transform: none;
    }


    .uj-steps__nav {
        flex-direction: column;
        gap: 24px;
    }
    .uj-steps__nav__back {
        align-self: flex-start;
    }
    .uj-steps__nav.has-progress {
        margin-bottom: 32px;
        height: auto;
    }
    .uj-steps-progress__bar {
        display: none;
    }

}
@media screen and (max-width: 767px) {
    .uj-header__inner {
        height: 68px;
    }
    .uj-header__logo img {
        width: 126px;
    }

    .uj-header__inner >  .contact-cm > .contact-cm__icon {
        display: none;
    }
    .uj-header__inner .contact-cm__phone-number {
        font-size: 1.125rem;
        margin-bottom: 5px;
        justify-content: flex-end;
    }
    .uj-header__inner .contact-cm__content {
        text-align: right;
    }
    .uj-header__inner .contact-cm__schedules {
        font-size: 0.75rem;
    }
    .uj-steps__nav {
        margin-bottom: 8px;
    }
    .uj-step__title {
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .uj-step__description br {
        display: none;
    }
    .uj-step__form {
        margin: 24px auto;
    }

    .uj-step-form-item,
    .uj-step-form-item--half {
        flex: 1 1 100%;
    }
    .uj-step-form-item--half:empty {
        display: none;
    }
    .uj-step__form__actions {
        margin-top: 18px;
        flex-direction: column;
    }
    .uj-save-form-btn {
        order: 100;
        justify-content: center;
        margin-right: 0;
        margin-top: 17px;
    }

    .uj-radio-choices__choice label,
    .uj-radio-choices__choice label .text {
        padding: 12px 20px;
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .uj-step__form .select2-container--default .select2-selection--single .select2-selection__rendered {
        max-width: 220px;
    }

    .uj-footer-push {
        display: none;
    }

    .uj-sidebar-help {
        padding: 14px var(--wp--style--root--padding-right) 16px var(--wp--style--root--padding-left) ;
    }
    .uj-sidebar-help__logo,
    .uj-sidebar-help__logo img {
        display: block;
    }
    .uj-sidebar-help__close-btn {
        background: none;
        position: absolute;
        margin: 0;
        right: 4px;
        top: 4px;
    }
    .uj-sidebar-help__title {
        font-size: 1.5rem;
        line-height: 1.1;
        border-top: 1px solid #E4DFD8;
        padding-top: 32px;
        margin-top: 16px;
    }
    .uj-sidebar-help__description {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .uj-sidebar-help .schema-faq-question,
    .uj-sidebar-help .schema-faq-answer {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .uj-steps-progress {
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px 14px;
    }
    .uj-steps-progress li,
    .uj-steps-progress li .text {
        padding-right: 0;
        gap: 5px;
        font-size: 0.75rem;
    }
    .uj-steps-progress li::before,
    .uj-steps-progress li .text::before {
        font-size: 0.875rem;
    }
}
@media screen and (max-width: 359px) {
    .uj-header__inner .contact-cm__schedules {
        font-size: 0.625rem;
    }
    .uj-steps-progress li {
        flex: 0 0 calc(50% - 7px);
    }
}

.uj-form-wrapper {
    padding: 24px;
    border: 1px solid #E4DFD8;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;

    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 30px;
}
.uj-form-wrapper__title {
    margin: 0;
    flex: 1 1 100%;
}

.uj-footer-reassurance {
    background: #3C3937;
    color: #FFF;


}
.uj-footer-reassurance__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 58px;
    padding-top: 34px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.uj-footer-reassurance__column {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uj-footer-reassurance__column--google-review {
    flex: 1 1 auto;
    justify-content: flex-end;
}
.uj-footer-reassurance__footer-notes {
    flex: 1 1 100%;
    margin-top: -22px;
}

.uj-footer-google-review {
    border: 1px solid;
    border-radius: 15px;
    padding: 24px;
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.uj-footer-google-review__stars {
    position: relative;
    width: 92px;
    height: 14px;
    background: 0 0 space;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAMAAAAR8Wy4AAAAOVBMVEUAAAD///////////////////////////////////////////////////////////////////////8KOjVvAAAAE3RSTlMAECAwQFBgcH+Aj5CfoK+/z9/vVA8TaQAAAGxJREFUCNdVj9EWwyAIQy82zlkd0v7/x+7B2R3zAuSQBGBiFDbIYye6PtqIgerqD0lnwy5JSpCv3moxSLV2v8H8/QjTzKqR5pzj+Ln4LMPW6rzh9c/pcCRsLKJlc4/CI4kcgtrP9c/lBqAowBc2zALjvsNyKAAAAABJRU5ErkJggg==');
    margin-bottom: 3px;
}
.uj-footer-google-review__stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 0 0 space;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAMAAAAR8Wy4AAAANlBMVEUAAAD////////////////////////////////////////////////////////////////////xY8b8AAAAEXRSTlMAECAwQFBgcH+AkJ+gv8/f78dLPDcAAABdSURBVAjXXY9LDsUgDAMH6kL/eb7/Zd+CFpXOKmNFsQKNcjES1uCTvQ3Bbv+eOUmaw/YiSYAHCtS3nwnI0b22K/m6vTevzXsP341sOw7b6/OHvSVK+LyDGgLIRwB/pBsGU0YjbuoAAAAASUVORK5CYII=');
    clip-path: polygon(0 0, calc(100% * var(--custom-theme-rating) / 5) 0, calc(100% * var(--custom-theme-rating) / 5) 100%, 0 100%);
}

@media screen and (max-width: 1280px) {
    .uj-footer-reassurance__column {
        flex: 1 1 auto;
    }
    .uj-footer-reassurance__column--google-review {
        flex: 1 1 100%;
        justify-content: center;
    }
    .uj-footer-reassurance__footer-notes {
        margin-top: 0;
    }
}

/*- 2.0 Steps */

/*- 2.01 MUNICIPALITY_INIT */
[data-step-key="MUNICIPALITY_INIT"] .uj-step__title {
    max-width: 680px;
}
[data-step-key="MUNICIPALITY_INIT"] .uj-step__form {
    max-width: 665px;
}
[data-step-key="MUNICIPALITY_INIT"] .uj-form-wrapper {
    overflow: visible;
}
.uj-step-form-item--google-maps > .uj-form-local-loader {
    margin: 20px auto;
}
.uj-step-form-item--google-maps:has(>div:not(.uj-form-local-loader)) {
    height: 500px;
}
.uj-step-form-item--google-maps .next-agence-btn {
    margin-top: 16px;
}
.uj-step-form-item--google-maps .next-agence-btn.wp-block-button__link.is-framed::before {
    z-index: -1; /* not sure why we have to override this value... */
}

/*- 2.02 MUNICIPALITY_BOOKING_SLOTS */
[data-step-key="MUNICIPALITY_BOOKING_SLOTS"] {
    position: relative;
}
[data-step-key="MUNICIPALITY_BOOKING_SLOTS"] .uj-step__form {
    max-width: 665px;
    row-gap: 24px;
}
[data-step-key="MUNICIPALITY_BOOKING_SLOTS"] .uj-step__form textarea {
    height: 120px;
    resize: none;
}
[data-step-key="MUNICIPALITY_BOOKING_SLOTS"] .uj-step__form__actions {
    margin-top: 0;
    position: sticky;
    bottom: 0;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgb(255, 255, 255) 10px);
}

.uj-calendar {
    width: 100%;
}
.uj-calendar__title {
    margin-bottom: 6px;
}
.uj-calendar__grid {
    border: 1px solid #E4DFD8;
    border-radius: 10px;
    padding: 24px 8px;
}
.uj-calendar__grid__col {
    padding-left: 8px;
    padding-right: 8px;
    width: 159px;
}
.uj-cal-grid-col {
    text-align: center;
}

.uj-cal-grid-col__day,
.uj-cal-grid-col__date {
    font-size: 1rem;
    line-height: 1.5;
}
.uj-cal-grid-col__date {
    margin-bottom: 24px;
    font-weight: 500;
}
.uj-cal-grid-col__events {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.uj-cal-grid-col__event {
    background: none;
    cursor: pointer;
    padding: 16px;
    border: 1px solid #E4DFD8;
    border-radius: 10px;
}
.uj-cal-grid-col__event--disabled {
    background: #E4DFD8;
    pointer-events: none;
}
.uj-cal-grid-col__event--empty::before {
    content: '-';
}
.uj-cal-grid-col__event--empty {
    cursor: default;
}
input:checked + .uj-cal-grid-col__event {
    border-color: #3C3937;
    background: #3C3937;
    color: #FFF;
}

.uj-calendar__arrows__prev,
.uj-calendar__arrows__next {
    background: none;
    width: 16px;
    height: 16px;
    top: 40px;
    left: 16px;
    color: #635E58;
}
.uj-calendar__arrows__prev .icon,
.uj-calendar__arrows__next .icon {
    width: 6px;
    height: auto;
}
.uj-calendar__arrows__next {
    left: auto;
    right: 16px;
}
.uj-calendar__arrows__prev::after,
.uj-calendar__arrows__next::after {
    display: none!important;
}

.uj-calendar__arrows__prev:hover,
.uj-calendar__arrows__next:hover {
    color: #E52638;
}
.uj-calendar__arrows__prev.slick-disabled,
.uj-calendar__arrows__prev.slick-disabled {
    display: block!important;
    color: #E4DFD8;
}

@media screen and (max-width: 767px) {

    .uj-calendar__title {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.5;
    }
    .uj-cal-grid-col__event {
        padding: 14px 4px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/*- 2.03 MUNICIPALITY_CONTACT_DETAILS */
[data-step-key="MUNICIPALITY_CONTACT_DETAILS"] .uj-step__form {
    max-width: 665px;
}
[data-step-key="MUNICIPALITY_CONTACT_DETAILS"] .uj-step__form__actions {
    justify-content: space-between;
}
[data-step-key="MUNICIPALITY_CONTACT_DETAILS"] .uj-step__form__actions .wp-block-button__link.is-framed {
    min-width: 202px;
}
[data-step-key="MUNICIPALITY_CONTACT_DETAILS"] .select2-container--default .select2-results > .select2-results__options {
    max-height: 160px;
}

/*- 2.03 MUNICIPALITY_CONTACT_CONFIRMATION */
[data-step-key="MUNICIPALITY_CONTACT_CONFIRMATION"] .uj-step__title {
    color: #1BB988;
    background: center top no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg width="49" height="48" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="24.5" cy="24" r="22.5" stroke="%231BB988" stroke-width="3"/><path d="M34.415 16.917 20.78 31.084l-6.198-6.44" stroke="%231BB988" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    padding-top: 72px;
}
[data-step-key="MUNICIPALITY_CONTACT_CONFIRMATION"] .uj-step__title,
[data-step-key="MUNICIPALITY_CONTACT_CONFIRMATION"] .uj-step__description {
    max-width: 710px;
}

[data-step-key="MUNICIPALITY_CONTACT_CONFIRMATION"] .uj-step__form {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
}
[data-step-key="MUNICIPALITY_CONTACT_CONFIRMATION"] .uj-step__form > * {
    flex: 1 1 calc(50% - 16px / 2);
}

/*- 2.04 MUNICIPALITY_MEETING_CONFIRMATION */
[data-step-key="MUNICIPALITY_MEETING_CONFIRMATION"] {
    position: relative;
}

[data-step-key="MUNICIPALITY_MEETING_CONFIRMATION"] .uj-step__title {
    color: #1BB988;
    background: center top no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg width="49" height="48" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="24.5" cy="24" r="22.5" stroke="%231BB988" stroke-width="3"/><path d="M34.415 16.917 20.78 31.084l-6.198-6.44" stroke="%231BB988" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    padding-top: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}


[data-step-key="MUNICIPALITY_MEETING_CONFIRMATION"] .uj-step__form {
    max-width: 443px;
    align-items: flex-start;
}


.uj-meeting-confirmation__date {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    white-space: pre;

    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;

    margin-bottom: 13px;
}
.uj-meeting-confirmation__date .icon {
    margin-right: 10px;
}
.uj-meeting-confirmation__date br,
.uj-meeting-confirmation__date strong ~ strong {
    flex: 1 1 100%;
}

[data-step-key="MUNICIPALITY_MEETING_CONFIRMATION"] .uj-step__form .uj-add-to-calendar-btn + [atcb-button-id] {
    margin-top: -12px; /* flex gap */
}

@media screen and (max-width: 767px) {
    [data-step-key="MUNICIPALITY_MEETING_CONFIRMATION"] {
        padding-top: 113px;
    }
    [data-step-key="MUNICIPALITY_MEETING_CONFIRMATION"]::before {
        font-size: 2rem;
        padding-bottom: 24px;
    }
    .uj-meeting-confirmation__date,
    .uj-meeting-confirmation__tel {
        flex-wrap: wrap;
        white-space: normal;
    }
    .uj-meeting-confirmation__date strong,
    .uj-meeting-confirmation__tel strong {
        flex: 1 1 100%;
    }
}
