h2 {
	font-weight: 600;
	font-size: 19px;
}
/* Form */
@font-face {
    font-family: Roboto-Medium;
    src: url(/images/fonts/Roboto-Medium_0.ttf);
}
@font-face {
    font-family: Roboto-Light;
    src: url(/images/fonts/Roboto-Light_0.ttf);
}
@font-face {
    font-family: Roboto-Regular;
    src: url(/images/fonts/Roboto-Regular.ttf);
}
.containerFlex{
    display: flex;
    flex-direction: column;
}
.rowFlex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.rowFlex div.mess{
    width: 100%;
    text-align: center !important;
    color: #FFFFFF !important;
    max-width: 100% !important;
    margin-bottom: 0px !important;
}
.colFlex{
    display: flex;
    flex-direction: column;
    flex: auto;
    padding: 0 10px;
    max-width: 100%;
    box-sizing: border-box;
}
._form{
    position: relative;
    max-width: 100%;
    padding: 50px 0;
    background-image: url("/images/back.png");
    background-size: cover;
    background-position: center;
    margin-top: 50px;
}


._form_header span:nth-child(1){
    font-family: Roboto-Medium;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1em;
}
._form_header span:nth-child(2){
    font-family: Roboto-Light;
    font-size: 22px;
    text-align: center;
    color: #ffffff;
}
._form_body{
    margin-top: 35px;
}
._form_input{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
._form_input label{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 20px 2.5%;
    max-width: 290px;
    width: 100%;
    border-radius: 3px;
}
._form_input label:nth-child(1){
    margin-right: 35px;
}
._form_input label.error{
    border: 1px solid red;
}
@media (max-width: 1450px) {
    ._form_input label{
        max-width: 500px;
    }
    ._form_input label:nth-child(1){
        margin: 0px;
        margin-bottom: 10px;
   }
}
@media (max-width: 1280px) {
    ._form_input label{
        max-width: 290px;
	margin-bottom: 0px !important;
	margin-right: 35px !important;
    }

}
@media (max-width: 1110px) {
    ._form_input label{
	max-width: 350px;
        margin: 0px !important;
   }
    ._form_input label:nth-child(1){
         margin-bottom: 10px !important;
   }
}
@media (max-width: 1024px) {
    ._form_input label{
	max-width: 290px;
	margin-right: 35px !important;
   }
    ._form_input label:nth-child(1){
         margin-bottom: 0px !important;
   }
}
@media (max-width: 830px) {
    ._form_input label{
        max-width: 250px;
	margin-bottom: 0px !important;
	margin-right: 35px !important;
    }
}
@media (max-width: 750px) {
    ._form_input label{
	max-width: 295px;
        margin: 0 !important;
    }
    ._form_input label:nth-child(1){
        margin: 0 !important;
        margin-bottom: 10px !important;
   }
}
._form_input input{
    font-family: Roboto-Light;
    font-size: 17px;
    border: none;
    background: none;
    outline: none;
    width: 90% !important;
    display: flex;
}
._form_input img{
    max-width: 17px;
    max-height: 20px;
 }
._form_button{
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}
._form_button button{
    font-family: Roboto-Regular;
    font-size: 17px;
    text-transform: uppercase;
    margin-top: 25px;
    padding: 20px 9%;
    box-sizing: padding-box;
    max-width: 290px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #acce11;
    color: #ffffff;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

/*Checkbox*/
._form_checkbox{
    flex-direction: row;
    justify-content: center;
}
.__checkbox{
    max-width: 400px;
}
._form_checkbox label{
    font-family: Roboto-Light;
    font-size: 13px;
    color: #ced5d9;
}
._form_checkbox label a{
    color: #ced5d9;
}
.__checkbox input[type="checkbox"]:checked,
.__checkbox input[type="checkbox"]:not(:checked){
    position: absolute;
    left: -9999px;
}
.__checkbox input[type="checkbox"]:checked + label,
.__checkbox input[type="checkbox"]:not(:checked) + label{
    display: inline-block;
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    cursor: pointer;
}
.__checkbox input[type="checkbox"]:checked + label:before,
.__checkbox input[type="checkbox"]:not(:checked) + label:before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    border-radius: 2px;
}
.__checkbox input[type="checkbox"]:checked + label:after,
.__checkbox input[type="checkbox"]:not(:checked) + label:after{
    content: "";
    position: absolute;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    left: 4px;
    top: 10px;
    width: 10px;
    height: 5px;
    border-radius: 1px;
    border-left: 4px solid #ACCE11;
    border-bottom: 4px solid #ACCE11;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.__checkbox input[type="checkbox"]:not(:checked) + label:after{
    opacity: 0;
}
.__checkbox input[type="checkbox"]:checked + label:after{
    opacity: 1;
}
._checkbox2{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    color: #343434;
    font-size: 13px;
    font-family: Roboto-Light;
}
._checkbox2 a{
    color: #343434;
    font-size: 13px;
    font-family: Roboto-Light;
}
