/* ==========================================================================
    SEARCH PANEL
========================================================================== */
.search-panel-burger {
    position: absolute;
    top: 8px;
    right: 60px;
    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%;
}
a.search-panel-opener{
    padding: 10px 20px;    
}
@media screen and (min-width: 951px) {
    a.search-collapse-btn.search-panel-burger{display: none!important;}
}
@media screen and (max-width: 950px) {
    .search-panel{display: none !important;}
}
@media screen and (max-width: 640px) {
    .search-panel-content input[type=text]{
        font-size: 15px;
    }
}
/* -------------------------------
    CUSTOM
--------------------------------*/
a.search-panel-opener{
    background-color: #5C5C5D;
    color: #FFF;
    border: 1px solid #5C5C5D;
}
a.search-panel-opener:hover{
    background-color: #FFF;
    color: #5C5C5D;
}
a.search-panel-burger{
    color: #CCC;
}
a:hover.search-panel-burger{
    color: #FFF;
}
.search-panel-content {
    background-color: rgba(255, 255, 255, 0.9);
}