/*

ACHTUNG!! Hier keine Font Family einbinden! Dies passiert in der css view/font/font.cs

*/

main,
footer,
header,
article,
section
{
    display: block;
}
*{
    margin: 0;
    padding: 0;
}
header,footer{
    z-index:800;
}
html,body{
    width: 100%;
    min-height: 100%;
    background-color: #fefefe;
    font-size: 14px;
}
img {
    border: 0;
    max-width: 100%;
}
a {
    text-decoration: none;
    color:rgb(105,127,172);
}
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: 831;
    min-width: 200px;
}
.popup_underlay {
    position: fixed;
    top:0;
    left:0;
    z-index: 830;
    opacity: 0.8;
    /*background-image: url(../../files/images/content/roter-hintergrund.jpg);*/
	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;
}