@charset "utf-8";
/* CSS DOKUMENT */

/* FORMULAR CSS STYLINGS */
:focus {
    outline: 2px solid var(--orange);
}

.required-error {
    outline: 2px solid #FD726D;
    transition: var(--smooth);
}

.required-error::placeholder {
    color: #FD726D;
    transition: var(--smooth);
}

.radio-container label {
    font-size: 14px;
}

.m-20-top {
    margin-top: 20px;
}

.opacity {
    opacity: .6;
    margin-bottom: 0px;
}

.margin {
    word-spacing: -1px;
    opacity: .6;
}

.form-disclaimer {
    font-size: .9rem;
    margin-top: 20px;
    margin-bottom: 0;
}

.wizard-fieldset h5 {
    text-align: center;
}

.form-container label {
    color: var(--dark-grey);
}

.form-container {
    display: flex;
    flex-direction: row;
    gap: var(--space-m);
    margin: 0 auto;
    max-width: 1000px;
    background-color: var(--body-color);
    border: 1px var(--grey) solid;
    border-radius: 8px;
    padding: 30px;
}

.form-container-50 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.form-container-100 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.form-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-80 {
    width: 80px;
}

.resize-vertical {
    resize: vertical;
    overflow: auto;
}

.resize-vertical::-webkit-scrollbar {
    display: block;
}

.form-input {
    font-family: var(--copy-font);
    font-weight: 200;
    color: var(--dark-grey);
    padding: 9px 10px 11px;
    background-color: var(--body-color);
    border: 1px #d6dae2 solid;
    border-radius: 4px;
}

.form-input::placeholder {
    opacity: .65;
    font-size: 14px;
}

.radio-container {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    gap: var(--space-xs);
    flex-wrap: wrap;
    row-gap: 28px;
}

.radio-field {
    margin-bottom: 8px;
}

.form-wizard .wizard-form-radio {
    display: inline-block;
    position: relative;
}

.form-wizard .wizard-form-radio input[type="radio"] {
    display: none;
}

.form-wizard .wizard-form-radio input[type="radio"] ~ label {
    transition: var(--smooth);
    cursor: pointer;
    padding: 9px 16px 11px;
    background-color: var(--light-blue);
    border: 1px #DEE2EA solid;
    border-radius: 4px;
}

.form-wizard .wizard-form-radio input[type="radio"] ~ label:hover {
    transition: var(--smooth);
    opacity: .7;
}

.form-wizard .wizard-form-radio input[type="radio"]:checked ~ label {
    transition: var(--smooth);
    background-color: var(--orange);
    color: var(--white);
    border: 1px var(--orange) solid;
    border-radius: 4px;
}

hr {
    border: 1px var(--light-grey) solid;
    margin: 16px 6px;
}

/* FORM WIZARD */
/* Copyright (c) 2024 by Santhosh M (https://codepen.io/santhoshkotian/pen/LYRVXPj) */
.form-wizard {
    color: var(--dark-grey);
}

.form-wizard .form-wizard-header {
    text-align: center;
}

.form-wizard .form-wizard-next-btn, .form-wizard .form-wizard-previous-btn, .form-wizard .form-wizard-submit {
    display: inline-block;
    min-width: 120px;
    text-align: center;
    font-family: var(--copy-font);
    padding: 9px 14px 11px 14px;
    font-size: 1rem;
    color: var(--white);
    font-weight: 200;
    background-image: var(--gradient);
    border: none;
    
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
}

.form-wizard .form-wizard-next-btn:hover, .form-wizard .form-wizard-next-btn:focus, .form-wizard .form-wizard-previous-btn:hover, .form-wizard .form-wizard-previous-btn:focus, .form-wizard .form-wizard-submit:hover, .form-wizard .form-wizard-submit:focus {
    scale: .95;
    opacity: .65;
    cursor: pointer;
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
}

.form-wizard .wizard-fieldset {
    display: none;
}

.form-wizard .wizard-fieldset.show {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-wizard .wizard-form-error {
    display: none;
    background-color: #d70b0b;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 101.25%;
}

.form-wizard .form-wizard-previous-btn {
    background-image: none;
    border: 2px var(--blue) solid;
    padding: 7px 12px 9px 12px;
    color: var(--blue);
}

.form-wizard .form-wizard-previous-btn:hover {
    color: var(--blue);
}

.form-wizard .form-control {
    font-weight: 300;
    height: auto;
    padding: 15px;
    color: #888888;
    background-color: #E7F0F9;
    border: 1px #DEE2EA solid;
    border-radius: 4px;
    width: 97.25%;
    font-family: var(--copy-font);
}

.form-wizard .form-control:focus {
    box-shadow: none;
}

.form-wizard .form-group {
    position: relative;
    margin: 25px 0 0 0;
}

.form-wizard .wizard-form-text-label {
    position: absolute;
    left: 13px;
    top: 11px;
    transition: 0.2s linear all;
}

.form-wizard .focus-input .wizard-form-text-label {
    color: var(--dark-grey);
    top: -23px;
    transition: 0.2s linear all;
    font-size: 12px;
}

.form-wizard .form-wizard-steps {
    margin: -24px 0 199px 0;
}

.form-wizard .form-wizard-steps li {
    width: 33.33%;
    float: left;
    position: relative;
}

.form-wizard .form-wizard-steps li::after {
    background-color: #E7F0F9;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-48%);
    width: 100%;
}

.form-wizard .form-wizard-steps li span {
    color: var(--blue);
    background-color: #E7F0F9;
    border: 8px #F3F7FA solid;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 1;
}

.form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
}

.form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
    background-color: var(--orange);
    color: #ffffff;
}

.form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
    background-color: var(--orange);
    left: 50%;
    width: 50%;
}

.form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
}

.form-wizard .form-wizard-steps li:last-child::after {
    left: 0;
}

.form-wizard .wizard-password-eye {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.disclaimer {
    color: var(--grey);
    font-size: .85rem;
}

.form-range {
    display: flex;
    flex-direction: row;
    align-items: center;
} 

.form-range .form-control {
    width: auto;
}

.form-range span {
    margin: 25px 14px 0;
}

.gap-32 {
    gap: 32px;
}

.gap-0 {
    gap: 0px;
}

.form-dropdown {
    font-weight: 300;
    height: auto;
    padding: 15px;
    color: #888888;
    background-color: #E7F0F9;
    border: 1px #DEE2EA solid;
    border-radius: 4px;
    width: 100px;
    font-family: var(--copy-font);
}

.width-60-to-100 {
    width: 60%;
}

@keyframes click-radio-wave {
    0% {
        width: 25px;
        height: 25px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        width: 60px;
        height: 60px;
        margin-left: -15px;
        margin-top: -15px;
        opacity: 0.0;
    }
}

/* <= 992 px */
@media screen and (max-width: 992px) {
    .form-wizard .form-control {
        width: 96.25%;
    }
}

/* <= 767 px */
@media screen and (max-width: 767px) {
    .wizard-content-left {
        height: auto;
    }

    .form-container {
        flex-direction: column;
    }

    .form-container-50 {
        width: 100%;
    }
}

/* <= 576 px */
@media screen and (max-width: 576px) {
    .form-wizard .form-control {
        width: 93.25%;
    }
    
    .form-range .form-control {
        width: 80px;
    }

    .m-20-top {
        margin-top: 5px;
    }
    
    .width-60-to-100 {
        width: 100%;
    }
}