#topNavigationNew {
    display: none;
    height: 13.333vw;
    animation: grow 0.1s linear;
}

@-webkit-keyframes grow {
    0% {
        height: 0;
    }

    100% {
        height: 13.333vw;
    }
}

@keyframes grow {
    0% {
        height: 0;
    }

    100% {
        height: 13.333vw;
    }
}

.top-navigation-search {
    width: 100%;
    background: #fff;
    position: fixed;
    height: 13.333vw;
    z-index: 999;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    padding-left: 3vw;
}

.top-navigation-search div {
    background: #fff;
    border: 1px solid #dadada;
    height: 7.733vw;
    display: flex;
    align-items: center;
    width: 21vw;
    border-radius: 4.267vw;
    cursor: pointer;
}

.top-navigation-search img {
    width: 4.267vw;
    height: 4.267vw;
    margin: 0 3.467vw;
}

.top-navigation-search span {
    font-size: 3.467vw;
    color: #666;
}