<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.text_input{
	width:100%;
	height:250px;
	font-size:12pt;
}
.label{
	font-size:12pt;
	margin-top:5px;
	margin-bottom:5px;
}
.input_block{
	display:inline-block;
	margin-top:10px;
	margin-bottom:10px;
}
.radio_block{
	display:inline-block;
	margin-right:10px;
	margin-top:10px;
	margin-bottom:10px;
	font: 14pt/1.4 Arial, sans-serif;
}

.input_field{
	margin:5px;
	float: initial;/*is required*/
	font: 12pt/1.4 Arial, sans-serif;
}
.add_input{
	position: relative;
	display:inline-block;
	top:4px;
    width: 24px;
    height: 24px;
}
.add_input:before{
		content: "";
	position: absolute;
	background-color: #36912d;
	transition: transform 0.25s ease-out;
	top: 0;
	left: 50%;
	width: 4px;
	height: 100%;
	margin-left: -2px;
}
.add_input:after{
	content: "";
	position: absolute;
	background-color: #36912d;
	transition: transform 0.25s ease-out;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	margin-top: -2px;
}
.add_input:hover{
	cursor: pointer;
}
.add_input:hover:before{ 
	background-color: #288922;
}
.add_input:hover:after{ 
	background-color: #288922;
}</pre></body></html>