/* Dropdown only: do not touch first-level nav styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
 
    min-width: 180px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    z-index: 1001;
}

.dropdown-content {
    position: relative;
}

.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-list > li {
    float: none;
    width: 100%;
    display: block;
}

.dropdown-item > a {
    display: block;
    padding: 8px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-item > a:hover {
    background: #f5f5f5;
    color: #fa765e;
}

.dropdown-arrow {
    position: absolute;
    top: -6px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

@media (min-width: 769px) {
    .top_nav_li > li:hover > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 8px;
    }

    .dropdown-item > a {
        padding: 10px 24px;
    }

    .dropdown-arrow {
        display: none;
    }
}
