@charset "UTF-8";
/*

@import url('https://fonts.googleapis.com/css?family=Tangerine');

@import url(https://weloveiconfonts.com/api/?family=entypo|fontawesome|typicons);

*/
/* entypo */
[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}

/* fontawesome */
[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* typicons */
[class*="typicons-"]:before {
  font-family: 'Typicons', sans-serif;
}

*{
    font-family:Verdana;
    font-size:14px;
    text-decoration:none;
    color:#000;
    margin:0px;
    padding:0px;
}
html,body{
    min-height:100%;
}
html,body{
    background: rgb(245,246,246);
    background: -moz-linear-gradient(top, rgba(245,246,246,1) 0%, rgba(219,220,226,1) 21%, rgba(184,186,198,1) 49%, rgba(221,223,227,1) 80%, rgba(245,246,246,1) 100%);
    background: -webkit-linear-gradient(top, rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(184,186,198,1) 49%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%);
    background: linear-gradient(to bottom, rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(184,186,198,1) 49%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6f6', endColorstr='#f5f6f6',GradientType=0 );
}
header{
    position:fixed;
    top:0px;
    left:0px;
    z-index:100;
    width:100%;
    height:180px;
    background:#000;
    background-image:url(../image/bg-header.jpg);
    background-size:cover;
    background-position:center center;
    transition:all 1s;
}
header.hide{
    height:0px;
}
body > menu{
    position:fixed;
    top:180px;
    left:0px;
    z-index:100;
    width:100%;
    height:40px;
    line-height:40px;
    background: rgb(32,32,32);
    box-shadow:0px 0px 10px #000;
    border-top:1px solid rgb(138,0,0);
    border-bottom:2px solid rgb(138,0,0);
    transition:all 1s;
}
body > menu.headerhide{
    top:0px;
}
body > main{
    min-height:100vH;
    margin:auto;
    width:90%;
    box-shadow:0px 0px 20px #000;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}
body > main > h1:first-of-type{
    display:block;
    height:240px;
    transition:all 1s;
}
body > main > h1.headerhide:first-of-type{
    display:block;
    height:50px;
}
body > menu > ul{
    list-style-type:none;
    height:40px;
    width:85%;
    margin:auto;
    text-align:center;
}
body > menu > ul > li{
    line-height:40px;
    padding: 0px 15px;
    float:right;
    color:#fff;
}
body > menu > ul > li > a{
    color:inherit;
}
a{
    cursor:pointer;
}
#alpha{
    position:fixed;
    top:0px;
    left:0px;
    z-index:1000;
    width:100vW;
    height:100vH;
    background: rgba(0,0,0,0.8);
    display:none;
}
#myalert{
    position:fixed;
    top:50%;
    left:50%;
    border-radius:5px;
    padding:15px;
    width:500px;
    height:340px;
    margin-top:-170px;
    margin-left:-250px;
    background: rgba(255,255,255,0.9);
    border:1px solid #969696;
    z-index:1001;
    display:none;
}
#myalert p{
    font-style:italic;
    color: gray;
}
#myalert span{
    display:block;
    height:250px;
    overflow:auto;
}
#tooltip{
    position:fixed;
    border-radius:5px;
    padding:15px;
    background: rgba(255,255,255,0.9);
    border:1px solid #969696;
    z-index:1001;
    display:none;
    box-shadow:4px 4px 10px #000;
}
.close{
    position:absolute;
    right:-15px;
    top:-15px;
    display:block;
    width:30px;
    height:30px;
    line-height:30px;
    background-color:#DE7171;
    border-radius:15px;
    text-align: center;
    font-weight: bold;
    color:#fff;
}
/* -------------------------------------- form [+] ----------------------------------------- */
body > main > form{
    background: rgba(255,255,255,0.9);
    border-radius:15px;
    padding:15px 50px;
    margin:auto;
}
body > main > form label{
    display:inline-block;
    width:150px;
    line-height:35px;
    vertical-align:top;
}
form input,form textarea,form select,form option{
    border-radius:5px;
    padding:5px;
    width:300px;
    background: rgba(255,255,255,0.9);
    border:1px solid #969696;
}
form textarea{
    margin-top:4px;
}
form input.bt{
    width:300px;
    margin-top:8px;
    background: rgb(226,226,226);
    background: -moz-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 50%, rgba(209,209,209,1) 51%, rgba(254,254,254,1) 100%);
    background: -webkit-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(219,219,219,1) 50%,rgba(209,209,209,1) 51%,rgba(254,254,254,1) 100%);
    background: linear-gradient(to bottom, rgba(226,226,226,1) 0%,rgba(219,219,219,1) 50%,rgba(209,209,209,1) 51%,rgba(254,254,254,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe',GradientType=0 );
}
#loginform{
    width:500px;
}
#terminform,#costumerform{
    position:fixed;
    top:50%;
    left:50%;
    border-radius:5px;
    padding:15px;
    width:500px;
    height:340px;
    margin-top:-170px;
    margin-left:-250px;
    background: rgba(255,255,255,0.9);
    border:1px solid #969696;
    z-index:1001;
    display:none;
    
}
#costumerform{
    z-index:1002;
    width:500px;
    height:560px;
    margin-top:-280px;
    margin-left:-250px;
}
#terminform label{
    width:100px;
}
#terminform textarea,#terminform input{
    width:365px;
}
#terminform input[name=beginn],#terminform input[name=ende]{
    width:342px;
}
#terminform input[type=radio]{
    width:auto;
    margin-top:10px;
}
#terminform input[name=color]{
    /*display:none;*/
}
.colorsel{
    width:40px !important;
    height:20px;
    margin-right:5px;
    margin-bottom:5px;
    vertical-align: bottom;
    opacity:0.5;
}
.colorsel:hover,.colorsel.aktiv{
    opacity:1;
    
}
#terminform input.bt,#costumerform input.bt,button{
    width:auto;
    padding:4px 10px;
    border-radius:5px;
    border:1px solid gray;
}
#frzdaten{
    min-height:50px;
}
#terminform .entypo-plus-circled{
    font-size:1.5rem;
    float:right;
}
/* -------------------------------------- form [-] ----------------------------------------- */