.mobile-search {
    position: fixed;
    bottom: -101%;
    left: 0;
    height: 85vh;
    width: 100vw;
    transition: bottom .3s;
    border-radius: 20px 20px 0px 0px;
    background: var(--primary-bg);
    z-index: 100001;
    padding: 10px;
    flex-direction: column;
}

.mobile-section .tags-input.active,
.mobile-actions,
.mobile-search {
    display: flex;
    gap: 12.5px;
}

.mobile-actions {
    margin-top: auto;
    align-items: center;
}
.mobile-actions a {
    flex: 1;
    text-decoration: underline;
}

.mobile-search.active {
    bottom: 0;
}

.mobile-search h4 {
    margin: 0;
    z-index: 1;
    font-weight: normal;
}
.mobile-section.active h4 {
    font-weight: bold;
}

.mobile-search b.placeholder {
    text-align: right;
    float: right;
    max-width: 50vw;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.mobile-section {
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
    background-color: var(--primary-bg);
    padding: 15px;
}

.mobile-content,
.location-results,
.mobile-section .tag-list {
    margin-top: 12.5px;
}

.mobile-content,
.mobile-section .tag-list {
    max-height: 48vh;
}

.location-results {
    height: 100%;
    max-height: 40vh;
    overflow-y: auto;
}

.location-results,
.mobile-categories,
.mobile-section .tag-list {
    overflow-y: auto !important;
}

.mobile-content {
    display: none;
    overflow: hidden;
}
.mobile-section.active .mobile-content {
    display: block;
}

.mobile-content .mobile-actions {
    align-items: stretch;
}
.mobile-content .search-btn {
    padding: 8px 16px;
    display: flex;
    align-items: center;
}

.mobile-categories {
    margin-right: -12.5px;
    padding-right: 12.5px;
}
.mobile-categories:not(.active) {
    display: none !important;
}

.mobile-section .tags-input.active {
    flex-wrap: wrap;
}
.mobile-section .tag-list button {
    flex: 1 1 auto;
}