.navbar-item-active {
    font-weight: bold;
}

.navbar-link-active {
    color: #000;
}

.navbar {
    box-shadow: none !important;
    background-color: #FFF !important;
    padding: 0 !important;
    position: static;
}

/*******************************************************/
.navbar-container {
    width: 100%;
    height: 50px;
    /*background-color: #EFEFEF;*/
}

.navbar-container .wrapper {
    height: 100%;
}

.navbar-list {
    display: flex;
    width: 100%;
    /*height: 50%;*/
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 17px;
    flex-direction: row;
}

.navbar-item {
    /*height: 100%;*/
    line-height: 50px;
    /*position: static !important;*/
    /*position: relative;*/
}

.navbar-item:hover {
    /*background-color: #DEDEDE;*/
}

.navbar-item .navbar-link {
    padding: 0 15px;
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: center;
    position: relative;
}

.navbar-link-name {
    width: 100%;
}

.navbar-item .navbar-link svg {
    position: absolute;
    bottom: 0;
}

.navbar-arrow {
    /*width: 16px;*/
    /*height: 16px;*/
    /*font-weight: bold;*/
    /*line-height: 50px;*/
}

.navbar-child-list-container {
    width: 100%;
    display: none;
    position: absolute;
    top: 144px;
    left: 0;
    z-index: 100;
    /*background: rgba(255, 255, 255, 0.8);*/
    background-color: #E6E6E6;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
}

.navbar-child-list {
    display: inline-flex;
    height: 160px;
    writing-mode: vertical-lr;
    /*margin-top: 40px;*/
    align-items: center;
    align-self: baseline;
    justify-content: flex-start;
    /*flex-direction: column;*/
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: normal;
}

.navbar-child-item {
    writing-mode: horizontal-tb;
    width: 240px;
    height: 40px;
    line-height: 40px;
    margin: 0 20px;
    border-bottom: 1px solid #CCC;
}

.navbar-child-item .navbar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-child-item-icon {
    font-size: 14px;
}

.navbar-child-item-link-active {
    color: #222;
    font-weight: bold;
}