.filter-btn {
    position: fixed;
    top: 160px;
    left: 20px;
    transform: translateX(0%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0094ff;
    transition: 0.3s;
    color: #FFF;
    z-index: 9;
}

.filter-btn:hover {
    background-color: #0085e4;
    transition: 0.3s;
}

.filter {
    position: fixed;
    top: 160px;
    left: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    margin: auto;
    background-color: #eeeeee;
    width: fit-content;
    color: #4A4A4A;
    border-radius: 5px;
    padding: 20px;
    z-index: 50;
    transform: translateX(-140%);
    transition: 0.3s;
}

.filter .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    transition: 0.3s;
    width: 100%;
}

.filter input,
.filter select {
    font-size: 16px;
    height: auto;
    border: none;
    background-color: #FFF;
    width: 200px;
}

.filter input[type="checkbox"] {
    width: fit-content;
    padding: 0px;
}

.filter input {
    width: 90px;
}

.filter label {
    font-size: 14px;
    font-weight: 600;
    color: #ef9b12;
}

.filter hr {
    width: 100%;
    background-color: #CCC;
    border: none;
    height: 2px;
    display: block;
    transition: 0.3s;
    margin: 15px 0px;
}

.dropdown-check-list {
    display: inline-block;
    position: relative;
}

.dropdown-check-list .anchor {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 7.5px 15px;
    border-radius: 5px;
    background-color: #FFF;
    width: 200px;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-check-list ul.items {
    padding: 2px;
    display: none;
    margin: 0;
    border-top: none;
    box-shadow: 0px 11px 20px 0px #e6ebed;
}

.dropdown-check-list ul.items li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

.dropdown-check-list.visible .anchor {
    color: #0094ff;
}

.dropdown-check-list.visible .items {
    position: absolute;
    top: 35px;
    left: 0px;
    width: 100%;
    background-color: #FFF;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    z-index: 3;
}

.filter-show-btn {
    width: 100%;
    background-color: #0094ff;
    color: #FFF;
    transition: 0.3s;
    position: sticky;
    bottom: 0;
    left: 0;
}

.filter-show-btn:hover {
    background-color: #0085e4;
    color: #FFF;
    transition: 0.3s;
}

.check-list {
    width: 100%;
    background-color: transparent;
}

.check-list ul.items {
    padding: 2px;
    margin: 0;
    border-top: none;
    max-height: 30vh;
    overflow-y: auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
    text-transform: capitalize;
}

.check-list ul.items::-webkit-scrollbar {
    width: 4px;
}

.check-list ul.items::-webkit-scrollbar-track {
    background: #E6E6E6;
}

/* Handle */
.check-list ul.items::-webkit-scrollbar-thumb {
    background: #ef9b12;
    border-radius: 3px;
}

/* Handle on hover */
.check-list ul.items::-webkit-scrollbar-thumb:hover {
    background: #7dab4e;
}

.check-list ul.items li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

@media screen and (max-width: 850px) {
    .filter .wrapper {
        flex-direction: column;
    }

    .filter-btn {
        bottom: 80px;
        top: auto;
        left: 10px;
    }

    .filter {
        left: 0px;
        top: 120px;
        width: 100%;
        height: calc(100vh - 180px);
        padding-bottom: 60px;
    }

    .check-list ul.items {
        max-height: none;
        height: calc(100vh - 640px);
    }

    .tile-container {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 10px;
    }
}