/* =========================================
   Gallery Filter
========================================= */

.gallery-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================================
   Search Box
========================================= */

.gallery-search-box {
    position: relative;
}

.gallery-search-box i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 15px;
}

.gallery-search-box input {
    width: 320px;
    height: 58px;

    border: 1px solid #e4e4e4;

    border-radius: 60px;

    padding: 0 24px 0 52px;

    outline: none;

    background: #fff;

    font-size: 15px;

    transition: 0.35s ease;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.gallery-search-box input:focus {
    border-color: #111;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Dropdown
========================================= */

.gallery-dropdown-box {
    position: relative;
}

.gallery-dropdown-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 15px;
    z-index: 2;
}

.gallery-dropdown-box select {
    min-width: 290px;

    height: 58px;

    border-radius: 60px;

    border: 1px solid #e4e4e4;

    background: #fff;

    padding: 0 22px 0 52px;

    outline: none;

    cursor: pointer;

    font-size: 15px;

    appearance: none;

    transition: 0.35s ease;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.gallery-dropdown-box select:focus {
    border-color: #111;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 768px) {
    .gallery-filter-wrapper {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .gallery-search-box input,
    .gallery-dropdown-box select {
        width: 100%;
    }
}
