/* ==========================================================================
    SEARCH PANEL
========================================================================== */
/*.search-panel-burger {
    position: absolute;
    top: 13px;
    right: 70px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    text-align: center;
}*/
a.search-collapse-btn{
    text-decoration: none;
}
.search-panel-content {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 90px;
    line-height: 80px;
    z-index: 10001;
    -webkit-transition: top .2s linear;
    -moz-transition: top .2s linear;
    transition: top .2s linear;
}
.search-panel-content.active {
    top: 0;
}
.search-panel-content input[type=text]{
    font-size: 28px;
    border: none;
    background-color: transparent;
    width: 90%;
}
@media screen and (min-width: 768px) {
    .search-panel-burger{display: none !important;}
}
@media screen and (max-width: 767px) {
    .search-panel{display: none !important;}
}
@media screen and (max-width: 640px) {
    .search-panel-content input[type=text]{
        font-size: 15px;
    }
}
/* ==========================================================================
    custom
========================================================================== */
li.search-panel{
    width: 50px;
    border: none;
}
a.search-panel-burger{
    color: #CCC;
}
a:hover.search-panel-burger{
    color: #333;
}
.search-panel-content {
    background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
    a.search-panel-burger{
        color: #FFF;
    }
    a:hover.search-panel-burger{
        color: #666;
    }
}