/* GLOBALS */




.wrapper-demo {
 
  
   color:#fff;
   /*width:405px;*/
   float:left;
   margin-left:10px;
  
}



/* DEMO 5 */

.wrapper-dropdown-5 {
    /* Size & position */
    position: relative;
    width: 133px;
    margin: 0 auto;
   

    /* Styles */
 
    
    
    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-5:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
	color:#fff;
    top: 50%;
    right: 15px;
   /* margin-top: -3px;*/
    border-width: 4px 4px 0 4px;
    border-style: solid;
    border-color: #777777 transparent;
}

.wrapper-dropdown-5:hover{color:#FC8A08;}

.wrapper-dropdown-5 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    padding-left:0px;
	left:0;
	margin-top:10px;
    /* Styles */
   background:#fff;
    border-radius: 0 0 5px 5px;
    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;
width:100%;
    /* Hiding */
    max-height: 0;
    overflow: hidden;
	z-index:1000;
}

.wrapper-dropdown-5 .dropdown li {
    padding: 0 10px ;
}

.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;*/
}

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

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

/* Hover state */

.wrapper-dropdown-5 .dropdown li:hover a {
    color: #FC8A08;
}

/* Active state */

.wrapper-dropdown-5.active {
   /* border-radius: 5px 5px 0 0;
    background: #4cbeff;
    box-shadow: none;
    border-bottom: none;*/

    color: white;}

.wrapper-dropdown-5.active:after {
   /* border-color: #82d1ff transparent;*/
   
}

.wrapper-dropdown-5.active .dropdown {
    /*border-bottom: 1px solid rgba(0,0,0,0.2);*/
    max-height: 400px;
	width:100%;
}

/* No CSS3 support: none */
