/* GLOBALS 
Konnte Text dadurch nicht mehr auswählen

::selection {
    background: transparent; 
}

::-moz-selection {
    background: transparent; 
}
*/

/* DEMO 1 */

.wrapper-dropdown-1 {
    padding: 0;
    /* Size & position */
    position: relative;
	float:right;
	right: 0px;
	width: auto;
	min-width: 205px;
	padding: 9px 40px 0 25px;
	height: 35px;
    margin: 0;

    /* Styles */
    background: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.wrapper-dropdown-1:after { /* Little arrow */
    padding: 0;
    margin: 0;
    content: "";
    width: 0;	
    height: 0;
	right:15px;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.wrapper-dropdown-1 .dropdown {
    padding: 0;
    margin: 0;
    /* Size & position */
    position: absolute;
	min-width: 180px;	
    top: 45px;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    border-radius: 0px;
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Hiding */
    max-height: 0;
    overflow: hidden;
	z-index:5;
	
}

.wrapper-dropdown-1 .dropdown li {
    padding: 10px 10px 10px 10px;
	height: 15px;
    text-decoration: none;
    color: #666666;
    border-bottom: 1px solid #e6e8ea;
    transition: all 0.3s ease-out;
}

.wrapper-dropdown-1 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #666666;
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-dropdown-1 .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown-1 .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */
.wrapper-dropdown-1:hover {
	background-color: #424d60;
}
.wrapper-dropdown-1 .dropdown li:hover {
 background: #F7F9FB;
}

/* Active state */

.wrapper-dropdown-1 .active {
    border-radius: 0px 0px 0 0;
	background-color: #424d60;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-dropdown-1.active .dropdown {
    /*border-bottom: 1px solid rgba(0,0,0,0.2);*/
	box-shadow: 0 0 5px 1px #CCCCCC !important;
    max-height: 400px;
}

.ul-active {
	/*box-shadow: 0 0 5px 1px #CCCCCC !important;*/
}