.wrapper-dropdown {
    position: relative;
    width: 200px; text-align:left;
    padding: 7px 10px;
	border:2px solid #505050;
    border-radius: 5px;
    cursor: pointer;
    outline: none; display: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; font-size:16px; font-weight:100; margin:0 auto -10px}

.wrapper-dropdown:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #505050 transparent;
}

.wrapper-dropdown ul {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background:#fff;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgba(0,0,0,0.8);
    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;
	margin-top:0
}

.wrapper-dropdown ul li {
    padding: 0 15px ;
}
.wrapper-dropdown ul li:last-child {padding-bottom:15px}

.wrapper-dropdown ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding:5px 0;
    transition: all 0.3s ease-out;
}

.wrapper-dropdown ul li:last-of-type a {
    border: none;
}

.wrapper-dropdown ul li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown ul li:hover a {
    color: #dea64e;
}

/* Active state */

.wrapper-dropdown.active {
    border-radius: 5px 5px 0 0;
    background: #000;
    border-color:#ddc287;
    color:#dea64e; z-index:9
}

.wrapper-dropdown.active:after {
    border-color: #dea64e transparent;
	
}

.wrapper-dropdown.active ul {
    border-bottom: 1px solid #505050;
    max-height: 400px;
	margin-top:0
}

@media screen and (max-width:1000px) {
.alliance .desktop {display:none}
.wrapper-dropdown {display:block}
}