/* ps_searchbar.css */
#_desktop_ps_searchbar {
    padding: 0;
}
#ps_searchbar .search-btn {
    cursor: pointer;
    float: right;
    width: 24px;
    height: 24px;
    z-index: 1;
}
#ps_searchbar .search-btn .material-icons.search,
#ps_searchbar .search-btn .material-icons.close {
    color: #ffffff;
    font-weight: bold;
}
.search-btn .material-icons.close {
    display: none;
}
.js-search-widget.active .search-btn .material-icons.close {
    display: block;
}
.js-search-widget.active .material-icons.search {
    display: none;
}

#_desktop_ps_searchbar #ps_searchbar {
    position: relative;
}

#_desktop_ps_searchbar #ps_searchbar .search-toggle {
    background-color: var(--bs-body-bg);
    border: none;
    display: none;
    height: 80px;
    padding: 0;
    position: absolute;
    left: auto;
    right: 99px;
    top: 0;
    width: 250px;
    z-index: 1;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

#_desktop_ps_searchbar #ps_searchbar .search-toggle.open {
    display: block;
}


/* Responsive */
@media (max-width: 991px) {
    #_desktop_ps_searchbar #ps_searchbar .search-toggle {
        height: 70px;
        top: -1px;
        right: 68px;
    }
    .ps-searchbar__input {
        height: 70px;
    }
}
@media (max-width: 767px) {

    #_desktop_ps_searchbar {
        display: none !important;
    }
    .ps-searchbar__input {
        height: 50px;
    }
}