
.solicitarePage {
    position: relative;
    z-index: 2;
}
.solicitarePageImg{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.solicitarePageImg img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.grecaptcha-badge { 
    visibility: hidden; 
}
.jf-hide{
    display: none;
  }


input {
    border: none;
    border-radius: none;
}

input:focus {
    border-radius: none;
    border: none;
    outline: none;
}

.solicitarePage form, .jf-thankyou {
    width: 70%;
    margin: 0 auto;
    border-radius: 0;
}


.optionWrapper, .option {
    display: flex;
    align-items: center;
}



form label, form .question p, .checkboxWrapper{
    font-family: initial;
    font-family: 'Montserrat';
    color: var(--white);
    font-size: 0.8rem;
}


.option {
    flex: 1 1 100%;
}

.question input::placeholder {
    opacity: 0.6;
}

.question {
    display: flex;
    flex-direction: column;
    box-sizing: content-box;
    padding: 8vh;
    min-height: 4vh;
    background-color: #633e5787;
}


.question > label {
    margin-bottom: 10px;
}

.question input, .question textarea {
    padding: 10px 0;
    background: none;
    color: var(--white);
    border-bottom: 2px solid var(--white);
    font-family: 'Montserrat';
    font-size: 0.8rem;
}



.question textarea {
    outline: none;
    box-shadow: none;
    border: 0;
    border: 2px solid var(--white);
    min-height: 1em;
    max-height: 50vh;
    padding: 5px;
} 

.question input::placeholder {
    color: var(--white);
    font-size: 0.65rem;
}


.radio input[type=radio],
.radio-inline input[type=radio] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;   
}

.solicitarePage .subPageDesc * {
    color: var(--white)!important;
}



/* .checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {

} */


/* costum CheckBox */
.checkboxWrapper {
    display: flex;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    margin-right: 20px;
    
  }
  
  /* Hide the browser's default checkbox */
  .checkboxWrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    height: 100%;
    width:100%;
    z-index: 9999;
  }

  
  /* Create a custom checkbox */
  .checkboxWrapper .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkboxWrapper:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkboxWrapper input:checked ~ .checkmark {
    background-color: var(--color2);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkboxWrapper input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkboxWrapper .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

.optionBtn {
    position: relative;
    font-size: 0.8rem;
    transition: all .2s ease-in-out;
    cursor: pointer;
    justify-content: center;
    text-align: center;
    background: var(--color2);
    min-height: 4vh;
    margin: 10px 20px;
}
.optionWrapper {
    margin: 0 -20px;
}


.option input[type="radio"]:checked + label {
    background-color: var(--headColor);
    border: 0;
    width: 100%;
    min-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}





/* important */
section.page{
    display: none;
}

section.page.current{
    display:block;
}

.jf-hide {
    display: none;
}


.form-group.error-msg{
    clear: both;
}

.jf-option-box {
    display: none;
    margin-left: 8px;
}

.jf-disabled {
    background-color: #eeeeee;
    opacity: 0.6;
    pointer-events: none;
}
.submit {
    display: flex;
}

.progress {
    width: 1.5vw;
    margin: auto;
    color: var(--white);
}

/* 
overwrite bootstrap default margin-left, because the <label> doesn't contain the <input> element.
*/


.mainDescription {
    margin-bottom: 10px;
}

p.description {
    margin: 0px;
}

.responsive img {
    width: 100%;
}

p.error,
p.validation-error {
    /* padding: 5px; */
    color: var(--white);
    font-weight: 600;
}

p.error {
    margin-top: 10px;
    color: #a94442;
}

p.server-error {
    font-weight: bold;
}


.form-group.required .control-label:after {
    color: #dd0000;
    content: "*";
    margin-left: 6px;
}


.sendStep h4 {
    color: var(--white);
    margin-top: 0;
}










/**
page navigation / page break / action bar styles
*/
		
.steps {
    padding: 0;
    overflow: hidden;
    display: none;
}

.steps li { 
    list-style: none;
    float: left;
    margin: 10px;
    display: inline-block;
    border-bottom-width: 2px;
}

.steps span.pn-num{
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: black;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}

.steps li.current span.pn-num{
    background-color: #337ab7;
    color: white;
}

ul.actions{
    padding-left:0px;
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
}

.actions li, .actions button {
    list-style: none;
}
.actions li a, .actions button {
    padding: 10px 10px;
}
.actions li {

}

.actions .numberText > label,
.actions .previous > a.link {
    line-height: 46px;
}
.gdpr {
    display: flex;
}
.jf-thankyou h4 {
    color: var(--white);
}










@media only screen and (max-width: 1026px) {
    .steps {
        display: none;
    }
    .solicitarePage form, .jf-thankyou {
        width: 100%;
    }
    .question {
        padding: 6vh;
        min-height: 30vh;
        justify-content: center;
    }
    form label {
        font-size:0.8rem;
    }
    .question input::placeholder {
        font-size: 0.65rem;
    }
    .optionWrapper, .option {
        flex-wrap: wrap;
        justify-content: center;
    }
   .solicitarePage > div {
        padding-top: 15vh;
    }

    .solicitarePage {
        width: 85.5vw;
        margin-bottom: 10vh;
    }
    .optionBtn {
        min-height: 6vh;
    }
    .actions li, .action button {
        list-style: none;
    }
    .gdpr {
        flex-direction: column;
    }
    .gdpr a{
        margin-top: 2vh;
    }
    .backgroundImg1 {
        object-position: 30% 130%;
    }



}

