﻿.lateral-filter {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.lateral-filter-bar {
    height: 100%;
    width: 1.5rem;
    max-width: 1.5rem;
    min-width: 1.5rem;
    background-color: var(--color-primary);
    overflow: hidden;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: rgb(60 60 60 / 44%) -3px 0px 8px;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

    .lateral-filter-bar .open {
        transform: rotate(180deg);
        width: 1rem;
        height: 4.2rem;
        min-height: 4.2rem;
        max-height: 4.2rem;
    }

    .lateral-filter-bar .closed {
        width: 1rem;
        height: 4.2rem;
        min-height: 4.2rem;
        max-height: 4.2rem;
    }

.lateral-filter-title {
    width: 100%;
    height: auto;
    background-color: var(--color-primary);
    text-align: center;
    font-weight: bold;
    color: white;
    padding-top: 0.5rem;
}

.lateral-filter-content {
    overflow: auto;
    min-width: 20rem;
    max-width: 20rem;
    width: 20rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

.lateral-filter-items {
    height: 100%;
    width: 100%;
    background-color: white;
    padding-top: 1rem;
    display:flex;
    flex-direction:column;
    overflow:auto;
}

.filter-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-tertiary);
    padding-left: 0.5rem;
}

.filter-input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem 0 1rem;
}

.filter-input-container .filter-input,
.filter-input-container .filter-input:focus,
.filter-input-container .filter-input:active {
    border: none;
    outline: none;
}
