@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'AvenirLT';
    src: url('../webfonts/39F2B0_0_0.eot');src: url('../webfonts/39F2B0_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/39F2B0_0_0.woff2') format('woff2'),url('../webfonts/39F2B0_0_0.woff') format('woff'),url('../webfonts/39F2B0_0_0.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AvenirLT';
    src: url('../webfonts/3A0853_0_0.eot');src: url('../webfonts/3A0853_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/3A0853_0_0.woff2') format('woff2'),url('../webfonts/3A0853_0_0.woff') format('woff'),url('../webfonts/3A0853_0_0.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display:swap;
}
@font-face {
    font-family: 'AvenirLT';
    src: url('../webfonts/39F2B0_1_0.eot');src: url('../webfonts/39F2B0_1_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/39F2B0_1_0.woff2') format('woff2'),url('../webfonts/39F2B0_1_0.woff') format('woff'),url('../webfonts/39F2B0_1_0.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display:swap;
}
*{box-sizing:border-box;}
html{
    font-size:62.5%;
}
html,body{
    margin:0;
    padding:0;
}
body {
    font-family: 'AvenirLT', sans-serif;
    font-size:1.5rem;
    color:#00011D;
}
.sw {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.sw.large{
    max-width:1600px;
}
.sw.small{
    max-width:500px;
}

img{
    display: block;
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5,h6,strong,b{
    font-family: 'Montserrat', sans-serif;
    font-weight:bold;
}
h1 {
    margin: 0 0 20px 0;
    font-size: 3rem;
    color: #333;
}
h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    color: #00011D;
    margin:0 0 10px 0;
}
.sub-title {
    font-size: 1.4rem;
    line-height:2rem;
    font-weight: 900;
    color: #FFD300;
}
h3,h2{
    margin:0;
}
input[type="submit"], .button, button {
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding:6px;
    border-radius: 5px;
    width: 100%;
    background:#00011D;
    position: relative;
    transition: 0.2s;
    border: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input[type="submit"]:hover, .button:hover , button:hover{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #06beb6;
}
*:focus{
    outline:none;
}
form {
    display: block;
    margin: 0;
}
header {
    display: block;
    padding: 15px 0 0 0;
}
.formInput {
    margin: 0 0 20px;
    position:relative;
}
.formInput:after {
    content: '!';
    position: absolute;
    bottom: 9px;
    right: -25px;
    width: 20px;
    height: 20px;
    opacity:0;
}
.formInput > * {
    display: block;
}
select {
    font-family: inherit;
    width: 100%;
    border: 1px solid #DFDFDF;
    font-size: 1.4rem;
    line-height: 3rem;
    padding: 10.5px 15px;
    border-radius: 5px;
    font-weight: normal;
}

input,textarea {
	font-family:inherit;
    width: 100%;
    -webkit-appearance: none;
    border: 1px solid #DFDFDF;
    font-size: 1.4rem;
    line-height: 3rem;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: normal;
}
textarea{
    min-height: 110px;
}
.formInput.invalid input, .formInput.invalid textarea {
    
}
.formInput label {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0 0 5px 0;
}
.formInput[data-required="1"] label:after {
	/*
    content: ' *';
    */
}
.formInput.invalid label {
    color:#e46565;   
}
.formInput label{
    background-image: url(../_images/check-green.svg);
    background-repeat: no-repeat;
    background-position: calc(100% + 20px) center;
    background-size:0px auto;
}
.formInput.valid label {
    background-size: 14px auto;    
    background-position: right center;
}
.formInput input[type="checkbox"]{
    width: 26px;
    height: 26px;
    padding: 0;
    margin: 0 10px 0 0;
    cursor:pointer;
}
.formInput input[type="checkbox"]:checked{
	background-image:url(../_images/check.svg);
	background-size:14px auto;
	background-repeat:no-repeat;
	background-position:center;
}
.check-box-answer{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 10px 0;
	min-width:50%;
}
.check-box-answers {
	padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.check-box-answer:last-child {
    margin: 0;
}
.formInput input[type="radio"]{
    width: 26px;
    height: 26px;
    padding: 0;
    margin: 0 10px 0 0;
    cursor:pointer;
    border-radius:100%;
}
.formInput input[type="radio"]:checked{
	background-image:url(../_images/check.svg);
	background-size:14px auto;
	background-repeat:no-repeat;
	background-position:center;
}
.radio-answer{
	display: flex;align-items: center;justify-content: flex-start;margin: 0 0 10px 0;
}
.radio-answers {
    padding-top: 10px;
}
.radio-answer:last-child {
    margin: 0;
}



/*Message handling*/
.messages .message {
    position: fixed;
    bottom: 10px;
    width: 300px;
    max-width: 100%;
    background: #fff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    z-index: 99999;
    padding: 10px 5px;
    font-weight: normal;
    border-radius: 5px;
    font-size: 1.6rem;
    line-height: 2.8rem;
    font-weight: 600;
    -webkit-box-shadow: 4px 4px 10px rgb(0 0 0 / 50%);
    box-shadow: 4px 4px 10px rgb(0 0 0 / 40%);
    -webkit-animation: mymove 6s forwards;
    animation: mymove 6s forwards;
    pointer-events: none;
}
.messages .message.error {
    color: #e46565;
}
.messages .message.success {
    color: #4caf50;
}
body#recruitment-heroes {
    background-color: #FFD300;
    background-image: url(../_images/bg-shape.svg);
    background-position: right top;
    background-size: contain;
    background-repeat: no-repeat;
}

/*General elements*/
main{
    display:block;
    padding:50px 0 0 0;
}

/*Form Sidebar*/
.side-bar-steps {
    padding-top: 25px;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.side-bar-step {
    font-size: 1.6rem;
    line-height: 3rem;
    color:#C8C8C8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin:0 0 25px 0;
    transition:0.2s ease-in-out;
}
.side-bar-step:last-child{
    margin:0;
}
.step-number {
    width: 30px;
    height: 30px;
    background:#F9F9F9;
    font-size: 1.6rem;
    line-height: 3.2rem;
    text-align: center;
    color:#C8C8C8;
    border-radius: 100%;
    font-weight: bold;
    margin-right:15px;
    transition:0.2s ease-in-out;
}
.side-bar-step.active{
    color: #00011D;
}
.side-bar-step.active .step-number{
    background-color:#00011D;
    color:#fff;
}



/*Form styling*/
.widget{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgb(0 0 0 / 25%);
    padding: 40px;
    margin: 0 0 30px 0;
    background-color: #f5f5f5;
    transition:0.1s ease-in-out;
    display:none;
}
.widget.ready{
	display:block;
}
.widget.loaded{
	background-color: #fff;
}
.widget *{
	transition:0.1s ease-in-out;
}
.widget *{
    opacity:0;
}
.widget.loaded *{
	opacity:1;
}
.form-page.active {
    display: block;
}
.form-page {
    margin:0;
    display: none;
}
.form-page .text {
    margin: 0 0 20px 0;
}
.widget.form-holder:after {
    content: '';
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background-image: url(../_images/loader.svg);
    background-repeat: no-repeat;
    background-position: 5px 2px;
    background-size: 90%;
    display: block;
    z-index: 2;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    display: none;
}
.widget.form-holder.loading:after{
    display:block;
}
.widget.form-holder.loading {
    filter: blur(1px);
    cursor: wait;
}
.text-wrapper {
    padding: 30px;
}
p {
    font-size: 1.5rem;
    line-height: 2.6rem;
    margin: 0 0 15px 0;
}
.text-wrapper p:last-child {
    margin: 0;
}
.button-container{
    display:flex;
    justify-content:flex-end;
}
.button-container .button {
    max-width: calc(50% - 7.5px);
}
.button.prev_button{
    background: transparent;
    color: #00011D;
    max-width: 100%;
    width: auto;
    opacity: 0.4;
}
.button.prev_button:hover{
    opacity:1;
}
.button-container.double{
    display: flex;
    justify-content: space-between;
}
.ajax_status_text p{
    margin: 0 0 10px 0;
}
.ajax_status_text p:last-child{
    margin:0;
}
.ajax_status_text {
    padding-top: 20px;
}
.grecaptcha-badge {
    display: none!important;
}
#captcha-text{
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: #e2e2e2;
    font-weight: 500;
    font-size: 1.2rem;
    cursor:default;
    transition:0.2s ease-in-out;
}
#captcha-text:hover{
	color:#ababab;
}
.naw-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.naw-wrapper > .formInput:nth-child(1) {
    width:calc(50% - 45px);
}
.naw-wrapper > .formInput:nth-child(2) {
    width:70px;
}
.naw-wrapper > .formInput:nth-child(3) {
    width:calc(50% - 45px);
}



/*Back end*/
.form-overview {
    padding: 30px;
}
.forms-overview {
    margin: 30px 0;
}
a.form-item {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 15px;
}
.page-outer {
    margin: 30px 0;
    padding: 30px;
    border: 1px solid #a5a5a5;
    border-radius: 10px;
}
.page-intro-admin{
    position:relative;
}
.page-intro-admin .save-intro {
    position: absolute;
    right: 10px;
    top: 35px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/save.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px auto;
}
.page-intro-admin textarea {
    min-height: 70px;
    max-height: 70px;
    margin: 15px 0 0 0;
    border-radius: 5px;
}
.button.create-question {
    max-width: 150px;
    float:right;
}
.button.create-page {
    max-width: 150px;
    float:right;
}
.removePage {
    max-width: 150px;
    float: right;
    margin-right: 15px;
}
.questions-outer {
    border: 1px solid #ccc;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}


/*Pop up styling*/
.pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.8);
    display: none;
    z-index: 9;
}
.pop-up.active{
    display:block;
}
.pop-up-inner {
    width: 500px;
    padding: 40px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*Back end*/
.form-overview h2 {
    line-height: 3.2rem;
}
.form-header {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 10px #dedede;
    border-radius: 10px;
}
.question-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 7px 180px 7px 15px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}
.question-item:hover {
    background: #f3f3f3;
}
.removeQuestion {
    position: absolute;
    right: 7.5px;
    top: 7.5px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/trash.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px auto;
}
.editQuestion {
    position: absolute;
    right: 35px;
    top: 7.5px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/edit.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px auto;
}
.question-text {
    width: 260px;
}
.question-type {
    width: 100px;
}
.question-mapping {
    width: 200px;
}
.order-upQuestion {
    position: absolute;
    right: 62.5px;
    top: 11.5px;
    width: 15px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/sort-up.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 14px auto;
}
.order-downQuestion {
    position: absolute;
    right: 90px;
    top: 2.5px;
    width: 15px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/sort-down.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 14px auto;
}
span.edit-title {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: top;
    margin: 0 0 0 10px;
    font-size: 0;
    line-height: 0;
    background-image: url(../_images/edit.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    cursor:pointer;
}
.required-check {
    position: absolute;
    right: 113.5px;
    top: 12px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 5px;
}
.required-check[data-required="1"] {
    background-image:url(../_images/check.svg);
    background-size:12px;
    background-repeat:no-repeat;
    background-position:center;
}
.AddAnswer {
    position: absolute;
    right: 143.5px;
    top: 12px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image:url(../_images/answer.svg);
    background-size:16px;
    background-repeat:no-repeat;
    background-position:center;
}
.question_answers {
    width: 100%;
    border-top: 1px solid #ccc;
    border: 1px solid #000;
    margin: 15px 0 15px 15px;
}
.question_answers > .answer:hover {
    background: #d6d6d6;
}
.question_answers > .answer:first-child {
    border-top: 0;
}
.question_answers > .answer {
    font-size: 1.4rem;
    line-height: 3rem;
    padding: 4px 15px;
    border-top: 1px solid #000;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    position: relative;
}
.removeAnswer {
    position: absolute;
    right: 7.5px;
    top: 7.5px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/trash.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px auto;
}
.editAnswer {
    position: absolute;
    right: 35px;
    top: 7.5px;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    cursor: pointer;
    background-image: url(../_images/edit.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px auto;
}












@-webkit-keyframes mymove {
    0% { -webkit-transform: translateY(100%) translateX(-50%); transform: translateY(100%) translateX(-50%); opacity: 0;}
    10% { -webkit-transform: translateY(100%) translateX(-50%); transform: translateY(100%) translateX(-50%); opacity: 0;}
    20% { -webkit-transform: translateY(-30px) translateX(-50%); transform: translateY(-30px) translateX(-50%); opacity: 1;}
    90% { -webkit-transform: translateY(-30px) translateX(-50%); transform: translateY(-30px) translateX(-50%); opacity: 1;}
    100% { -webkit-transform: translateY(-100px) translateX(-50%); transform: translateY(-100px) translateX(-50%); opacity: 0;}
}
@keyframes mymove {
    0% { -webkit-transform: translateY(100%) translateX(-50%); transform: translateY(100%) translateX(-50%); opacity: 0;}
    10% { -webkit-transform: translateY(100%) translateX(-50%); transform: translateY(100%) translateX(-50%); opacity: 0;}
    20% { -webkit-transform: translateY(-30px) translateX(-50%); transform: translateY(-30px) translateX(-50%); opacity: 1;}
    90% { -webkit-transform: translateY(-30px) translateX(-50%); transform: translateY(-30px) translateX(-50%); opacity: 1;}
    100% { -webkit-transform: translateY(-100px) translateX(-50%); transform: translateY(-100px) translateX(-50%); opacity: 0;}
}
@-webkit-keyframes spin { 100% { -webkit-transform: rotateZ(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotateZ(360deg); transform:rotateZ(360deg); } }












@media only screen and (max-width:991.9px)
{
    header img {
        max-width: 140px;
    }    
    .widget {
        padding: 25px;
    }
}