.wrapper-demo {
    *zoom: 1;
    display:inline-block; min-width:220px; padding:0; width:100%
}
.wrapper-demo:after {
    clear: both;
    content: "";
    display: table;
}
/* DEMO 5 */
.wrapper-dropdown-5 {
    /* Size & position */
    position: relative;
    width:100%;
    line-height:50px;
    padding: 0 30px 0 10px;
    /* Styles */
   
    font-family:'Droid Arabic Kufi';font-weight:900; box-sizing:border-box;
    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; direction:rtl; text-align:right; z-index:2; color:#fff;
}
.wrapper-dropdown-5:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #60A7D4 transparent;
}
.wrapper-dropdown-5 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* Styles */
    background: #fefefe; border:solid 1px #eee;   
    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;
}
.wrapper-dropdown-5 .dropdown li {
    padding: 0 15px ;
}
.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea; font-size:11px; line-height:30px
}
.wrapper-dropdown-5 .dropdown li:last-of-type a {
    border: none;
}
.wrapper-dropdown-5 .dropdown li i {
   
    color: inherit;
    vertical-align: middle; margin-left:3%; font-size:14px
}
/* Hover state */
.wrapper-dropdown-5 .dropdown li:hover a {
    color: #57a9d9;
}
/* Active state */
.wrapper-dropdown-5.active {
    background: #4cbeff;
    box-shadow: none;
    border-bottom: none;
    color: white;
}
.wrapper-dropdown-5.active:after {
    border-color: #fff transparent;
}
.wrapper-dropdown-5.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 400px;
}
/* No CSS3 support: none */
