@media screen and (max-width: 767px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        height: 70px;
        padding: 0 10px !important;
        border-bottom: 2px solid #2CB4EF;
        position: relative;
    }

    .navbar-container {
        position: absolute;
        z-index: 10000;
        background-color: #F2F2F2;
        left: 0;
        top: 70px;
        height: auto !important;
        box-shadow: 0 5px 10px -5px #AAA;
    }

    .navbar-list {
        padding: 10px !important;
    }

    .navbar-item {
        width: 100% !important;
        text-align: left !important;
        font-size: 18px !important;
        line-height: 1.8 !important;
    }
}

.navbar-link-active {
    color: #0096e2 !important;
    font-weight: bold !important;
}

.navbar {
    flex-wrap: wrap;
    padding: 0;
}

.navbar-container {
    width: 100%;
    height: 60px;
}

.navbar-container .wrapper {
    height: 100%;
}

.navbar-list {
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    text-align: center;
}

.navbar-item {
    font-size: 17px;
    position: relative;
    height: 100%;
    line-height: 60px;
}

.navbar-link {
    color: #494949;
}

.navbar-link:hover {
    color: #0096e2;
}

.navbar-child-list {
    display: none;
    background: rgba(240, 240, 240, 0.8);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar-child-item {
    height: 48px;
    line-height: 48px;
    border-bottom: 1px solid #AAA;
}

.navbar-child-item:last-child {
    border-bottom: 0;
}