.mandatory{
    color:var(--color);
}
form.this-is-form{
	position: relative;
    display: flex;
    flex-direction: column;
	width: 100%;
	margin: 0 auto;
    padding: 25px 2%;
    background: #fff;
	border-radius: 3px;
	border:#aaaaaa solid 1px;
}
form.this-is-form fieldset{
	/*display:flex;
    flex-wrap: wrap;
    align-items: flex-start;*/
    display: block;
    float: left;
	width: 100%;
	border:none;
	margin: 0;
	padding:15px 0;
    border-top: #aaa dashed 1px;
}
form.this-is-form #menu_position{
    display: none;
}
form.this-is-form label > span:first-child/*,form.this-is-form fieldset legend:first-child*/{
    flex:0 0 25%;
    padding-right: 15px;
}
form.this-is-form fieldset legend{
	padding: 0;
}
form.this-is-form fieldset legend:first-child{
    width:25%;
    padding-right: 15px;
}
form.this-is-form .form_radio_container{
    display: flex;
    flex-wrap: wrap;
    width: calc(75% - 15px);
}
form label{
	display:flex;
    flex-wrap: wrap;
   /* align-items: center;*/
	padding:15px 0;
	cursor: pointer;
	line-height: 20px;
    color:#2D2A26;
}
form label span:first-child{
    line-height: 35px;
}
form label:not(:first-child){
	/*margin: 0 0 15px 0;*/
    border-top: #aaa dashed 1px;
}
.form_line{
    width: 100%;
    border-top: #aaa dashed 1px;
    overflow: hidden;
}
.form_line input[type=email],.form_line input[type=text],.form_line input[type=password],.form_line textarea,.form_line select{
    width: 74.9%;
}
form.this-is-form .form_line fieldset{
    border-top:none;
    margin: 0;
}
form.this-is-form fieldset legend{
	display:block;
	float:left;
	width:100%;
}
form.this-is-form fieldset label{
    float: left;
	width: auto;
    padding: 0;
	margin: 0 15px 0 0;
    border: none;
}
input[type=email],input[type=file],input[type=text],input[type=password],textarea,select{
	width:75%;
	min-height:35px;
	padding: 5px;
    font-size:0.8rem;
	border:#919191 solid 1px;
	border-radius: 5px;
	font-family: Verdana,Helvetica,sans-serif;
    transition-property:box-shadow,border-color;
}
input[type=file]{
    border: none;
}
input[type=email]:focus,input[type=text]:focus,input[type=password]:focus,textarea:focus,select:focus{
    /*box-shadow: 1px 1px 3px rgba(0,0,0,0.5);*/
    border-color:var(--color);
}
input[type=checkbox],input[type=radio],#direct_link_label{
	display: none;
}
input + span.input-btn{
	width: 20px;
	margin-right: 10px;
}
input + span.input-btn::before{
	float: left;
	display: inline-block;
	width: 20px;
	height: 20px;
	content: ' ';
	border:#919191 solid 1px;
	border-radius: 5px;
	background:#fff;
	transition-property:background;
}
input[disabled=disabled] + span.input-btn::before{
	background:#e3e3e3;
}
input + span.radio-btn::before{
	border-radius:50%;
}
.this-is-form ul.form_errors{
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
	color:#e2001a;
	list-style-type: none;
    text-align: right;
}
.this-is-form .no_style span{
    display: none;
}
.this-is-form .form_description{
    width: 100%;
    padding-bottom: 10px;
    text-align: center;
    font-style: italic;
    font-size: 0.8rem;
}
input.input-error{
    border-color:#e2001a;
}
input.input-error + span.input-btn::before{
	border:#e2001a solid 2px;
}
input:checked + span.input-btn::before{
	background:var(--color);
}
input[type=submit]{
	min-width: 25%;
	height: 35px;
    margin: 0 0 0 auto;
	padding: 5px 25px;
	border-radius: 3px;
	font-family: Arial,Helvetica,sans-serif;
	text-transform: uppercase;
	border:#000 solid 1px;
	background:#000;
	color:#fff;
	cursor: pointer;
	transition-property:background-color, border-color;
}
input[type=submit]:hover{
	border:var(--color) solid 1px;
	background:var(--color);
}