body { margin-top: 48px; }
.navbar-top {
	border-bottom: solid 1px #ff0084;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}

.navbar-top a {
    display: flex;
    align-items: center;
    color: #FFF;
    text-align: center;
    padding: 0 16px;
    font-size: 17px;
    height: 100%;
text-decoration: none;

}

.smenuleft {
    margin-left: 10px;
}

.navbar-top a:hover, .navbar-top a:focus, .navbar-top a:active {
    background: #333;
    color: #FFF;
}

@media (max-width: 768px) {
    .navbar-top a i {
        font-size: 20px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .navbar-top a .smenuleft {
        display: none;
    }


    .navbar-top a #wish-count {
        display: inline-block; 
        position: absolute;
        top: 5px;
        right: 5px; 
        padding: 2px 5px;
    }

    .navbar-top a {
        justify-content: center;
        padding: 0 12px;
    }
}

.container-top {padding-top: 10px;}