/*
==========================================================================
fonts
==========================================================================
*/

@font-face {
    font-display: swap;
    font-family: Avenir;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/762109fe-7eb9-4b35-989b-6c75669f7570.eot?#iefix);
    src: url(../fonts/762109fe-7eb9-4b35-989b-6c75669f7570.eot?#iefix) format('eot'), url(../fonts/56278f56-a7d4-406a-a879-ee5e952e9f2a.woff2) format('woff2'), url(../fonts/326b11a6-5a32-4a33-90c7-e0c7291c1e27.woff) format('woff'), url(../fonts/078116f9-2afd-44b4-ab20-7ae4ed204169.ttf) format('truetype')
}

@font-face {
    font-display: swap;
    font-family: Avenir;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/c9005e0b-3ca0-4d14-86f9-a981c4e6138a.eot?#iefix);
    src: url(../fonts/c9005e0b-3ca0-4d14-86f9-a981c4e6138a.eot?#iefix) format('eot'), url(../fonts/b0f4e360-530c-4551-aaa0-88ef1afb7d10.woff2) format('woff2'), url(../fonts/abe68f66-51d9-4463-ac9f-0297bc571a97.woff) format('woff'), url(../fonts/58f8f705-5a26-4e54-8053-1d1c62e1c6fb.ttf) format('truetype')
}

@font-face {
    font-display: swap;
    font-family: Avenir;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/ce2f86dc-3a04-4ef9-8370-84b7fa1d24ac.eot?#iefix);
    src: url(../fonts/ce2f86dc-3a04-4ef9-8370-84b7fa1d24ac.eot?#iefix) format('eot'), url(../fonts/9380e458-b9ca-4579-97cf-ca21b5ef5efa.woff2) format('woff2'), url(../fonts/cb04a9bf-e103-4b3c-b060-35cc784140b2.woff) format('woff'), url(../fonts/9895ebde-ae5a-441d-8041-9afe1be6087b.ttf) format('truetype')
}

/*
==========================================================================
vars
==========================================================================
*/

:root {
    --color-blue-background: #0C648D;
    --color-blue-background-hover: #003f5b;
    --color-white-background: #FFFFFF;
    --color-grey-background: #B8B7B7;
    --color-grey-button-background: #DADADA;
    --color-grey-button-background-hover: #B2B2B2;
    --color-grey-border: #A8A8A8;
    --color-white-font: #F9FBFE;
    --color-black-font: #000000;
    --color-red-error: #d20014;
    --color-red-error-background: #fcedee;
    --color-separator-dark: #000000;
    --color-separator-bright: #D9D9D9;

    --transition-speed: 250ms;
    --transition-ease: ease-out;

    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;

    --_perforation-asterisk: '';
}

/*
==========================================================================
global
==========================================================================
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

body {
    font-family: Avenir,Arial,Helvetica,Helvetica Neue,sans-serif;
    font-style: normal;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input:focus{
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-background-clip: text;
}

.header {
    background-color: var(--color-blue-background);
    color: var(--color-white-font);
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 2.063rem;
    padding: 0.125rem 1.75rem 1.55rem 4.75rem;
    flex-grow: 0;
}

@media only screen and (max-width: 768px) {
    .header {
        padding: 0.125rem 1.75rem 1.55rem 1.625rem;
    }
}

::-moz-selection {
    color: var(--color-white-font);
    background: var(--color-blue-background);;
}

::selection {
    color: var(--color-white-font);
    background: var(--color-blue-background);;
}

/*
==========================================================================
bootstrap replacement
==========================================================================
*/

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.d-flex {
    display: flex!important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .justify-content-md-end {
        justify-content: flex-end!important
    }
}

/*
==========================================================================
dropdown
==========================================================================
*/

.dropdown-wrapper {
    transition: opacity var(--transition-speed) var(--transition-ease);
    opacity: 1;
    pointer-events: initial;
    width: 100%;
}

.dropdown-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

.dropdown-wrapper .dropdown-label {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.dropdown-wrapper .dropdown {
    width: 100%;
    max-width: 23.438rem;
    height: 3.125rem;
    background: var(--color-white-background);
    border-radius: 5px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .dropdown-wrapper .dropdown {
        max-width: initial;
    }
}

.dropdown-wrapper .dropdown::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border: 0.125rem solid grey;
    border-top: transparent;
    border-right: transparent;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: all var(--transition-speed) var(--transition-ease);
}

.dropdown-wrapper .dropdown input {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 0px 1rem;
    cursor: pointer;
    border: 1px solid var(--color-grey-border);
    outline: none;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    color: var(--color-black-font);
}

.dropdown-wrapper .dropdown .options-wrapper {
    position: absolute;
    height: calc( 30.625rem + 3.125rem );
    width: 100%;
    top: 3.125rem;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.dropdown-wrapper .dropdown .options {
    pointer-events: initial;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 30.625rem;
    overflow-y: auto;
    border-radius: 5px;
    cursor: pointer;
    background: var(--color-white-background);
    outline: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    position: absolute;
    left: 0;
    top: 3.063rem;
    transition: all var(--transition-speed) var(--transition-ease);
    opacity: 0;
    transform: translateY(-6.25rem);
    visibility: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid var(--color-grey-border);
    z-index: 1;
}

.dropdown-wrapper .dropdown .options .option {
    padding: 11px 16px;
    transition: all var(--transition-speed) var(--transition-ease);
    color: var(--color-black-font);
}

.dropdown-wrapper .dropdown .options .option:hover {
    color: white;
    background-color: var(--color-blue-background);
}

.dropdown-wrapper .dropdown.opened .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(-3.125rem);
}

.dropdown-wrapper .dropdown.opened::after {
    transform: rotate(-225deg);
    top: 22px;
}

/*
==========================================================================
loading
==========================================================================
*/

.loader {
    background-color: var(--color-white-background);
    color: var(--color-black-font);
    padding: 2.25rem 7rem 1.75rem 4.75rem;
    overflow-y: auto;
    flex-grow: 1;
    transition: opacity var(--transition-speed) var(--transition-ease);
    opacity: 1;
}

.loader.loading-done-start {
    opacity: 0;
}

.loader.loading-done-end {
    display: none;
}

.loader h1 {
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 0;
    margin-top: 0;
}

@keyframes dot-animation {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
    100% { content: "..."; }
}

.loader h1.loader-text::after {
    content: "";
    animation: dot-animation 1s steps(5, end) infinite;
}

.loader .loader-text-error-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-speed) var(--transition-ease);
}

.loader .loader-text-error-wrapper.visible {
    grid-template-rows: 1fr;
}

.loader .loader-text-error-wrapper .loader-text-error {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    color: var(--color-red-error);
    overflow: hidden;
}

.loader .loader-logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .loader-logo-wrapper img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.main {
    transition: opacity var(--transition-speed) var(--transition-ease);
    opacity: 0;
    display: none;

    overflow-y: auto;
    flex-grow: 1;
}

.main.loading-done-start {
    display: flex;
}

.main.loading-done-end {
    opacity: 1;
}

/*
==========================================================================
form
==========================================================================
*/

.form {
    background-color: var(--color-white-background);
    color: var(--color-black-font);
    padding: 2.25rem 7rem 1.75rem 4.75rem;
}

@media only screen and (max-width: 768px) {
    .form {
        padding: 2.25rem 1.625rem 1.75rem 1.625rem;
    }
}

.form #step-0 {
    display: block;
}

.form #step-1 {
    display: none;
}

.form #step-2 {
    display: none;
}

.form #step-3 {
    display: none;
}


.form h1 {
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 0;
    margin-top: 0;
}

.form .form-info {
    margin-top: 0.625rem;
    font-size: 0.875rem;
}

.form .form-info a {
    text-decoration: none;
    color: var(--color-blue-background);
}

.form h2.colors-finishes-headline,
.form h2.choose-perforations-headline {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
    margin-top: 0;
}

.form h2.order-details-headline {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.625rem;
    margin-top: 2rem;
}

.form .colors-finishes {
    margin-top: 0.563rem;
    margin-bottom: 1.25rem;
}

.form .colors-finishes .colors-finishes-headline {
    margin-bottom: 1rem;
}

.form .colors-finishes .color-finish-wrapper {
    margin-top: 0.438rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.75rem 2.25rem;
    justify-content: flex-start;
}

.form .colors-finishes .color-finish {
    display: flex;
    flex-direction: column;
    max-width: 4.125rem;
    position: relative;
    cursor: pointer;
}

.form .colors-finishes .color-finish.open {
    cursor: initial;
}

.form .colors-finishes .color-finish img {
    display: block;
    width: 4.125rem;
    height: auto;
    margin-bottom: 0.375rem;
}

.form .colors-finishes .color-finish .color-finish-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    font-weight: 400;
    font-size: 0.688rem;
    line-height: 0.813rem;
}

.form .colors-finishes .color-finish .color-finish-check-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 4.125rem;
    height: 4.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-speed) var(--transition-ease);
    opacity: 0;
}

.form .colors-finishes .color-finish .color-finish-check-wrapper.selected {
    opacity: 1;
}

.form .colors-finishes .color-finish .color-finish-check-wrapper .color-finish-check {
    width: 24px;
    height: 24px;
    background-color: #069A15;
    border-radius: 50%;
    position: relative;
}

.form .colors-finishes .color-finish .color-finish-check-wrapper .color-finish-check::after {
    content: url(../img/icons/check-svgrepo-com.svg);
    position: absolute;
    top: 2px;
    left: 2px;
}

/*
==========================================================================
form choose-perforations
==========================================================================
*/

.form .choose-perforations {
    margin-top: 0.563rem;
    margin-bottom: 1.25rem;
}

.form .choose-perforations .choose-perforations-headline {
    margin-bottom: 1rem;
}

.form .choose-perforations .choose-perforation-wrapper {
    margin-top: 0.438rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.75rem 2.938rem;
    justify-content: flex-start;
}

.form .choose-perforations .choose-perforation {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    max-width: 23.438rem;
    position: relative;
}

.form .choose-perforations .choose-perforation::after {
    content: var(--_perforation-asterisk);
    position: absolute;
    left: calc(100% + 0.5rem);
    font-size: 0.75rem;
}

.form .choose-perforations .choose-perforation.disabled {
    max-width: 4.125rem;
}

@media only screen and (max-width: 768px) {
    .form .choose-perforations .choose-perforation {
        max-width: initial;
    }
}

.form .choose-perforations .choose-perforation .color-finish {
    display: flex;
    flex-direction: column;
    max-width: 4.125rem;
}

.form .choose-perforations .choose-perforation .color-finish img {
    display: block;
    width: 4.125rem;
    height: auto;
    margin-bottom: 0.375rem;
}

.form .choose-perforations .choose-perforation .color-finish .color-finish-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    font-weight: 400;
    font-size: 0.688rem;
    line-height: 0.813rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .dropdown-wrapper {
    display: none;
    padding-top: 0.625rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .dropdown-wrapper.active {
    display: flex;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .option-headline {
    font-weight: 500;
    padding: 1.75rem 1rem 0.625rem 1rem;
    cursor: initial;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .option-perf {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .option-perf img {
    display: block;
    width: 3.875rem;
    height: auto;
    background-color: var(--color-white-background);
}

.form .choose-perforations .choose-perforation .perforation-wrapper .option-perf .perf-text {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5rem;
    margin-top: -0.5rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper {
    width: 100%;
    flex-direction: row;
    gap: 1rem;
    display: none;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper.active {
    display: flex;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper img {
    display: block;
    width: 4.125rem;
    height: auto;
    background-color: var(--color-white-background);
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper .perf-selected-info-change-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper .perf-selected-info-change-wrapper .perf-selected-info-change-text {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper .perf-selected-info-change-wrapper .perf-selected-info-change-button {
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.5rem;
    color: var(--color-blue-background);
    cursor: pointer;
    display: flex;
    gap: 0.25rem;
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper .perf-selected-info-change-wrapper .perf-selected-info-change-button::after {
    content: '';
    background: url(../img/icons/right-arrow-svgrepo-com.svg) center / cover no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    transition: right var(--transition-speed) var(--transition-ease);
    margin-top: 0.063rem;
    margin-left: 0rem;
    transition: margin-left var(--transition-speed) var(--transition-ease);
}

.form .choose-perforations .choose-perforation .perforation-wrapper .perf-selected-wrapper .perf-selected-info-change-wrapper .perf-selected-info-change-button:hover::after {
    margin-left: 0.375rem;
}

/*
==========================================================================
form colors-finishes
==========================================================================
*/

.form .colors-finishes .color-finish .color-finish-popover {
    position: absolute;
    width: 10.5rem;
    border-radius: 2px;
    background-color: var(--color-white-background);
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-speed) var(--transition-ease);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    scale: 0.75;
    padding: 1.875rem 1.25rem;
}

.form .colors-finishes .color-finish .color-finish-popover.open {
    opacity: 1;
    scale: 1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-close-bt {
    position: absolute;
    top: 0.313rem;
    right: 0.313rem;
    width: 1.563rem;
    height: 1.563rem;
    background: url(../img/icons/close-tab-svgrepo-com.svg) center / cover no-repeat;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-ease);
    scale: 1;
    transform: rotate(0deg);
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-close-bt:hover {
    scale: 1.1;
    transform: rotate(90deg);
}

.form .colors-finishes .color-finish .color-finish-popover img {
    display: block;
    width: 6rem;
    height: auto;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 2.313rem;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-minus {
    width: 2.313rem;
    height: 2.313rem;
    background: url(../img/icons/minus-circle.svg) center / cover no-repeat;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-ease);
    scale: 1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-minus.disabled {
    cursor: initial;
    opacity: 0.5;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-minus:hover {
    scale: 1.1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-minus.disabled:hover {
    scale: 1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu input {
    width: 2.313rem;
    height: 2.313rem;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-plus {
    width: 2.313rem;
    height: 2.313rem;
    background: url(../img/icons/plus-circle.svg) center / cover no-repeat;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-ease);
    scale: 1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-plus.disabled {
    cursor: initial;
    opacity: 0.5;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-plus:hover {
    scale: 1.1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-menu .color-finish-popover-menu-plus.disabled:hover {
    scale: 1;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-msg {
    text-align: center;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.188rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-msg a {
    transition: color var(--transition-speed) var(--transition-ease);
    color: var(--color-blue-background);
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-msg a:hover {
    color: var(--color-blue-background-hover);
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-notice {
    text-align: center;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.188rem;
    display: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form .colors-finishes .color-finish .color-finish-popover .color-finish-popover-notice.visible {
    display: block;
}

/*
==========================================================================
form form-group
==========================================================================
*/

.form .form-group {
    margin-bottom: 1.875rem;
    position: relative;
    flex-grow: 1;
    max-width: 23.438rem;
}

.form .form-group label {
    margin-bottom: 0.5rem;
}

.form .form-group input[type="text"],
.form .form-group input[type="email"],
.form .form-group input[type="tel"] {
    width: 100%;
    height: 3.125rem;
    background-color: var(--color-white-background);
    border-radius: 5px;
    padding: 0px 16px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    color: var(--color-black-font);
    outline: none;
    box-shadow:none !important;
    border: 1px solid var(--color-grey-border) !important;
    transition: background-color var(--transition-speed) var(--transition-ease);
}

@media only screen and (max-width: 768px) {
    .form .form-group {
        max-width: initial;
    }
}

.form .form-group.error .form-control {
    background-color: var(--color-red-error-background);
}

.form .form-group .error-msg {
    position: absolute;
    right: 0px;
    bottom: -1.188rem;
    font-size: 0.625rem;
    background: var(--color-red-error);
    padding: 0.125rem 0.313rem;
    color: #fff;
    border-radius: 5px;
    transition: opacity var(--transition-speed) var(--transition-ease);
    opacity: 0;
}

.form .form-group.error .error-msg {
    opacity: 1;
}

.form .choose-type-of-panel-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0rem 2.25rem;
    justify-content: space-between;
    padding-top: 2rem;
}

.form .choose-type-of-panel-wrapper .form-group {
    width: 100%;
    max-width: 23.438rem;
}

@media only screen and (max-width: 768px) {
    .form .form-group:has(.image-radio-wrapper) {
        max-width: initial;
    }
}

.form .form-group .image-radio-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.form .form-group .image-radio-wrapper .image-radio-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form .form-group .image-radio-wrapper .image-radio-image-wrapper img {
    width: 50%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    opacity: 1;
    transition: opacity var(--transition-speed) var(--transition-ease);
}

.form .form-group .image-radio-wrapper .image-radio-image-wrapper:has(.image-radio-info:hover) img {
    opacity: 0;
} 

.form .form-group .image-radio-wrapper .image-radio-image-wrapper .image-radio-info {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-grey-button-background);
    color: var(--color-black-font);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: all var(--transition-speed) var(--transition-ease);
}

.form .form-group .image-radio-wrapper .image-radio-image-wrapper .image-radio-info:hover {
    background-color: var(--color-blue-background);
    color: var(--color-white-font);
}

.form .form-group .image-radio-wrapper .image-radio-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--color-white-background);
    background-image: var(--_overlay-image);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    border: 1px solid var(--color-grey-border);
    border-radius: 5px;
    opacity: 0;
    transition: opacity var(--transition-speed) var(--transition-ease);
}

.form .form-group .image-radio-wrapper .image-radio-image-wrapper:has(.image-radio-info:hover)::before {
    opacity: 1;
} 

.form .form-group:has(.image-radio-wrapper) {
    border: 1px solid var(--color-separator-bright);
    border-radius: 5px;
    padding: 0.75rem 0.75rem;
    transition: border-color var(--transition-speed) var(--transition-ease);
}

.form .form-group:has(.image-radio-wrapper .radio-wrapper input[type="radio"]:checked) {
    border-color: var(--color-separator-dark);
}

.form .form-group .radio-wrapper {
    width: 100%;
    min-height: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}

.form .form-group .radio-wrapper input[type="radio"] {
    width: 2rem;
    height: 0;
    flex-shrink: 0;
    margin: 0;
    opacity: 0;
}

.form .form-group .radio-wrapper .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--color-grey-border);
    background-color: var(--color-white-background);
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

.form .form-group .radio-wrapper input[type="radio"]:checked ~ .checkmark {
    background-color: var(--color-blue-background);
}

.form .form-group .radio-wrapper .checkmark:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-white-background);
    transition: all var(--transition-speed) var(--transition-ease);
    opacity: 0;
}

.form .form-group .radio-wrapper input[type="radio"]:checked ~ .checkmark:after {
    opacity: 1;
    top: 0.438rem;
    left: 0.438rem;
    width: 1rem;
    height: 1rem;
}

.form .form-group .radio-wrapper .radio-label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25rem;
    color: var(--color-black-font);
    margin-top: -0.188rem;
}

.form .form-group .checkbox-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.form .form-group .checkbox-wrapper input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-white-background);
    margin: 0;
    width: 2rem;
    height: 1.875rem;
    border-radius: 5px !important;
    border: 1px solid var(--color-grey-border);
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.form .form-group .checkbox-wrapper input[type="checkbox"]:active {
    filter: initial;
}

.form .form-group .checkbox-wrapper input[type="checkbox"]:focus {
    box-shadow: none;
    border: 1px solid var(--color-grey-border);
}

.form .form-group .checkbox-wrapper input[type="checkbox"]:before {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-white-background);
    background-image: url(../img/icons/checkbox-icon-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    transition: opacity var(--transition-speed) var(--transition-ease);
    opacity: 0;
    position: absolute;
}

.form .form-group .checkbox-wrapper input[type="checkbox"]:checked:before {
    opacity: 1;
}

.form .form-group .checkbox-wrapper label {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: var(--color-black-font);
}

.form .form-group .checkbox-wrapper label a {
    transition: color var(--transition-speed) var(--transition-ease);
    color: var(--color-blue-background);
}

.form .form-group .checkbox-wrapper label a:hover {
    color: var(--color-blue-background-hover);
}

/*
==========================================================================
form overview
==========================================================================
*/

.form .overview-wrapper {
    --element-height: 3.75rem;
    height: 3.75rem;
    overflow: hidden;
    transition: height calc(var(--transition-speed) * 2) var(--transition-ease);
    margin-left: -4.75rem;
    margin-right: -7rem;
    padding-left: 4.75rem;
    padding-right: 7rem;
    background-color: var(--color-blue-background);
    color: var(--color-white-font);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.form .overview-wrapper.visible {
    height: var(--element-height);
}

@media only screen and (max-width: 768px) {
    .form .overview-wrapper {
        margin-left: -1.625rem;
        margin-right: -1.625rem;
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }
}

.form .overview-wrapper .overview .overview-header {
    height: 3.75rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5rem;
    cursor: pointer;
}

.form .overview-wrapper .overview .overview-header .overview-button-icon {
    transform: rotate(0deg);
    transition: transform var(--transition-speed) var(--transition-ease);
    margin-top: 0.25rem;
}

.form .overview-wrapper.visible .overview .overview-header .overview-button-icon {
    transform: rotate(180deg);
}

.form .overview-wrapper .overview .overview-content {
    background-color: var(--color-blue-background);
    color: var(--color-black-font);
    opacity: 0;
    transition: calc(var(--transition-speed) * 2) var(--transition-ease);
    margin-left: -4.75rem;
    margin-right: -7rem;
    padding-left: 4.75rem;
    padding-right: 7rem;
    padding-top: 2.25rem;
    padding-bottom: 3.125rem;
}

@media only screen and (max-width: 768px) {
    .form .overview-wrapper .overview .overview-content {
        margin-left: -1.625rem;
        margin-right: -1.625rem;
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }
}

.form .overview-wrapper.visible .overview-content {
    background-color: var(--color-white-background);
    opacity: 1;
}

.overview-content.confirmation {
    background-color: var(--color-white-background);
    color: var(--color-black-font);
    margin-left: -4.75rem;
    margin-right: -7rem;
    padding-left: 4.75rem;
    padding-right: 7rem;
    padding-top: 3.125rem;
    padding-bottom: 3.75rem;
}

@media only screen and (max-width: 768px) {
    .overview-content.confirmation {
        margin-left: -1.625rem;
        margin-right: -1.625rem;
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }
}

.overview-content h1 {
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-top: 0;
}

.overview-samples-wrapper .choose-perforations {
    margin-top: 0.563rem;
    margin-bottom: 1.25rem;
}

.overview-samples-wrapper h2.choose-perforations-headline {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper {
    margin-top: 0.438rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.75rem 2.938rem;
    justify-content: flex-start;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    max-width: 23.438rem;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation.no-perforation {
    max-width: 4.125rem;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .color-finish {
    display: flex;
    flex-direction: column;
    max-width: 4.125rem;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .color-finish img {
    display: block;
    width: 4.125rem;
    height: auto;
    margin-bottom: 0.375rem;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .color-finish .color-finish-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    font-weight: 400;
    font-size: 0.688rem;
    line-height: 0.813rem;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .perforation-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .perforation-wrapper .perf-selected-wrapper {
    width: 100%;
    flex-direction: row;
    gap: 1rem;
    display: none;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .perforation-wrapper .perf-selected-wrapper.active {
    display: flex;
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .perforation-wrapper .perf-selected-wrapper img {
    display: block;
    width: 4.125rem;
    height: auto;
    background-color: var(--color-white-background);
}

.overview-samples-wrapper .choose-perforations .choose-perforation-wrapper .choose-perforation .perforation-wrapper .perf-selected-wrapper .perf-selected-info-change-text {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5rem;
}

/*
==========================================================================
confirmation
==========================================================================
*/

.confirmation {
    background-color: var(--color-blue-background);
    color: var(--color-white-font);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.confirmation .confirmation-header {
    padding-bottom: 2.5rem;
    flex-grow: 0;
    padding-left: 4.75rem;
    padding-right: 7rem;
}

.confirmation .confirmation-header #add-kit-inclusion-note {
    display: none;
}

.confirmation .confirmation-header #add-kit-inclusion-note.visible {
    display: block;
}

@media only screen and (max-width: 768px) {
    .confirmation .confirmation-header {
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }
}

.confirmation .confirmation-header .confirmation-icon {
    width: 56px;
    height: 56px;
    background-color: #069A15;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.confirmation .confirmation-header .confirmation-icon img {
    display: block;
    margin-top: -4px;
    margin-left: -6px;
}

.confirmation .confirmation-header h1.confirmation-headline {
    margin-bottom: 0.625rem;
    margin-top: 0;
}

.confirmation .confirmation-header h2.confirmation-sub-headline {
    margin-top: 1.875rem;
    margin-bottom: 0.625rem;
    font-size: 1.5rem;
    margin-top: 0;
}

.confirmation .confirmation-header span #confirmation-email-address a {
    text-decoration: none;
    color: var(--color-white-font);
}

.confirmation .confirmation-header .head {
    font-weight: 500;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}

.confirmation .confirmation-content {
    background-color: var(--color-white-background);
    color: var(--color-white-font);
    flex-grow: 1;
    overflow-y: auto;
    padding-left: 4.75rem;
    padding-right: 7rem;
}

@media only screen and (max-width: 768px) {
    .confirmation .confirmation-content {
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }
}

.confirmation .confirmation-footer {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    height: 2rem;
    flex-grow: 0;
    flex-shrink: 0;
    padding-left: 4.75rem;
    padding-right: 7rem;
}

@media only screen and (max-width: 768px) {
    .confirmation .confirmation-footer {
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }
}

/*
==========================================================================
separator
==========================================================================
*/

.separator {
    margin-top: 0.75rem;
    margin-bottom: 0.375rem;
}

.separator.dark {
    border-bottom: 1px solid var(--color-separator-dark);
}

.separator.bright {
    border-bottom: 1px solid var(--color-separator-bright);
}

.separator.white {
    border-bottom: 1px solid var(--color-white-background);
}

/*
==========================================================================
footer
==========================================================================
*/

.footer-navigation {
    display: flex;
    flex-direction: row;
    gap: 1.625rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1.063rem;
    padding-bottom: 0.688rem;
}

@media only screen and (max-width: 956px) {
    .footer-navigation {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 1.688rem;
        padding-bottom: 1.313rem;
    }
}

.footer-navigation .progress-text {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.25rem;
    margin-top: -0.125px;
}

.footer-navigation .progress-bar {
    height: 100%;
    min-height: 3.125rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    align-items: stretch;
}

.footer-navigation .progress-bar .step {
    display: flex;
    align-items: center;
    transition: border-right var(--transition-speed) var(--transition-ease);
    border-right: 1px solid transparent;
}

.footer-navigation .progress-bar .step.current:not(:last-child) {
    border-right: 1px solid var(--color-blue-background);
}

.footer-navigation .progress-bar .step .step-rect {
    width: 4.563rem;
    height: 1.25rem;
    transition: background-color var(--transition-speed) var(--transition-ease);
    background-color: var(--color-grey-background);
}

.footer-navigation .progress-bar .step.done .step-rect {
    background-color: var(--color-blue-background);
}

/*
==========================================================================
navigation
==========================================================================
*/

.navigation-button-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0.625rem;
}

.navigation-button-wrapper .navigation-button {
    transition: all var(--transition-speed) var(--transition-ease);
    border: 0;
    border-radius: 2px;
    padding: 1rem 1.6rem;
    position: relative;
    outline: 0;
    cursor: pointer;
}

.navigation-button-wrapper .navigation-button .button-text {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.188rem;
}

.navigation-button-wrapper .navigation-button .button-icon {
    position: absolute;
    top: 1.188rem;
}

.navigation-button-wrapper .navigation-button.disabled {
    opacity: 0.5;
    cursor: inherit;
}

/*
==========================================================================
navigation button back
==========================================================================
*/

.navigation-button-wrapper .navigation-button.back {
    background-color: var(--color-grey-button-background);
    color: var(--color-black-font);
}

.navigation-button-wrapper .navigation-button.back:hover {
    background-color: var(--color-grey-button-background-hover);
}

.navigation-button-wrapper .navigation-button.back.disabled:hover {
    background-color: var(--color-grey-button-background);
}

.navigation-button-wrapper .navigation-button.back .button-text {
    margin-left: 1.25rem;
}

.navigation-button-wrapper .navigation-button.back .button-icon {
    transition: left var(--transition-speed) var(--transition-ease);
    left: 1.25rem;
    margin-top: -0.10rem;
}

.navigation-button-wrapper .navigation-button.back:hover .button-icon {
    left: 0.938rem;
}

.navigation-button-wrapper .navigation-button.back.disabled:hover .button-icon {
    left: 1.25rem;
}

/*
==========================================================================
navigation button next
==========================================================================
*/

.navigation-button-wrapper .navigation-button.next {
    background-color: var(--color-blue-background);
    color: var(--color-white-font);
}

.navigation-button-wrapper .navigation-button.next:hover {
    background-color: var(--color-blue-background-hover);
}

.navigation-button-wrapper .navigation-button.next.disabled:hover {
    background-color: var(--color-blue-background);
}

.navigation-button.next .button-text {
    margin-right: 1.25rem;
}

.navigation-button-wrapper .navigation-button.next .button-icon {
    transition: right var(--transition-speed) var(--transition-ease);
    right: 1.25rem;
    margin-top: -0.10rem;
}

.navigation-button-wrapper .navigation-button.next:hover .button-icon {
    right: 0.938rem;
}

.navigation-button-wrapper .navigation-button.next.disabled:hover .button-icon {
    right: 1.25rem;
}

/*
==========================================================================
footnote
==========================================================================
*/

.footnote-wrapper {
    padding-bottom: 1.376rem;
}

.footnote-wrapper .footnote {
    margin-top: 0.688rem;
    font-weight: 400;
    font-size: 0.625rem;
    line-height: 0.813rem;
    color: var(--color-black-font);
}
