.top-sub-search-bar{
    width: 100%;
    position: fixed;
    z-index: 10;
    height: 0px;
    display: flex;
    justify-content: center;
}

.top-sub-search-bar .search-bar{
    width: 40%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.489);
    padding: 5px;
    margin-top: 7px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    display: inline-flex;
    height: 40px;
    transition-duration: 1s;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.top-sub-search-bar .search-bar .input-f input{
    width: 100%;
    height: 100%;
    font-size: 17px;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    padding-left: 20px;
    
}

.top-sub-search-bar .search-bar .input-f{
    width: 98%;
    height: 93%;
}

.top-sub-search-bar .search-bar .search-icon{
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(222, 222, 222, 0.193);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 7px;
    cursor: pointer;
}

.top-sub-search-bar .search-bar .search-icon img{
    width: 90%;
}

@media (max-width:1300px) {
    .top-sub-search-bar .search-bar{
        width: 50%;
    }
}

@media (max-width:990px) {
    .top-sub-search-bar .search-bar{
        width: 60%;
    }
}

@media (max-width:550px) {
    .top-sub-search-bar .search-bar{
        width: 80%;
    }
}

@media (max-width:440px) {
    .top-sub-search-bar .search-bar{
        width: 85%;
    }
}

@media (max-width:400px) {
    .top-sub-search-bar .search-bar{
        width: 85%;
    }

    .sub-menu-bar-item-names .menu-item{
        display: none;
    }
}