/*
special settings for onesuite.oneword.de
*/

/****************************************/
/* some general definitions             */
/****************************************/
@font-face {
	font-family: "KievitOT-Light";
	src: url("fonts/KievitOT-Light.otf");
	font-weight: normal;
	font-style: normal
}
@font-face {
	font-family: "KievitOT-Medium";
	src: url("fonts/KievitOT-Medium.otf");
	font-weight: normal;
	font-style: normal
}
@font-face {
	font-family: "KievitOT-ThinItalic";
	src: url("fonts/KievitOT-ThinItalic.otf");
	font-weight: normal;
	font-style: normal
}


@font-face {
	font-family: "KievitComp";
	src: url("fonts/KievitComp.eot");
	src: url("fonts/KievitComp.eot?#iefix") format("embedded-opentype"), url("fonts/KievitComp.svg#KievitComp") format("svg"), url("fonts/KievitComp.woff") format("woff"), url("fonts/KievitComp.ttf") format("truetype");
	font-weight: normal;
	font-style: normal
}

@font-face {
	font-family: "KievitComp-Bold";
	src: url("fonts/KievitComp-Bold.eot");
	src: url("fonts/KievitComp-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/KievitComp-Bold.svg#KievitComp-Bold") format("svg"), url("fonts/KievitComp-Bold.woff") format("woff"), url("fonts/KievitComp-Bold.ttf") format("truetype");
	font-weight: normal;
	font-style: normal
}

:root {
	--color_blue: #008fa7;
	--color_orange: #f99d1c;
	--color_grey: #7a7675;
	--color_grey_light: #9f9c9c;
	--color_grey_lighter: #dfdfdf;

	--fontsize_big: 27px;
	--fontsize_default: 20px;
	--fontsize_small: 17px;

	--size_unit_default: 40px;
	--size_unit_half: 20px;
	--size_unit_small: 10px;
}

/****************************************/
/* some general settings                */
/****************************************/

* {
	box-sizing: border-box;
}

body {
	font-family: "KievitOT-Light", "KievitComp", "Source sans pro", Arial !important;
	width: 100%;
	color: var(--color_grey);
	font-size: var(--fontsize_default);
}

a {
	color: var(--color_grey);
}

a:hover {
	color: var(--color_orange);
}


.max-width {
	max-width: 1400px;
	margin: 0px auto 0px auto;
	padding: 0 var(--size_unit_small);
	position: relative;
	overflow: hidden;
}


/****************************************/
/* hide the following elements          */
/****************************************/

#header h1 span,
body header .title h2,
body.login .intro_passwdreset,
body.passwdreset .intro_login,
body.login .not_login,
body.passwdreset .not_passwdreset
{
	display: none;
}


/****************************************/
/* some general settings                */
/****************************************/

#content .errors {list-style-type: none; padding-left: 0;}

.font_strong {font-family: "KievitOT-Medium", "KievitOT-Light", "KievitComp", "Source sans pro", Arial !important; color: var(--color_grey_light);}
.font_italic {font-family: "KievitOT-ThinItalic", "KievitOT-Light", "KievitComp", "Source sans pro", Arial !important;}

.text_big {font-size: var(--fontsize_big);}
.text_small {font-size: var(--fontsize_small);}

h2 {font-size: var(--fontsize_big); font-weight: 400; line-height: 1.2;}

/****************************************/
/* formating special elements           */
/****************************************/

#header {
	height: auto;
	margin-bottom: 50px;
	border-bottom: 1px solid var(--color_grey);
}

#header h1 {
	margin-top: var(--size_unit_default);
	margin-bottom: var(--size_unit_half);
	height: 65px;
	background-image: url(/client-specific/bilder/logo_onesuite.jpg);
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
}

#headerslogan {
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: var(--fontsize_default);
	color: var(--color_grey_lighter);
	text-align: right;
	max-width: 500px;
}

#headerslogan a {text-decoration: none;}
#headerslogan img {width: 280px;}


#footer {
	border-top: 1px solid var(--color_grey);
	margin: var(--size_unit_default) 0 0 0;
	padding: var(--size_unit_small) 0px 100px 0px;
	text-align: center;
	font-size: var(--fontsize_default);
}

#footer, #footer a {
	text-decoration: none;
}

.footer-copyright {
	position: absolute;
	top: 14px;
	right: 2px;
}

.footer-links a {
	padding: 0 var(--size_unit_small);
	color: var(--color_grey_light);
}

/****************************************/
/* form settings                        */
/****************************************/

label {
	font-size: var(--fontsize_default);
	font-family: "KievitOT-Medium", "KievitOT-Light", "KievitComp", "Source sans pro", Arial !important;
}

button, input[type="submit"] {
	height: var(--size_unit_default);
	margin-bottom: var(--size_unit_half);
	padding: 0 var(--size_unit_default);

	text-transform: uppercase;
	cursor: pointer;
	font-size: var(--fontsize_default);
	line-height: var(--fontsize_big);

	background-color: var(--color_blue);
	border: none;
	color: #fff;
}
button:hover, input[type="submit"]:hover {
	background-color: var(--color_orange);
}

input[type="text"], input[type="password"] {
    width: 100%;
    max-width: 400px;
    height: var(--size_unit_default);
    margin-top: var(--size_unit_small);
    padding: 0 var(--size_unit_small);

    font-size: var(--fontsize_default);
    line-height: var(--fontsize_big);

    background-color: #fff;
    border: 1px solid var(--color_grey);
    color: var(--color_grey);
}


