


/* Top Search */

#header.no-scroll {
    position: absolute;
}

.top-search {
    width: 100%;
    padding: 20px 0;
    background: #FFF;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.top-search.stiky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 998;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}

.top-search.stiky.not-stiky {
    position: -webkit-relative;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.top-search-close {
    display: none;
    width: 32px;
    height: 32px;
    font-size: 0;
    cursor: pointer;
    text-decoration: none;
    text-indent: -999em;
    background: url(../img/x.svg) center center no-repeat;
    background-size: 12px auto;
    opacity: 0.5;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}

.top-search.stiky .top-search-close {
    display: block;
}

.top-search.stiky.not-stiky .top-search-close {
    display: none;
}
