@charset "utf-8";

/* MAIN Document */


/* Inkludiert in jeder Seite */

 *{
    -webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}

textarea:focus,
input:focus, 
select:focus {
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #EEE;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    border: none;
    color: #666;
}

a {
    color: inherit;
    text-decoration: none;
}

.footerNumber {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
}

::-webkit-input-placeholder {
    color: #777777;
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
    font-weight: 300;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #777777;
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
    font-weight: 300;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #777777;
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
    font-weight: 300;
}

:-ms-input-placeholder {
    color: #777777;
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
    font-weight: 300;
}

.preLoadingGif {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../pic/loading_icon.gif) center no-repeat #eee;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loadingText {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    margin-top: 40px; 
    color: black;
}


/* Design Textbox */

input {
    font-size: 14px;
    padding: 10px 5px 10px 5px;
    border-radius: 3px;
    border: 1px solid #DDD;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    min-height: 44px !important; 
    max-height: 44px !important; 
}

input:focus {
    -webkit-box-shadow: 0 0 7px #DDD;
    box-shadow: 0 0 7px #DDD;
}

input:disabled{
    background-color: #F1F1F1;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 17px;
    color:#666;
    min-height: 44px !important; 
    max-height: 44px !important; 
    padding: 10px 5px 10px 5px;
    padding-left: 60px;
    border-radius: 3px;
    border: 1px solid #DDD;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    background: url(../pic/icon/arrow_down.png) no-repeat;
    background-position: 97% 50%;
    background-size: 20px 20px;
    background-color: white;
}

select:active {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0 0 7px #DDD !important;
    box-shadow: 0 0 7px #DDD !important;
}

select:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0 0 7px #DDD !important;
    box-shadow: 0 0 7px #DDD !important;
}

select:disabled{
    background-color: #F1F1F1;
}

select:active::-ms-expand, select:focus::-ms-expand, select::-ms-expand{
    display:none;
}

.inputWrapper .frontPartInput {
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    border-radius: 3px 0 0 3px;
    background-color: #666666;
    color: white;
    border: 1px solid #555555;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s; /* Safari */
    transition: all 0.5s;
    min-height: 44px !important;
    max-height: 44px !important;
}

.inputWrapper {
    position: relative;
}


/* Design Button */

button {
    border: 1px solid;
    border-radius: 3px;
    padding: 10px 15px 10px 15px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0;
    min-height: 44px !important;
    max-height: 44px !important;
}

button.grauButton {
    background-color: #DDD;
    border-color: #BBB;
    color: #666;
}

button.grauButton:hover {
    background-color: #BBB;
    border-color: #999;
    color: #555;
}

button.dunkelgrauButton {
    background-color: #666666;
    border-color: #555555;
    color: #EEE;
}

button.dunkelgrauButton:hover {
    background-color: #555555;
    border-color: #444444;
    color: #EEE;
}

button.redButton {
    background-color: #e75644;
    border-color: #d34d3d;
    color: #e5b3ae;
}

button.redButton:hover {
    background-color: #d34d3d;
    border-color: #d34d3d;
    color: #e5b3ae;
}

/* TAG Design */

.tagDesign {
    display: inline-block;
    padding: 3px 10px 3px 10px;
    background-color: #ddd;
    border: solid 1px #BBB;
    border-radius: 11.5px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    margin-right: 5px;
    margin: 3px 5px 3px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.tagDesign:hover {
    background-color: #666666;
    border-color: #555555;
    color: #eee;
}

.tagDesign.blue{
    background-color: #4198EB;
    border-color: #3A89D4;
    color: white;
}
.tagDesign.blue:hover{
    background-color: #3A89D4;
}
.tagDesign.orange{
    background-color: #E58025;
    border-color: #BF6B1F;
    color: white;
}
.tagDesign.orange:hover{
    background-color: #BF6B1F;
}
.tagDesign.red{
    background-color: #E75644;
    border-color: #ba4637;
    color: white;
}
.tagDesign.red:hover{
    background-color: #ba4637;
}
.tagDesign.green{
    background-color: #78A100;
    border-color: #688c00;
    color: white;
}
.tagDesign.green:hover{
    background-color: #688c00;
}

/* NAVBAR */

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
    z-index: 99999;
}

.navbaranimate {
    top: -43px;
}

.navbar .topLine {
    width: 100%;
    height: 40px;
    background-color: #333333;
    border-bottom: solid 3px #777777;
}

.navbar .contentLine {
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 1); /* vorher: Opacity 0.9 */
}

.innerContentBar {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    height: inherit;
}

.logo {
    float: left;
    margin-top: 10px;
    margin-right: 40px;
    opacity: 1;
}

.opencloseCheck {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    font-weight: 300;
    color: green;
    position: absolute;
    right: 20px;
    top: 5px;
    font-size: 13px;
    z-index: 999;
    opacity: 0.8;
}

.opencloseCheck.closed {
    color: #B82207 !important;
}

.menu {
    float: right;
    margin-top: 40px;
}

ul {
    margin: 0;
}

.menu,
ul,
li {
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 15px;
    border: none;
    height: 60px;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.more::after {
    content: "  \f107";
    font-family: FontAwesome;
}

li {
    display: inline-block;
    position: relative;
    padding: 20px 20px 0px 20px;
    border-bottom: solid 2px transparent;
}

li:hover {
    border-bottom-color: #333333;
    background-color: rgba(239, 239, 239, 0.7);
}

.active_menu {
    border-bottom-color: #666666;
    background-color: rgba(246, 246, 246, 0.6);
}

.menuSecond li {
    font-weight: 300;
    display: block;
    padding: 10px 30px 10px 30px;
    height: auto;
    margin: 0;
    border: none;
    color: white;
    white-space: nowrap;
}

.menuSecond li:hover {
    background-color: rgba(34, 34, 34, 0.3);
}

.menuSecond {
    display: none;
    padding: 0;
    background-color: rgba(51, 51, 51, 0.65);
    position: absolute;
    height: auto;
    left: 0px;
    top: 60px;
    opacity: 1;
    padding-bottom: 10px;
    border-radius: 0 0 3px 3px;
    z-index: 102;
}

.navbar .topLine .innerContentBar .item {
    float: right;
    color: #888888;
    font-size: 13px;
    padding-right: 22px;
    margin-top: 13px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
}

.navbar .topLine .innerContentBar .item:hover {
    color: white;
}
.logoutButtonNav:hover{
    color:white !important;
    cursor: pointer !important;
}

.navbar .topLine .innerContentBar .item.welcomeSuc {
    padding-right: 0px !important;
}

.navbar .topLine .innerContentBar .item.welcomeSuc:hover {
    color: #888888;
    cursor: default;
}

.navbar .topLine .innerContentBar .itemLeft {
    float: left;
    color: #888888;
    font-size: 13px;
    margin-top: 13px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
}

.navbar .topLine .innerContentBar .itemLeft:hover {
    color: #8b9dc3;
}

.loginWindow,
.loginWindow li {
    margin: 0;
    padding: 0;
    height: auto;
    width: auto;
    color: blue;
    border: none;
    cursor: auto;
}

.loginWindow {
    cursor: default;
    position: absolute;
    top: 43px;
    right: 10px;
    width: 300px;
    height: auto;
    background-color: white;
    z-index: 1000;
    border-radius: 0 0 3px 3px;
    border: 1px solid #DDD;
    border-top: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-align: right;
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    opacity: 1;
}

.loginWindow li {
    display: block;
}

.loginWindow li:hover {
    background-color: white;
}

.triangleLogin {
    position: absolute;
    top: -11px;
    right: 30px;
}

.passwordInput,
.userInput {
    margin-top: 10px;
}

.passwordInput {
    margin-bottom: 10px;
    margin-top: 5px;
}

.passwordInput .frontPartInput,
.userInput .frontPartInput {
    width: 50px;
    text-align: center;
    font-size: 17px;
}

.passwordInput .inputContent,
.userInput .inputContent {
    padding-left: 60px;
    font-size: 17px;
}

.message {
    width: 100%;
    padding: 5px;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.message.error {
    border: 1px solid rgba(196, 41, 26, 0.2);
    color: rgba(196, 41, 26, 0.7);
    background-color: rgba(196, 41, 26, 0.2);    
}
.message.suc {
    border: 1px solid rgba(44, 143, 70, 0.2);
    color: rgba(44, 143, 70, 0.7);
    background-color: rgba(73, 199, 107, 0.2);
}

/* Fußzeile */

.footer {
    background-color: #393939;
}

.footer .contentLine .innerContentBar,
.footer .bottomLine .innerContentBar {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(90, 90, 90, 0.1);
    border: 1px solid rgba(100, 100, 100, 0.1);
    border-bottom: none;
    border-top: none;
    -webkit-box-sizing: border-box;
    width: 1020px;
    box-sizing: border-box;
}

.footer .contentLine .innerContentBar{
    padding-top: 35px;
    padding-bottom: 30px;
}

.footer .bottomLine {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    width: 100%;
    background-color: #333333;
    color: #5A5A5A;
    overflow: hidden;
}

.footer .bottomLine a:hover{
    color: #888888;
}

.footer .contentLine {
    width: 100%;
    height: 200px;
}

.rightRights {
    float: right;
}

.bottomInformation {
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    color: #5A5A5A;
    float: left;
}

.iconFooter {
    color: #505050;
}

.itemLeft.impressum {
    margin-left: 20px;
}

.itemLeft.impressum:hover {
    color: white !important;
}


/* Seiten CONTENT */

.siteContent {
    margin: 0 auto;
    width: 1020px;
    margin-top: 160px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.siteContent.whiteVar {
    background-color: #F5F5F5;
    border: 1px solid #DEDEDE;
    border-top: none;
    border-bottom: none;
    padding: 10px 20px 10px 20px;
    margin-top: 0;
    padding-top: 160px;
}

.headlineMain {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 50px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: #AAA !important;
}

.contentBlock {
    width: 100%;
    margin: 10px 0 10px 0;
    background-color: #F5F5F5;
    border: 1px solid #DEDEDE;
    border-radius: 3px;
    padding: 10px 20px 10px 20px;
    min-height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

.siteBottom {
    margin: 0 auto;
    width: 1020px;
    height: 50px;
    border-radius: 3px 3px 0 0;
    margin-top: 15px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #F5F5F5;
    border: 1px solid #DEDEDE;
    border-bottom: none;
    padding: 10px 20px 10px 20px;
}


/* Popup unter Navigationsleiste */

.NavPopup {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #e26353;
    color: #E7A8A1;
    text-align: center;
    opacity: 1;
    overflow: hidden;
}

.NavPopup .jsHelperPopupNav .iconAwesomefont {
    opacity: 0.6;
    font-size: 25px;
    position: relative;
    bottom: -3px;
    left: -2px;
}

.grauButton.small {
    margin-top: 0;
    padding: 5px 10px 5px 10px;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 10px;
}

.close_icon {
    opacity: 0.5;
    cursor: pointer;
}

.NavPopup .jsHelperPopupNav .close_icon {
    position: relative;
    top: 10px;
    left: 15px;
}


/* Trennlinie */
.sepLine{
    Width:100%;
    height: 1px;
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: #DDD;
}

.newmenuehype{
    position: absolute;
    right: -5px;
    top: 0px;
    font-size: 12px;
    text-align: center;
    height: 15px;
    width: 40px;
    transform: rotate(20deg);
    border: 1px solid #333;
    border-radius: 2px;
    background-color: #f1f1f1;
    z-index: 9999;
}