.filter {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background-color: #fff;

    max-height: 80%;
    width: 650px;

    font-family: "OpenSans";
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.7em;
}

.filter__wrapper {
    width: 100%;
}

.filter__header {
    background-color: #c9d6df;
    display: flex;
    padding: 18px 24px 18px 20px;
    justify-content: space-between;
}

.filter__tittle {
    color: black;
    font-size: 18px;
    line-height: 24px;
}

.filter__close-btn {
    display: block;

    width: 22px;
    height: 22px;

    border: none;
    border-radius: 50%;

    background-image: url("../../images/close_form_icon.svg");

    cursor: pointer;
}

.filter__close-btn:hover {
    background-image: url("../../images/close_form_icon_hover.svg");
}

.filter__toolbar {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.filter__toolbar:last-child {
    padding-bottom: 5px;
}
.filter__button {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    text-decoration: underline;
    color: black;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 15px;
}

.filter__button_style_fill {
    background-color: #c9d6df;
    padding: 10px 20px;
    color: black;
    border: 2px solid #575757;
    text-decoration: none;
}

.filter__button_style_fill:hover {
    background-color: #393939;
    transition: all ease-in-out 0.2s;
    color: #fff;
}

.filter__expression {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;

    padding: 10px;
    border-top: 2px solid #575757;
}

.filter__expression:last-child {
    border-bottom: 2px solid #575757;
}

.filter__input {
    display: block;
    position: relative;
    /* width: 100%; */
    height: 30px;
    border-radius: 22px;
    border: 1px solid #656b6d;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    font-family: "OpenSans";

    text-align: center;

    line-height: 16px;
}

.filter__select {
    display: block;
    position: relative;
    /* width: 100%; */
    height: 30px;
    border-radius: 22px;
    border: 1px solid #656b6d;
    /* padding: 3px 15px; */
    font-size: 14px;
    font-weight: 400;
    font-family: "OpenSans";

    text-align: center;

    line-height: 16px;
}
