#questionnaire .form-group {
    /* height: 100%; */
    /* overflow: auto; */
}


.image-option {
    display: inline-block;
}


/* Adjust the height as needed to fit all options in a single column */
.wizard.vertical>.content {
    height: 40em;
}

/* Add this CSS for modernizing the checkboxes */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #2184be;
    border-color: #2184be;
}

input[type="checkbox"]:checked:after {
    content: "\f00c";
    font-family: FontAwesome;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 2px;
    left: 5px;
}

.image-option {
    display: inline-block;
    text-align: center;
}

/* Overwrite background-color for the sections */
#questionnaire-p-0 {
    background-color: #F4EFE9 !important;
}

/* Style for steps counter and buttons with the provided color */
.steps-counter,
button {
    /* background-color: #AD5754 !important;
    color: white !important; */
}

/* Overwrite background and font color for -+ buttons */
.minus-btn,
.plus-btn {
    background-color: #AD5754 !important;
    color: white !important;
}

/* Overwrite background color and font color for number input fields */
.number-control .number-input {
    background-color: #F2EDE6 !important;
    color: #AD5754 !important;
}

/* Modify the checked checkbox color */
input[type="checkbox"]:checked {
    background-color: #AD5754 !important;
    border-color: #AD5754 !important;
}

#questionnaire h3,
#questionnaire h4,
#questionnaire h5,
#questionnaire .description {
    text-align: center;
}

/* Styles for #create_account form */
#create-account-section form {
    background-color: #F4EFE9;
    /* Set background color for the form */
    padding: 20px;
    /* Add some padding around form contents */
    border-radius: 5px;
    /* Give the form slight rounded corners */
}

#create-account-section input,
#create-account-section textarea,
#create-account-section select {
    width: 100%;
    /* Make form fields take up full width of form */
    padding: 10px;
    /* Add some padding inside form fields */
    border: 1px solid #AD5754;
    /* Set border color */
    background-color: #F2EDE6;
    /* Set form fields background color */
    color: #AD5754;
    /* Set form fields text color */
    border-radius: 5px;
    /* Give the form fields slight rounded corners */
    margin-bottom: 10px;
    /* Add some space below each form field */
}

#create-account-section button[type="submit"] {
    background-color: #AD5754;
    /* Set background color for the submit button */
    color: white;
    /* Set text color for the submit button */
    border: none;
    /* Remove border from the submit button */
    padding: 10px 20px;
    /* Add some padding inside the submit button */
    cursor: pointer;
    /* Change cursor to pointer when hovering over the submit button */
    border-radius: 5px;
    /* Give the submit button slight rounded corners */
}

#create-account-section button[type="submit"]:hover {
    background-color: #993D3A;
    /* Darken background color a bit when hovering over the submit button */
}


#create_account {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

#create_account h4 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.create_account .content.login.create_acount {
    display: flex;
    flex-wrap: wrap;
}

.create_account .content.login.create_acount .column {
    flex: 1;
    min-width: 300px;
    /* Optional, depends on the minimum width you want for your columns */
}

.create-account.create-account--find-your-style .column:not(.column--business) {
    margin-left: -60px;
}

.mainwrap.create-account.create-account--find-your-style {
    padding: 0;
}

#create_account .title {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 32px;
    color: #8C4855;
    font-family: 'Carlito', sans-serif;
    text-transform: uppercase;
    position: relative;
}

#create_account .title .offset-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: rgba(173, 87, 84, 0.10);
    font-size: 110px;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 1;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

#create_account .column:not(.column--business) .title .offset-number {
    left: 44px;
}

#create_account .column.column--business .title .offset-number {
    left: -14px;
}


#create_account .collapse:not(.show) .column--business .offset-number,
#create_account .collapsing .column--business .offset-number {
    opacity: 0;
}

#create_account .collapse.show .column--business .offset-number {
    opacity: 1;
}

#create_account .field {
    display: flex;
    margin-bottom: 10px;
}

#create_account .column:not(.column--business) .field:not(.terms):not(.captcha):not(.submit),
#create_account .column:not(.column--business) .title {
    padding-left: 60px;
}

#create_account .field .fieldlabel {
    flex: 1;
    font-weight: bold;
    padding-right: 10px;
}

#create_account .field .fieldkey {
    flex: 2;
}

#create_account .field .inputRequirement {
    color: red;
}

#create_account input[type="text"],
#create_account input[type="password"] {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#create_account .box {
    margin-top: 20px;
}

.decoration {
    /* flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    margin: 5px; */
    cursor: pointer;
    /* Changes cursor to indicate clickable area */
}

.image-checkbox {
    display: none !important;
    /* Hides the checkbox */
}

.decoration label {
    display: block;
    cursor: pointer;
}

.decoration img {
    width: 100%;
    height: auto;
}

/* Style for a selected image */
.decoration label input[type="checkbox"]:checked+img {
    outline: 4px solid #AD5754;
    /* Adds a blue outline around the selected image */
    /* You can modify the above line to use a different visual indicator if you prefer */
}


.column.login .error:not(input) {
    background: #fdf7eb;
    margin-bottom: 10px;
    padding: 10px 10px;
    border-radius: 39px;
    font-size: 15px;
    color: #000;
    font-weight: 700;
    border: 2px solid #f8bb42;
    text-align: left;
}

.column.login .error:not(input)::before {
    content: "\f06a";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 24px;
    vertical-align: sub;
    margin-right: 20px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #ffffff;
    background: #f8bc45;
    padding: 2px;
    border-radius: 50%;
    box-shadow: rgb(248 188 69 / 20%) 0px 1px 11px 0px;
}


.create-account-tabs {
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    display: none;
}

.create-account-tabs .tab {
    text-transform: uppercase;
    padding: 8px 22px;
    border: 2px solid #AD5754;
    background-color: transparent;
    border-radius: 32px;
    color: #AD5754;
    font-weight: 700;
    letter-spacing: 0.32px;
    color: #AD5754;
    font-size: 15px;
    cursor: pointer;
    width: 232px;
    text-align: center;
}

.create-account-tabs .tab.active {
    background-color: #AD5754;
    color: #F2EDE6;
}

.create-account-tabs .create-account-tab-or {
    display: inline-block;
    margin-inline: 30px;
    color: #000000;
    font-weight: 700;
}

label.css-label[for="business-info"] {
    z-index: 30;
}

@media screen and (max-width:1280px) {
    .create-account-tabs {
        display: flex;
    }

    .steps-forms-container #create_account,
    .create-account--find-your-style .create-account-col {
        max-width: 100%;
    }

    .steps-forms-container {
        justify-content: center;
    }

    .mainwrap.create-account.create-account--find-your-style .column {
        width: calc(100% + 60px);
        max-width: calc(100% + 60px)
    }

    .steps-forms-container #login-steps {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:991px) {
    .mainwrap.create-account .column .title {
        text-align: left;
    }

    .col-12--business {
        max-width: 100% !important;
    }


    #create_account .box .field.submit {
        margin-bottom: 20px !important;
    }

}

@media screen and (max-width:768px) {

    .mainwrap.create-account.create-account--find-your-style .column .field:not(.terms),
    .mainwrap.create-account.create-account--find-your-style .column.column--business .field {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #create_account .column:not(.column--business) .field:not(.terms):not(.captcha):not(.submit),
    #create_account .column:not(.column--business) .title {
        padding-left: 0;
    }

    .mainwrap.create-account.create-account--find-your-style .column {
        width: 100%;
        max-width: 100%;
    }

    .create-account.create-account--find-your-style .column:not(.column--business) {
        margin-left: 0;
    }

    #create_account .column:not(.column--business) .title .offset-number {
        left: 0;
    }

    #create_account .box {
        margin-top: -10px;
    }

    #create_account .title .offset-number {
        top: 30%;
    }
}

@media screen and (max-width:576px) {
    #questionnaire-p-2 {
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .create-account-tabs {
        flex-direction: column;
    }

    .create-account-tabs .tab {
        padding: 6px 18px;
        font-size: 14px;
        width: 100%;
    }

    .create-account-tabs .create-account-tab-or {
        margin: 10px 0;
    }

}