
/* DEMO 5 */

.wrapper-dropdown-5 {
       font-size:14px;
    /* Size & position */
    position: relative;
    left:0px;
    width:200px;
    margin: 0 auto;
    padding: 10px 15px 10px 10px;
    /* Styles */
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    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;
    color:#4a4a4b;

}

.wrapper-dropdown-5: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: #000 transparent;

}

.wrapper-dropdown-5 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
       z-index:1101000;
    /* Styles */
    background: #fff ;

    border-top: none;
    border-bottom: none;
    list-style: none;
        font-weight:none !importatn;
           height:220px;
    /* Hiding */
    max-height: 0;
    overflow: scroll;


     /* Boyutlandırma / 10px 10 px tavsiye dir  */
-webkit-scrollbar{width:10px;height:10px}
  /* Yukarı aşağı okları . */
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment{display:none;}
  /* Arkaplan */
::-webkit-scrollbar-track-piece{background-color:#e6e6e6}
  /* Tutma parçası */
::-webkit-scrollbar-thumb{-webkit-border-radius:4px;background:#444;}
}


.wrapper-dropdown-5 .dropdown li {
  font-size:11px;
       font-weight:none !important;
    padding: 0 10px ;
    border-bottom:none;
    border-top:1px solid #f9f9f9 !important;

}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #4a4a4b;
    padding: 5px 0;
 font-weight:none !important;
}

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

}


/* Hover state */

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

/* Active state */

.wrapper-dropdown-5.active {
    border-radius: 5px 5px 0 0;
    background: #fff;
    box-shadow: none;
    border-bottom: none;
    color: #0e0e0e;
}

.wrapper-dropdown-5.active:after {
    border-color: #000 transparent;
}

.wrapper-dropdown-5.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 1000px;
}

/* No CSS3 support: none */
