/* Variables */


:root {
    --space-base: 8px;
    --space-xxxxs: 4px;
    --space-xxxs: 8px;
    --space-xxs: 12px;
    --space-xs: 16px;
    --space-sm: 24px;
    --space-md: 32px;
    --space-lg: 40px;
    --space-xl: 48px;
    --space-xxl: 60px;
    --space-xxxl: 96px;
    --space-xxxxl: 120px;

    --border-box-radius: 8px;
    --border-input-radius: 4px;
}

/*  Form */

#wkhtm-form {
    margin: var(--space-xl) auto;
    counter-reset: section;
}

#wkhtm-form fieldset {
    margin: var(--space-lg) auto;
    background-color: #f4f4f4;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    display: block;
    border-radius: var(--border-box-radius);
    border: none;
}

#wkhtm-form fieldset legend {
    font-weight: 700;
    float: left;
    width: 100%;
    padding-bottom: var(--space-xxs);
}

#wkhtm-form fieldset legend::before {
    counter-increment: section;
    content: counter(section) ". ";
}

#wkhtm-form label {
    display: block;
    padding: var(--space-xs) 0 var(--space-xxxs);
}

#wkhtm-form input[type=text] {
    width: 100%;
    font-size: 1em;
    box-sizing: border-box;
    padding: var(--space-xxxs);
    background-color: #fff;
    border: 1px solid #cecece;
    border-radius: var(--border-input-radius);
}

#wkhtm-form input[type=submit] {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-sizing: border-box;
    padding: var(--space-xxxs) var(--space-xl);
    background-color: #c598bb;
    border: none;
    border-radius: var(--border-input-radius);
    cursor: pointer;
    transition: .5s;
}

#wkhtm-form input[type=submit]:hover {
    background-color: #122842;
}


#wkhtm-form input[type=checkbox]+label {
    padding: var(--space-xxxs) 0 var(--space-xs);
}

#wkhtm-form fieldset:has(input[name=client_comment]) {
    display: none;
}

#wkhtm-form .filterlabel {
    clear: both;
    display: block;
    position: relative;
    padding: 0.25em 0 .25em 1.75em;
    cursor: pointer;
    user-select: none;
}

#wkhtm-form .filterlabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

#wkhtm-form .filterlabel .checkmark {
    position: absolute;
    top: 0.25em;
    left: 0;
    height: 1.2em;
    width: 1.2em;
    border: 2px solid #cecece;
    transition: 0.5s ease;
    border-radius: var(--border-input-radius);
    background-color: #fff;
}

#wkhtm-form .filterlabel:hover input~.checkmark {
    background-color: #c598bb;
    border: solid 2px #c598bb;
}

#wkhtm-form .filterlabel input:checked~.checkmark {
    background-color: #c598bb;
    border: solid 2px #c598bb;
}

#wkhtm-form .filterlabel .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

#wkhtm-form .filterlabel input:checked~.checkmark::after {
    display: block;
}

#wkhtm-form .filterlabel .checkmark::after {
    left: .3em;
    width: .35em;
    height: .7em;
    border: solid #fff;
    border-width: 0 .2em .2em 0;
    transform: rotate(45deg);
}


/* Form Confirm */

#wkhtm-form-confirm .notice-parameter {
    margin: var(--space-lg) auto;
    background-color: #f4f4f4;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    display: block;
    border-radius: var(--border-box-radius);
    border: none;
}

#wkhtm-form-confirm .notice-parameter .title {
    font-weight: 500;
}

#wkhtm-form-confirm .notice-parameter .value {
    margin: .2em auto 1em;
}


#wkhtm-form-confirm .notice-parameter div img {
    width: 150px;
    height: auto;
    margin-top: var(--space-xxs);
}

#wkhtm-form-confirm .mdo-tm-qrcode {
    display: flex;
    justify-content: center;
    border: 1px solid var(--color-grey-medium-light);
    padding: 0 var(--space-xs);
    margin: var(--space-md) auto;
    border-radius: var(--border-radius);
}

#wkhtm-form-confirm .mdo-tm-qrcode a {
    display: block;
}




/* Single */

#transparency-notice article {
    margin: var(--space-lg) auto;
    background-color: #f4f4f4;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    display: block;
    border-radius: var(--border-box-radius);
    border: none;
}

#transparency-notice article .headline {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 0.5em 0;
}

#transparency-notice article p {
    font-weight: 500;
    margin: 0.1em auto;
}

#transparency-notice article p.infolabel {
    font-weight: normal;
}

#transparency-notice article p.infolabel strong {
    font-weight: 500;
}