@font-face{
    font-family: 'Roboto';
    src: url('../../thirdparty/font/Roboto-Light.ttf') format('truetype');
}
@font-face{
    font-family: 'Roboto';
    src: url('../../thirdparty/font/Roboto-Medium.ttf') format('truetype');
    font-weight: bold;
}
*{
    margin: 0;
    padding: 0;
}
main,
footer,
header,
article,
section{
    display: block;
}
html,body{
    width: 100%;
    min-height: 100%;
    background-color: #fefefe;
    font-family: 'Roboto';
    font-size: 14px;
}
img{
    display: block!important;
    margin: 0 auto;
    max-width: 100%;
    width: auto;
}
a{
    text-decoration: none;
    color:rgb(105,127,172);
}
ul {
  padding-left: 20px;
}
ul li::marker{
	color: rgba(40, 161, 68,1);
}
/*---Main----------------------------------------------------------------------*/
main {
    width: 100%;
    box-sizing: border-box;
}
/*---Footer--------------------------------------------------------------------*/
footer{
	background-color: rgba(40, 161, 68,1);
	padding: 30px 0;
}
footer .footer_inner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
        align-items:center;
}
footer .footer_inner .footer_entry{
	color: rgba(255,255,255,1);
}
footer .footer_inner .footer_entry.entry_3{
	display: flex;
}
footer .footer_inner .footer_entry a{
	margin: 0 5px;
	color:rgba(255,255,255,1);
}
/*---Verschiedenes-------------------------------------------------------------*/
input{
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid #2d2d2d;
    box-shadow: 0;
    color:#2d2d2d;
    padding: 4px 6px;
    box-sizing: border-box;
}
.message.error{
    border: 2px solid #E60000;
    background-color: #F06162;
    color: #ffffff;
    display: block;
    padding: 4px 6px;
    font-weight: bold;
}
.message.success{
    border: 2px solid  #27AF00;
    background-color: #27af00;
    color: #ffffff;
    display: block;
    padding: 4px 6px;
    font-weight: bold;
}
.page_404 h1{
    font-size: 1.2em;
    color: rgb(24,24,24);
    margin: 2em 0 20px 0;
    font-weight: lighter;
}
.page_404 p{
    font-size: 1em;
    color: #424242;
    line-height: 1.5em;
}
.button.gray{
    background-color: #a8a8a8;
    border: 0 none;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
}
.popup{
    position: fixed;
    top:0;
    left:0;
    background-color: #ffffff;
    box-shadow: 0 0 2px #666666;
    box-sizing: border-box;
    overflow-x:auto;
    z-index: 22;
    min-width: 200px;
}
.popup_underlay{
    position: fixed;
    top:0;
    left:0;
    z-index: 21;
    opacity: 0.8;
	background-color: rgba(238, 238, 238, 1);
    width: 100%;
    height: 100%;
}
.popup .popup_head{
    padding: 4px 10px;
    text-align: right;
}
.popup .popup_head .fa{

    cursor: pointer;
}
.popup .popup_content{
    padding: 10px;
}
@media screen and (max-width:1200px){
	footer{
		padding: 30px 0.4em;
		box-sizing: border-box;
	}
}
@media screen and (max-width:750px){
    footer .footer_inner > a{
        display: inline-block;
        vertical-align: top;
        margin: 0 auto 20px;
    }
	footer .footer_inner{
		flex-wrap: wrap;
	}
	footer .footer_inner .footer_entry{
		width:100%;
		margin-bottom: 30px;
		text-align: center;
	}
	footer .footer_inner .footer_entry.entry_3{
		justify-content: center;
	}
}