.mobile-search {
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.mobile-search-inner {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #fff;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
}

.mobile-search-header {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-bottom: solid 1px #ddd;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 9999999;
    height: 50px;
}

.mobile-search-inner .site-search {
    display: flex;
    flex-basis: 100%;
}

.mobile-search input.search-form_input {
    font-size: 16px;
    flex: 1;
    height: 50px;
}

.mobile-search button.search-close {
    padding: 0;
    background: none;
    font-size: 14px;
    height: 50px;
}

@media (max-width:1100px) {
    .clerk-instant-search-col.clerk-col-1 {
        margin-bottom: 20px;
    }

    .clerk-instant-search {
        border-radius: 0;
        box-shadow: none;
    }

    .clerk-instant-search-container {
        position: static !important;
        z-index: 1 !important;
    }
}

@media (max-width:767px) {
    .clerk-desktop-button {
        display: block !important;
        padding: 20px 0;
    }
}