/*Scrollleiste ausblenden, aber trotzdem nutzbar lassen*/
.noScroll {
    -ms-overflow-style: none;  
    overflow: -moz-scrollbars-none;  
}

.noScroll::-webkit-scrollbar { 
    display: none;  
}

/*Selektion von Text unterdrücken*/
::selection {
    background: transparent;
    color: inherit;
}
::-moz-selection {
    background: transparent;
    color: inherit;
}
* {
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}


/* Anpassung damit Input Eigabefelder in iOS möglich sind*/
/* Braucht eine ausnahme, da auf der Siete nichts selektiert werden kann und dieses wird
von iOS auch auf Inputfelder übertragen */
input, input:before, input:after {
      -webkit-user-select: initial;
      -khtml-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
     }

        /* General sizing */
ul.dropdown-lr {
  width: 300px;
}

/* mobile fix */
@media (max-width: 768px) {
	.dropdown-lr h3 {
		color: #eee;
	}
	.dropdown-lr label {
		color: #eee;
	}
}

.nav-link {
color:white;
}

.navbar-inverse .navbar-nav>li>a{color:white}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:white;background-color:transparent}