/* ###########################################
// ##  GENERAL CSS  ##########################
// ######################################## */

body{
    width:100%;
    max-width: 100%;
    margin:0 auto;
    overflow-x:hidden;
    font-family: 'Open Sans', 'helvetica', 'arial', sans-serif;
    color:#353535;
}

.layout-canvas-g > .section{
    margin:0 !important;
}

a, a:hover,
button, button:hover { transition:.15s ease-in; cursor:pointer;}

.grid{
    width:991px;
    max-width: 100%;
    margin:0 auto;
    padding:0 30px;
}

.main{
    width:100%;
    max-width: 100vw;
    overflow:hidden;
    padding-bottom:30px;
}

.section-container{
    padding-top:120px;
    padding-bottom:120px;
}

.title{
    font-weight:700;
}
.title-1{
    font-size:70px;
    line-height:60px;
}
.title-2{
    font-size:40px;
    line-height:51px;
}
.title-3{
    font-size:20px;
    line-height:26px;
}

p{
    font-weight: 400;
    font-size:16px;
    line-height:30px;
}

p.error-text{
    font-size:12px;
    margin-top:5px;
}

strong{
    font-weight: 700;
}

.advance-button{
    width:286px;
    max-width: calc(100% - 110px);
    height:40px;
    line-height:40px;
    background-color:#10b388;
    font-family: 'Open Sans', 'helvetica', 'arial', sans-serif;
    font-weight: 500;
    color:#FFFFFF;
    font-size:16px;
    border-radius:6px;
}
.advance-button:hover,
.advance-button:focus{
    background-color:#004a35;
}

.return-button{
    width:40px;
    height:40px;
    line-height: 40px;
    background-color:transparent;
    border:1px solid #10B288;
    border-radius:6px;
}

.return-button .text{
    font-size:0;
}

.return-button:hover,
.return-button:focus{
    background-color:#004a35;
}

.return-button:hover svg path,
.return-button:focus svg path{
    transition:.15s ease-in;
}

.return-button:hover svg path,
.return-button:focus svg path{
    fill: #FFFFFF;
}

.button span{
    pointer-events: none;
}

/* ###########################################
// ##  TEMPLATE CSS  #########################
// ######################################## */
.header{
    padding-top:7.3vw;
    margin-bottom: 44px;
}

.form{
    min-height: 358px;
    position:relative;
}
.form fieldset{
    width:100%;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:30px;
    position:absolute;
    top:0;
    left:0;
    padding-left:30px;
    transition:opacity .15s ease-in;
    opacity: 0;
    pointer-events: none;
    padding-bottom: 70px;
}
.form fieldset *{
    pointer-events: none;
}
.form fieldset.active{
    opacity: 1;
    position:static;
    padding-left:0;
    pointer-events: all;
}
.form fieldset.active *{
    pointer-events: all;
}

form fieldset .field{
    width:100%;
}

form fieldset .field.hidden{
    display:none;
}

form label,
form .field > span{
    width:100%;
    max-width:490px;
    display: block;
    margin-bottom: 30px;
    font-size: 22px;
    line-height:27px;
}
form label strong{
    pointer-events: none;
}

form input,
form select,
form textarea{
    height:26px;
    line-height:26px;
    border:none;
    border-bottom:1px solid #10B288;
    background-color:transparent;
    font-size:15px;
}

form .options,
form input,
form select,
form textarea{
    max-width:345px;
    width: 100%;
}

form input[type="radio"],
form input[type="checkbox"]{
    width:22px;
    height:22px;
    border:none;
    display: inline-block;
    vertical-align: middle;
}

form .options .option{
    background-color:#98C0B8;
    border:1px solid #10B288;
    border-radius:6px;
    cursor:pointer;
    font-size:0;
    padding:7px;
    margin-bottom: 9px;
    position:relative;
}

form .options .option-text{
    background-color: transparent;
    border:none;
}

form .options .option input{
    position:absolute;
    top:9px;
    left:7px;
}

form .options .option .text{
    font-size:15px;
    color:#004432;
    display: inline-block;
    vertical-align: middle;
    padding-left: 28px;
}

form .fieldset-actions{
    width:100%;
    position:absolute;
    bottom:0;
    left:30px;
    display: flex;
    gap:10px;
}

form .terms{
    margin-top:10px;
    position:relative;
}

form .terms input{
    border-radius:6px;
    position:absolute;
    top:0;
    left:0;
    border:1px solid #009168;
}

form .terms label{
    width: 307px;
    max-width: 100%;
    font-size:12px;
    color:#757575;
    padding-left:30px;
    line-height:15px;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .header{
        padding-top:60px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .header{
        padding-top:30px;
    }
}

@media (max-width: 767px) {
    .form fieldset{
        transition:0s;
    }
}

.output-main h1{
    width:100%;
    max-width: 450px;
    font-size:26px;
    line-height:36px;
    margin-bottom:10px;
}
.output-main p{
    color:#757575;
    margin-bottom:20px;
}

.success-main h1{
    width:100%;
    max-width: 350px;
    font-size:26px;
    line-height:36px;
    margin-bottom:10px;
}
.success-main p{
    width:100%;
    max-width: 350px;
    color:#757575;
    margin-bottom:20px;
}