.wegg-booking form {
    display: grid;
    place-content: center;
    min-height: 100vh;
}

.wegg-booking .form-control {
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

.wegg-booking .form-control + .form-control {
    margin-top: 1em;
}

.wegg-booking .form-control--disabled {
    color: var(--form-control-disabled);
    cursor: not-allowed;
}

.wegg-booking input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

.wegg-booking input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

.wegg-booking input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.wegg-booking input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);

    color: var(--form-control-disabled);
    cursor: not-allowed;
}

.wegg-availability {
    display: flex;
    height: 30px;
    gap: 10px;
    margin-top: 8px;
}

.wegg-availability label {
    padding-top: 6px;
}

.wegg-availability .wegg-booking-capacity {
    opacity: 0.5;
    font-size: 0.8em;
    padding-left: 10px;
}

.wegg-booking .wegg-row {
    column-gap: 32px;
    margin-bottom: 20px;
}

.wegg-booking .wegg-checkbox label {
    display: flex;
}

.wegg-booking .wegg-checkbox label input[type="checkbox"] {
    margin-right: 10px;
}

.wegg-booking label {
    margin-bottom: 8px;
}

#wegg-booking-form h3 {
    font-size: 1.5rem;
    font-family: Manrope, sans-serif;
}

#wegg-booking-form h5 {
    font-size: 1.2rem;
    font-family: Manrope, sans-serif;
}

#wegg-booking-form h6 {
    font-size: 1rem;
    font-family: Manrope, sans-serif;
    margin-bottom: 8px;
    font-weight: 600;
}

/* responsiveness flatpickr
.wegg-booking .flatpickr-calendar,
.wegg-booking .flatpickr-innerContainer,
.wegg-booking .flatpickr-rContainer,
.wegg-booking .flatpickr-days{
    width: 100%;
}

.wegg-booking .dayContainer {
    width: 100%;
    max-width: 100%;
}

.wegg-booking .dayContainer .flatpickr-day {
    width: calc(100% / 7);
    max-width: 100%;
    height: auto;
}
 */