@charset "utf-8";
/* CSS Document */

body{
	background:#f1f9f9;
    /*background-image: url("/lib/img/wallpaper.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;*/
}

.btn-grey {
    background: #222;
}

.liliste {

}

.btn {
	margin: 3px;
}

.btnblink {
	-webkit-animation: glowing 1300ms infinite;
  -moz-animation: glowing 1300ms infinite;
	-o-animation: glowing 1300ms infinite;
  animation: glowing 1300ms infinite;
}
@-webkit-keyframes glowing {
		 0% { background-color: #0091b2; -webkit-box-shadow: 0 0 3px #0091b2; }
		 50% { background-color: #21c7ed; -webkit-box-shadow: 0 0 15px #21c7ed; }
		 100% { background-color: #0091b2; -webkit-box-shadow: 0 0 3px #0091b2; }
}
@keyframes glowing {
		 0% { background-color: #0091b2; box-shadow: 0 0 3px #0091b2; }
		 50% { background-color: #21c7ed; box-shadow: 0 0 15px #21c7ed; }
		 100% { background-color: #0091b2; box-shadow: 0 0 3px #0091b2; }
}







.blinkend {
    background-color: White;
    animation: blinkend 1.5s steps(2, start) infinite;
    }
    @keyframes blinkend {
    from {
    background-color: #008080;
    }
    to {
    background-color: #00FF00;
    }
}








.form-signin {
    max-width: 500px;
    padding: 19px 29px 29px;
    margin: 0 auto;
	/*margin-top:90px;*/
    background-color: #fff;

    border: 1px solid #e5e5e5;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
       -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
            box-shadow: 0 1px 2px rgba(0,0,0,.05);

	font-family:Tahoma, Geneva, sans-serif;
	color: #990000;
	font-weight: lighter;
}
@media screen and (max-width:760px){
    .form-signin {
        text-align: center;
    }
}

.form-signin .form-signin-heading{
    color:#00A2D1;
}
.form-signin input[type="text"],
.form-signin input[type="password"],
.form-signin input[type="tel"],
.form-signin input[type="file"],
.form-signin input[type="email"] {
    font-size: 16px;
    height: 45px;
    padding: 7px 9px;
}

.signin-form, .body-container
{
	margin-top:60px;
}
.navbar-brand{
	font-family:"Lucida Handwriting";
}
#btn-submit{
	height:45px;
}
input[type="search"] {
    font-size: 16px;
    height: 45px;
    padding: 7px 9px;
    border: 1px solid #CCC;
    width:100%;
    display:inline-block;
}








.form-insert {
    max-width: 600px;
    padding: 19px 29px 29px;
    margin: 0 auto;
    background-color: #fff;

    border: 1px solid #e5e5e5;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
       -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
            box-shadow: 0 1px 2px rgba(0,0,0,.05);

    font-family:Tahoma, Geneva, sans-serif;
    color:#990000;
    font-weight:lighter;
}
.form-insert #zeitpunkt {
    width: 100%;
}
.form-insert input[type="text"],
.form-insert input[type="number"],
.form-insert input[type="tel"],
.form-insert input[type="email"],
.form-insert input[type="file"],
.form-insert select,
.form-insert select option,
select,
select option {
    font-size: 16px;
    height: 45px;
    padding: 7px 9px;
    width: 350px
}







.toggle label {
  position: relative;
  display: inline-block;
  width: 10em;
  height: 3.5em;
}

.toggle input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
 
.toggle .slider { /* Grundfläche */
  position: absolute;
  cursor: pointer;
  top: 1.5em; 
  left: 3em;
  width: 4em;
  height: 2em;
  background-color: #c32e04; 
  border-radius: 1em; 
  transition: all .3s ease-in-out;
}
 
.toggle  .slider::before {  /* verschiebbarer Button */
  position: absolute;
  content: "";
  height: 1.6em;
  width: 1.6em;
  left: .2em;
  bottom: .2em;
  background-color: white;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}






/* RADIO */
/*input[type="radio"] {
    -moz-appearance: None;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #8cad2d;
    background-color: #fff;
   }
   
   input[type="radio"]:checked {
    background: #8cad2d;
   }
*/
input[type="radio"] {
    display:none;
  }
  input[type="radio"] + label::before {
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    background-color: #fff;
    display: inline-block;
    content: "";
    float: left;
    margin-right: 5px;
  }
  input[type="radio"]:checked+label::before {
    box-shadow: inset 0px 0px 0px 3px #fff;
    background-color: #8cad2d;
  }
  label.radio {
      font-size: 100%;
  }
  

/*.form-insert input[type="checkbox"]{
    display: inline-block;
    font-size: 26px;
    padding: 19px;
    width: 20px;
    height: 20px;
}
input[type='checkbox'], input[type='radio']{
    margin: 0;
    padding:0;
    display: inline-block;
    width: auto;
    background: none;
    border: 1px solid #eee;
}*/

/* checkbox start */
input[type="checkbox"] {
  display:none;
}
input[type="checkbox"] + label::before {
  width: 25px;
  height: 25px;
  border: 2px solid #8cad2d;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
}
input[type="checkbox"]:checked+label::before {
  box-shadow: inset 0px 0px 0px 3px #fff;
  background-color: #8cad2d;
}
label.checkbox {
    font-size: 100%;
}


/* checkbox ende */


@media screen and (max-width:760px){
    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    select,
    option {
        width: 95%;
    }
}
/*
table {
	font-size: 11px;
}
td {
	padding:3px;
}*/
/*
.row_0 {background-color: none;
 }
 .row_1 {background-color: yellow;
 }
*/
/*
table {width: 100%; border: 1px solid #000;}
th, tr, td {border: 1px solid #000;}*/
.tbl-datum {width: 100px; text-align: center;}
.tbl-zeitpunkt {width:80px; text-align: center;}
.tbl-bemerkung {min-width: 300px;}

.table-scrollable {
  width: 100%;
  overflow-y: auto;
  margin: 0 0 1em;
}

.table-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-scrollable::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, .3);
}


table {
    width:100%;
}

table, td, tr, th {
    border:2px solid black;
    border-collapse: collapse;
    text-align: left;
}

td, tr, th {
    padding:0.1em;
}

th {
    background:#eee;
    font-weight: bold;
}

@media screen and (max-width:760px){

    /*table {overflow-x:auto;}*/
    /*table {width: 100%;}
    th {display: block; width: 100%;}
    td {display: block; width: 100%;}
    tr.tbl-abschnitt {border-top:3px solid #000; border-left:3px solid #000; border-right:3px solid #000;}
    .tbl-head {display: none;}
    .headdate {background:#000;color:#fff;}*/
}










/* ################################################### */
/* FORUM2 */
/* ################################################### */
div.forumtable {
    display: table;
    border-collapse:collapse;
    width: 100%;
}
.forumtable-row {
    display: table-row;
    border: 1px solid silver;
}
.forumtable-cell {
    display: table-cell;
    border: 1px solid silver;
    padding: 5px;
}
.forumthead {
    background:#000000;
    color: #FFFFFF;
}
.kopfhead {
    background:#000000;
    color: #FFFFFF;
}




@media only screen and (max-width: 768px) {
    .forumtable {border:none;}
    .forumtable-row,
    .forumtable-cell {
        display: block;
        border: 1px solid silver;
    }
    .forumtable-row { margin-bottom: 20px; }
    .forumstandort {
        padding-left: 30px;
    }
    .forumthead {
        display: none;
    }
}








/* ################################################### */
/* seitenweisemenu */
/* ################################################### */
.blaeterlink-0, .blaeterlink-1{
    display: inline-block;
    border: 1px solid #555;
    background: #555;
    padding: 1px 5px;
    color:#FFF;
}
.blaeterlink-1{
    border: 1px solid #A00;
    background: #A00;
    color: #FFF;
}










/* ################################################### */
/* HINWEISBOXEN */
/* ################################################### */
.kundenhinweisfeld {
    padding:1px 5px 1px 1px;
    margin-right:10px;
}
.box-yellow {
    background:yellow;
    color:#000;
}
.box-green {
    background:green;
    color:#FFF;
}
.box-grey {
    background:#ccc;
    color:#000;
    padding: 5px;
}
.box-red {
    background:#FFB2B2;
    color:#FFF;
}
.box-darkred {
    background:#AA0000;
    color:#FFF;
}
.box-blue {
    background:#5882FA;
    color:#FFF;
}
.box-error {
    display: block;
    width: 100%;
    margin: 10px auto;
    padding: 5px 10px;
    background: #FFB2B2;
    border: 2px solid #CC3333;
}






/* ################################################### */
/* SCHRIFT FARBEN */
/* ################################################### */
.font-color-red {
    color: red;
    font-weight: bolder;
}
.font-color-green {
    color: green;
    font-weight: bolder;
}
.font-color-black {
    color: #000;
}



/* ################################################### */
/* LOADING OVERLAY */
/* ################################################### */
div#load_screen{
    background: rgba(0,0,0,0.8);
    position: fixed;
    z-index:100000;
    top: 0px;
    width: 100%;
    height: 100%;
}
div#load_screen > div#loading{
    width: 300px;
    height:auto;
    margin: 300px auto;
    text-align:center;
    display: block;
    vertical-align: middle;
    padding: 50px 0;
    border-radius: 20px;
}





@keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-moz-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-webkit-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-o-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }
        .loading {
            height: 100px;
            position: relative;
            width: 100px;
            border-radius: 100%;
            margin: auto;
        }


        .loading {
            border: 2px solid transparent;
            border-color: transparent #fff transparent #FFF;
            -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
            -moz-transform-origin: 50% 50%;
            -o-animation: rotate-loading 1.5s linear 0s infinite normal;
            -o-transform-origin: 50% 50%;
            -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
            -webkit-transform-origin: 50% 50%;
            animation: rotate-loading 1.5s linear 0s infinite normal;
            transform-origin: 50% 50%;
        }
        .loading {
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
        }

        #loading-text {
            -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
            -o-animation: loading-text-opacity 2s linear 0s infinite normal;
            -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
            animation: loading-text-opacity 2s linear 0s infinite normal;
            color: #ffffff;
            font-family: "Helvetica Neue, "Helvetica", ""arial";
            font-size: 10px;
            font-weight: bold;
            position: relative;
            opacity: 0;
            text-align: center;
            text-transform: uppercase;
            width: 100px;
            margin: auto;
            margin-top: -60px;
        }



/* ################################################### */
/* popup */
/* ################################################### */
#test-popup {
    overflow: auto;
}
#test-popup img {
    display: inline-block;
}
.test-popup {
      position: relative;
      background: #F5F5DC;
      padding: 20px;
      width: auto;
      max-width: 900px;
      margin: 20px auto;
      color: #000000;
      overflow: auto;
      height: 500px;
      /*text-align: center;*/
}
.test-popup textarea {
    color: #000;
}




/* ################################################### */
/* WORKING POPUP */
/* ################################################### */
.work_screen{
    background: rgba(0,0,0,0.8);
    position: fixed;
    z-index:100000;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
}
.work_screen > div.work_area{
    width: auto;
    max-width: 900px;
    margin: 10px auto;
    display: block;
    vertical-align: middle;
    padding: 20px 20px;
    background: #F5F5DC;
    color: #000;
    border: 3px solid #F7D358;
}
.work_screen > div.work_area .workscroll{
    overflow: auto;
    height: 400px;
}
@media screen and (min-height:400px){
	.work_screen > div.work_area .workscroll{
	    overflow: auto;
	    height: 500px;
	}
}



.work_screen > div.up_area{
    width: auto;
    max-width: 1600px;
    margin: 10px auto;
    display: block;
    vertical-align: middle;
    padding: 20px 20px;
    background: #0080FF;
    color: #FFF;
    border: 3px solid #000000;
    height: 96%;
}
.work_screen > div.up_area > div.text_area {
    width: auto;
    max-width: 900px;
    margin: 10px auto;
    display: block;
    vertical-align: middle;
}

.work_screen > div.work_kasse{
    width: auto;
    max-width: 900px;
    margin: 300px auto;
    display: block;
    vertical-align: middle;
    padding: 20px 20px;
    background: #F7D358;
    color: #000;
    border: 3px solid #F7D358;
}





/* ################################################### */
/* img loading */
/* ################################################### */
#imgloading{
    display:none;
    background: yellow;
    /*position:absolute;
    top:50px;*/
    /*left:850px;*/
    font-size:25px;
    width: 100%;
}
@media only screen and (max-width: 768px) {
    #imgloading{
        display:none;
        background: yellow;
        /*position:absolute;
        top:50px;
        left:850px;*/
        font-size:20px;
    }
}









/* ################################################### */
/* formular */
/* ################################################### */
fieldset, fieldset legend {
    margin: 0px;
    margin-top: 20px;
}
label {
    display: inline-block;
    min-width: 100px;
}
form label {
    display: block;
    width: 100%;
    font-size: 70%;
    margin: 10px 10px 0 0;
    font-weight: normal;
}

.test-popup button {
    display: block;
    float: right;
}
.test-popup input,
.test-popup select,
.test-popup select option,
.work_screen .work_area input,
.work_screen .work_area select,
.work_screen .work_area select option  {
    width: 350px;
}

@media only screen and (max-width: 768px) {
    .test-popup input,
    .test-popup select,
    .test-popup select option,
    .work_screen .work_area input,
    .work_screen .work_area select,
    .work_screen .work_area select option  {
        /*width: 350px;*/
        max-width: 200px;
        padding: 2px 2px;
    }
}












/* ################################################### */
/* Zeilen bei hover */
/* ################################################### */
.klickmich {
    cursor: pointer;
}
.klickmich:hover {
    background: #F5F5DC;
}












/* ################################################### */
/* Forum */
/* ################################################### */
/*
.forumtable {
	display: table;
	border: 1px solid silver;
	border-collapse:collapse;
	width: 100%;
}
.forumtable-row {
	display: table-row;
	border: 1px solid silver;
}
.forumtable-cell {
	display: table-cell;
	border: 1px solid silver;
	padding: 15px;
}
.forumtable-row:hover,
.forumtable-cell:hover {
	background: #222;
	cursor: pointer;
}
.forumthead {
	background:#333;
}
.forumorgakat {
	background: #8A0808;
	color:#FFF;
}
.forumfwight{
	width: 75%;
}
.forumnavigation {
	display:block;
	width: 100%;
	background: none;
	font-weight: bolder;
	margin: 10px 0;
}
.forumbeitragneu{
	border-left: 8px solid #5FB404;
}
.forumbeitragalt{
	border-left: 1px solid silver;
}
.forumsig{
	border-top:1px dotted #eee;
	padding:0px;
	margin:40px 0 0 0;
	opacity: 0.2;
	font-weight: 700;
	width:auto;
}
.forumthema{
	text-transform:uppercase;
}
.forumthemabeschreibung{
	color:#999;
	text-shadow: 1px 1px 1px #000000;
}
.forumthemabeschreibungorgakat{
	color:#ccc;
	text-shadow: 1px 1px 1px #000000;
}
.forumgesperrt {
	color: #555;
}
.forumclosed {
	background: #A20000;
	color: #FFF;
	font-weight: bolder;
	padding: 3px 10px;
	margin-right: 10px;
}
.forumautordata {
	display: inline-block;
	float: left;
}



@media only screen and (max-width: 768px) {
	.forumtable {border:none;}
	.forumtable-row,
	.forumtable-cell {
		display: block;
		border: 1px solid silver;
	}
	.forumtable-row { margin-bottom: 20px; }
	.forumfwight{width: inherit;}
	.forumbeitragneu{border-top: 8px solid #5FB404;}
	.forumbeitragalt{border-top: 1px solid silver;}
	.forumautordata {display: none;}
}
*/