.filters {
    display: flex;
    flex-direction: column;
}

.filters-buttons-wrapper {
    display: flex;
    flex-direction: row;
    row-gap: 10px;
    column-gap: 20px;
    flex-wrap: wrap;
}

.filter-button, .clear-filters-button {
    background-color: #24346F;
    color: #ffffff;
    font-size: 14px;
    padding: 15px 23px;
    line-height: 1;
    min-width: 130px;
    transition: all 0.2s ease-in-out;
    ouline:none;
    border: none;
}

.clear-filters-button {
    align-self: flex-end;
    margin-top: 25px;
    text-transform: uppercase;
}

.filter-button:hover, .clear-filters-button:hover, .filter-button[is-active="true"] {
    background-color: #4187d1;
}

.node--view-mode-teaser .field--name-field-project-type {
    display: none;
}

.filters-wrapper {
    display: flex;
    flex-direction: row;
    margin: 50px 0px;
}

.filter-wrapper {
    width: 100%;
    position: relative;
    z-index: 3;
}

.filter-heading {
    width: 100%;
    position: relative;
    font-size: 20px;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    padding: 0px 20px 5px 20px;
    color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #24346F;
}


.filter-choices-wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
    list-style: none;
    background-color: #24346F;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    padding: 0px;
    overflow: hidden;
}

.filter-choices-wrapper.is-open {
    display: flex;
}

.filter-choice {
    cursor: pointer;
    padding: 25px 20px 15px 20px;
    color: white;
}

.filter-choice:last-of-type {
   padding-bottom: 25px;
}

.filter-choice:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text-highlight);
}

.filter-choice.is-selected {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text-highlight);
}

.pager-items-wrapper {
    display: inline;
}

.pager__items {
    padding: 0!important;
}

.pager__item {
    padding: 10px 13px!important;
    line-height: 1;
    cursor: pointer;
}

.pager__item.is-active {
    border-bottom: 2px solid #2a68af;
}