.display-icon {
    cursor: pointer;
}

.list-view .list-icon {
    display: none;
}

.grid-view .grid-icon {
    display: none;
}

.filter-display-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    position: relative;
}

.selected-filter {
    cursor: pointer;
    margin-right: 3rem;
}

.filter-display-block div {
    font-family: 'Roboto';
}

.filter-display-block svg {
    margin-left: 0.5rem;
}

.filter-options {
    position: absolute;
    width: max-content;
    background-color: white;
    color: #32C3B7;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.filter-options p {
    padding: 10px 15px;
    cursor: pointer;
}

.filter-options p:hover {
    background-color: #9C9C9C;
}

.filter-options.hidden {
    display: none;
}

.search-results header {
    background-color: #F2F9F3;
    color: #2BACA1;
    border-top: 1px solid #E3EAE4;
}

.console-header .search-bar.fixed {
    height: 40px;
}

.console-header .search-bar.fixed .search-icon {
    left: auto;
    right: 1rem;
}

.console-header .search-bar input::placeholder {
    text-align: left;
}


@media (min-width: 750px) {

    .console-header .search-bar {
        margin-right: 1rem;
    }
}

@media (min-width: 1112px) {
    .search-filter-container {
        display: flex;
    }

    .filter-display-block {
        width: max-content;
        margin-left: auto;
    }
}