/*
    Common
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    /*overflow: hidden;*/
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    /*background: #F7EDEA;*/
    border-radius: 3px;
    overflow: hidden;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}
/*.steps:after{
    content: "";
    background: #EAF0F7;
    position: absolute;
    left: 10px;
    top: 25px;
    height: 1px;
    width: calc(100% - 161px);
    z-index: -1;
}*/
.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
}
.wizard > .steps > ul > li:first-of-type{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    overflow: hidden;
}
.wizard > .steps > ul > li
{
    width: 8.33%;
    margin-right: -3px;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
    display: inline-block;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}
.wizard > .steps a{
    font-size: 0 !important;
}
.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    height: 10px;
    width: auto;
    /*margin: 0 0.5em 0.5em;*/
    border-radius: 0 4px 4px 0;
    padding: 0;
    display: flex;
    font-size: 12px;
    align-items: flex-end;
    justify-content: center;
}
/*.wizard > .steps .current a {
    border: 2px solid #fff;
    outline: 2px solid #EDC84F;
    margin-top: 5px;
    box-shadow: 0 10px 14px 0 #c3d3e6;
}*/
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #F7EDEA;
    color: #7B97B2;
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #EDC84F;
    color: #fff;
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #EDC84F;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizard > .content
{
    /*background: #eee;*/
    display: block;
    margin: 0.5em;
    min-height: 342px;
    overflow: hidden;
    position: relative;
    width: 100%;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    float: left;
    clear: both;
    width: 100%;
    /*position: absolute;*/
    /*width: 95%;*/
    /*height: 95%;*/
    /*padding: 2.5%;*/
}

.wizard > .content > .body ul
{
    list-style: disc !important;
}

.wizard > .content > .body ul > li
{
    display: list-item;
}

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label
{
    display: flex;
    margin-bottom: 0.5em;
    align-items: center;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    display: inline-block;
    margin-left: 0;
    margin-top: 10px;
    font-size: 0.7em;
}

.wizard > .actions
{
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
    margin: 10px 0 50px;
    z-index: 9;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul
{
    display: flex;
    text-align: right;
    justify-content: space-between;
}

.wizard > .actions > ul > li
{
    margin: 0 0.5em;
    display: inline-block;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a

{
    background: #EDC84F;
    display: block;
    color: inherit;
    padding: 12px 40px;
    text-decoration: none;
    /* border-radius: 30px; */
    /* min-width: 150px; */
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.wizard > .actions a:hover,
.wizard > .actions a:active{
    color: #FFFFFF;
    background-color: #00B2AF;
}
.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active, .wizard > .actions > ul > li:first-of-type a
{
    background: #F7EDEA;
    color: inherit;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}
.question{
    margin: 30px 0 80px;
}
.question em{
    font-family: "Amithen", sans-serif;
    color: #EDC84F;
    font-size: 1.3em;
}
.survey-wrapper{
    margin: 0 auto 80px;
    max-width: 1300px;
    font-family: "Montserrat", sans-serif;
}
div#survey {
    max-width: 900px;
    margin: 0 auto;
}

.step-content{
    /*display: flex;
    justify-content: space-between;
    flex-wrap: wrap;*/
}
.step-content-img{
    width: 40%;
    float: right;
    position: relative;

}
#services-box> img:first-of-type {
    width: 520px;
    max-width: none;
}
.step-content-img img:not(:first-of-type){
    position: absolute;
    max-height: 105px;
    display: none;
}
.step-content-img .shown-img img{
    position: absolute;
    max-height: 105px;
}
.step-content-img .shown-img img:nth-of-type(1){
    left: 75px;
    top: 225px;
}
.step-content-img .shown-img img:nth-of-type(2){
    left: 185px;
    top: 204px;

}
.step-content-img .shown-img img:nth-of-type(3){
    left: 300px;
    top: 187px;

}
.step-content-img .shown-img img:nth-of-type(4) {
    left: 115px;
    top: 258px;

}

.step-content-img .shown-img img:nth-of-type(5) {
    left: 223px;
    top: 258px;

}
.step-content-img .shown-img img:nth-of-type(6) {
    left: 356px;
    top: 222px;

}
/*.step-content-img.two-img .step-content-img img:nth-of-type(3), .step-content-img.one-img .step-content-img img:nth-of-type(3), .step-content-img.one-img .step-content-img img:nth-of-type(2){
    display: none;
}*/
#more-service-input{
    max-width: 400px;
}
.form-field {
    margin: 0 0 30px;
}
.form-field input, .form-field select, .form-field textarea{
    max-width: 500px;
    display: block;
}
.form-instructions{
    max-width: 600px;
    margin: -30px 0 30px;
}
.wizard > .content label a{
    color: #EDC84F
}
.last-step{
    margin-top: 80px
}
.wpforms-field.wpforms-field-checkbox.custom-checkbox {
    margin-bottom: 10px;
}
.wizard .custom-radio {
    margin-bottom: 5px;
}
.error-note {
    border: 1px solid red;
    padding: 5px 10px;
    font-size: 0.7em;
    border-radius: 5px;
    max-width: 500px;
    float: left;
    display: none;
}
.actions > ul > li.disabled {
    display: block;
    visibility: hidden;
}
.custom-checkbox [type="radio"]{
    display: none !important;
}
.custom-checkbox [type="radio"] + label{
    cursor: pointer;
}
.custom-checkbox [type="radio"] + label:before
{
    content: "";
    float: left;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 1px solid #EDC84F;
    margin: 0 10px 0 2px;
    max-width: 18px;
    min-width: 18px;
}
.custom-checkbox [type="radio"]:checked + label:before
{
    content: "";
    background: #EDC84F;
    border-color: #fff;
}
.img-checkboxes{
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
}
.img-checkbox {
    float: left;
    /* margin-right: 10px; */
    width: 25%;
    padding: 0 10px 0 0
}
.img-checkbox label{
    display: block !important;
    text-align: center;
    /*max-width: 166px;*/
    border: 2px solid #F7E7CE;
    background: #F7EDEA;
    border-radius: 5px;
    padding: 10px 15px;
}
.img-checkbox img{
    clear: left;
    display: block;
    margin: 10px auto;
    width: auto;
    max-height: 200px;
}
.img-checkbox label span{
    min-height: 51px;
    display: block;
}
.img-checkbox [type="radio"] + label:before{
    margin: 0 10px 10px 2px
}
@media screen and (max-width: 570px){
    div#survey, .wizard > .actions{
        width: 100%
    }
    .step-content-img{
        display: none;
    }
    .custom-radio label {
        padding: 12px 20px;
        min-width: 0;
        width: 100%;
    }
}