/* FONTS */
/*
@font-face {
font-family: "OpenSansItalic";
src: url('webfiles/fonts/OpenSans-VariableFont_wdth,wght.ttf') format("truetype");
}
*/

*
{
	font-family: din-next-w01-light, sans-serif;
}
/*
	font-family: "OpenSansItalic";
*/

.wordwrap
{
	white-space: pre-line !IMPORTANT;      /* CSS 3.0 */
	white-space: -pre-wrap !IMPORTANT;     /* Opera 4-6 */
	white-space: -o-pre-wrap !IMPORTANT;   /* Opera 7 */
	white-space: -moz-pre-wrap !IMPORTANT; /* Mozilla */
	white-space: -hp-pre-wrap !IMPORTANT;  /* HP Printers */
	word-wrap: break-word !IMPORTANT;      /* IE 5+ */
}

a, a:hover
{
	text-decoration: none;
}

.inputbox input::placeholder, .inputbox textarea::placeholder
{
	color: grey;
	font-weight: normal;
}

.inputboxani 
{
	animation: inputboxani 1.5s infinite !IMPORTANT;
}

@keyframes inputboxani
{
	0%
	{
		background-color: gold;
	}
	50%
	{
		background-color: rgb(255,64,0);
	}
	100%
	{
		background-color: gold;
	}
}