/* GENERAL STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Input, text input */
input,
.input input[type=text],
.input input[type=email],
.input input[type=tel],
textarea {
    width: 100%;
    border: none;
}

textarea {
    height: 5rem;
    box-sizing: border-box;
    resize: none;
}

select {
    width: 100%;
    outline: none;
}

button {
    cursor: pointer;
}

body {
    background-color: #fafafa;
    color: #000;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
    max-width: 1200px;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Progressbar */
.progressbar {
    max-width: 300px;
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    flex: 1;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #fafafa;
}

.progress {
    background-color: #096df2;
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
    font-size: 18px;
}

.progress-step-active {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px 0px 0px 3px rgba(9, 109, 242, 0.15), 0px 0px 0px 0.5px #096df2;
}

/* Form */
.form {
    width: 100%;
    margin: 0 auto;
    padding: 4.5rem 1rem 1rem;
    max-width: 1200px;
}

.form-step {
    display: none;
}

.form-step h1,
.form-step h2 {
    text-align: center;
}

.form-step h1 {
    font-size: 40px;
    margin-bottom: 36px;
}

.form-step h2 {
    margin-bottom: 24px;
}

.form-step-active {
    display: block;
}

/* Form step content */
.form-step-content {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.form-step-content input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.captchaInput {
    border: 1px solid #BFCBD9;
}

.captchaContainer {
    align-items: center;
}

.form-step-content label {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    user-select: none;
    border: 1px solid #d9d9d9;
}

.form-step-content label:hover {
    color: #096df2;
    background: #e6f1fe;
    box-shadow: 0px 0px 0px 3px rgba(9, 109, 242, 0.15), 0px 0px 0px 1px #096df2;
}

.form-step-content input[type="radio"]:checked+label {
    color: #096df2;
    background: #e6f1fe;
    box-shadow: 0px 0px 0px 3px rgba(9, 109, 242, 0.15), 0px 0px 0px 1px #096df2;
}

/* Form step buttons */
.form-step-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
}

.form-step-buttons .btn {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    display: flex;
    padding: 0.5rem 1.25rem;
    justify-content: center;
    align-items: center;
    border: none;
    gap: 0.625rem;
    border-radius: 6.1875rem;
}

.form-step-buttons .btn-next, .form-step-buttons .btn-submit {
    color: white;
    background: #0d0d12;
}

.form-step-buttons .btn-prev {
    color: #096df2;
}

/* Form container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container .input-group {
    display: flex;
    flex-direction: column;
}


.form-container .input-group:not(:first-child) label {
    margin-top: 20px;
}

/* Form step block */
.form-step-block {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-step-block h2 {
    margin: 0;
    text-align: left;
    font-weight: bold;
}

.form-step-block label {
    font-weight: 700;
}

.form-step-block .input-group:not(:first-child) {
    margin-top: 1rem;
}

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

.form-step-block .input input {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.625rem;
    border-radius: 0.375rem;
    background: #fff;
}

.form-step-block .input input::placeholder {
    border-radius: 0.375rem;
    background: #fff;
}

.form-step-block textarea {
    width: 100%;
    min-height: 150px;
    resize: none;
    outline: none;
}


/* Markus added */

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-step {
    margin-top: 3rem;
}

.progressbar {
    gap: 3rem;
}


/* Mobile view */

@media only screen and (max-width: 786px) {
    .form-step-content {
        display: flex;
        flex-direction: column;
    }

    .form-step > h1, .options > h1 {
        line-height: 1;
    }

}

.doneBody {
    display: flex;
    flex-direction: column;
    padding-top: 7rem;
    padding-left: 20%;
    padding-right: 20%;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #FAFAFA;
}

.endTitle {
    font-size: 42px;
    max-width: 500px;
    margin-top: 42px;
    line-height: 3.5rem;
}

.icon-Checkmark {
    font-size: 12rem;
}

.input input[type="email"] {
  background: #fff;
  border: 0;
  box-shadow: none;
  color: rgba(29, 36, 51, 0.8);
  font-size: 16px;
  margin: 0;
  outline: none;
  padding: 8px;
  width: 100%;
  cursor: text;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
      color: rgba(29, 36, 51, 0.4);
}

.btn--primary {
    background: #000;
    color: #fff;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn--medium {
    padding: 0.6rem 1rem;
}

.btn {
    display: inline-block;
    text-align: center;
    border-radius: 6.1875rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
}

#cph-img {
    height: 100px;
    width: 300px;
    margin: 15px 0px;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    color: #303030;
    min-height: 60px;
    min-width: 90px;
    font-weight: 500;
    transition: background-color 0.3s;
    cursor: pointer;
    z-index: 1000000;
    position: fixed;
    right: 20px;
    animation: none;
    top: 20px;
    background-color: #dc3545;
    max-width: 400px;
}

.alert__expand {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 0;
    min-height: 50px;
    justify-content: center;
    border-right: 1px solid white;
}

.alert--error i {
    font-size: 28px;
    color: white;
    line-height: 2rem;
    font-family: 'erply-iconfont' !important;
    font-style: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

.alert__message {
    margin: 0 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: white;
}

.alert__close {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 8px;
}

.alert__close i {
    font-size: 20px;
}

.alert:hover .alert__close {
    display: block;
}

.required-asterick {
    color: red;
}

@media only screen and (max-width: 809px) {
    .endTitle {
        font-size: 24px;
        line-height: 2.5rem;

    }

    .icon-Checkmark {
        font-size: 8rem;
    }
}

@media only screen and (max-height: 850px) {
    .endTitle {
        font-size: 24px;
        line-height: 2rem;
    }

    .icon-Checkmark {
        font-size: 8rem;
    }
}

@media only screen and (max-width: 600px) {
    .endTitle {
        font-size: 20px;
        line-height: 2rem;

    }

    .icon-Checkmark {
        font-size: 8rem;
    }
}

#posOptions, #backOfficeOptions, #featureRequestOptions {
    display: none;
}

.options {
    margin-top: 1rem;
}