
/*-------header--------*/

@keyframes sticky {
    from {
        top: -100px;
    }
    to {
        top: 0;
    }
}

header.lowopacity,
main.lowopacity,
footer.lowopacity {
    opacity: 0.2;
}

.header-part {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 23px 0;
    z-index: 999;
}

.header-logo {
    position: relative;
    display: inline-block;
    width: 200px;
    float: left;
}

.shop-cart {
    float: right;
    padding: 0;
    margin: 0;
    text-align: right;
    vertical-align: middle;
}

.shop-cart li {
    display: inline-block;
    padding: 8px 0px 0px 15px;
    margin: 0;
}

.shop-cart li a {
    display: block;
    width: 22px;
    position: relative;
}

.shop-cart li a #itemCount {
    position: absolute;
    display: block;
    top: -10px;
    left: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9cc536;
    color: white;
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
}

.header-part.sticky-fixed {
    position: fixed;
    background: #5c5c5c;
    /*opacity: .9;*/
    /*border-bottom: 1px solid #eee;*/
    animation: sticky 0.5s linear;
}

body.admin-bar .header-part.sticky-fixed {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .header-part.sticky-fixed {
        top: 46px;
    }
}

.sub-page.header-part {
    background: #fff;
    /*border-bottom: 1px solid #eee;*/
    /*box-shadow: 0 0 10px 0 #f2f3f6;*/
}
.sub-page.header-part.sticky-fixed {
    position: fixed;
    animation: sticky 0.5s linear;
}
/*body.admin-bar .sub-page.header-part.sticky-fixed {
}*/

.lowopacity .header-part.sticky-fixed,
.lowopacity .sub-page.header-part.sticky-fixed {
    position: absolute;
}

.vibono-header-search {
    position: absolute;
    width: 100%;
    left: 0;
    top: -92px;
    z-index: 0;
    transition: all 0.3s ease;
    opacity: 0;
    background: rgba(255, 255, 255, 0);
    /*height: 100%;*/
}

.vibono-header-search.open {
    top: 0px;
    opacity: 1;
    z-index: 100000;
}

.vibono-header-search .search-bar {
    width: 1140px;
    display: inline-block;
    padding: 15px;
    background: #5c5c5c;
    position: relative;
    margin-left: -15px;
    margin-top: 32px;
}

.search-bar {
    width: 103%;
    display: inline-block;
    padding: 15px;
    background: #5c5c5c;
    position: relative;
    margin-left: -15px;
    margin-top: 41px;
}

.search-bar input {
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    box-shadow: none;
    background: #939499;
    border: none;
    outline: none;
    color: #fff;
}

.search-bar input::placeholder {
    color: #fff;
}

.search-bar button {
    width: 15px;
    height: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    cursor: pointer;
    color: #fff;
}

.search-bar button img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.vibono-header-search .search-bar button.close-search .vibono-search-icon {
    left: -5px;
    top: 0;
    position: absolute;
}

.search-bar button.submit-loader .vibono-search-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/*-----------header-end-----------*/
