.nav__{
    z-index: 999;
}

.nav__dropdown > .dropdown-menu{
    border-radius: 0 !important;
}

.nav__dropdown > .dropdown-menu > .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

/* SEARCH */
.nav__ input[type=search] {
    cursor: pointer;
    outline: none;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 90%;

    background: #fff url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
    border: none;
    padding: 0.25rem 0.5rem 0.25rem 2rem;
    width: 40%;

    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    border-radius: .2rem;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
.nav__ input[type=search]:before {

}
.nav__ input[type=search]:focus {
    width: 80%;
    background-color: #e9ebee;
}

/* MOBILE NAV */
@media (max-width: 767px) {
    .nav__child{
        display: block;
        width: 100%;
    }
}