.gssb-filter {
    width: 100%;
    margin: 32px 0 32px 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.4);
}

.gssb-filter__title {
    display: none;
    width: 100%;
    margin-bottom: 30px;
    color: #434343;
    font-family: 'Univers 55 Roman', sans-serif;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.gssb-filter__tabs {
    display: none;
    color: #434343;
    font-family: 'Basis Grotesque';
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.gssb-filter__tabs-btn {
    position: relative;
    background: none;
    border: none;
    color: #434343;
    font-family: 'Basis Grotesque';
    font-size: 16px;
    line-height: 20px;
    margin-left: 24px;
    padding: 0;
    transition: all 0.2s ease-out;
}

.gssb-filter__divider-container {
    display: inline;
    position: relative;
    margin-left: 24px;
}

.gssb-filter__divider {
    height: 30px;
    position: absolute;
    top: -20px;
    width: 1px;
    background-color: black;
}

.gssb-filter__reset-btn {
    position: relative;
    background: none;
    border: none;
    color: black;
    font-family: 'Basis Grotesque';
    font-size: 16px;
    line-height: 20px;
    margin-left: 24px;
    padding: 0;
    cursor: pointer;
}

.gssb-filter__reset-btn:disabled {
    color: #999999;
    cursor: default;
}

.gssb-filter__tabs-btn:first-child {
    margin-left: 24px;
}

.gssb-filter__tabs-btn[aria-selected="true"] {
    font-weight: 400;
}

.gssb-filter__tabs-btn[aria-selected="true"]::after {
    content: '';
    position: absolute;
    display: block;
    background: black;
    width: 100%;
    height: 1px;
    top: calc(100% + 4px);
    /*left: calc(50% - 12px);*/
}

.gssb-filter__tabs-panel {
    position: relative;
}

.gssb-filter__checkbox-container {
    display: flex;
    justify-content: center;
    color: #434343;
    font-family: 'Basis Grotesque';
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    border-top: 1px solid rgba(153, 153, 153, 0.4);
    margin-bottom: 0;
    padding: 32px 0px;
}

.gssb-filter__checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid rgba(0, 0, 0, 0.95);
    border-radius: 2px;
    /*-moz-box-shadow: 0 0 3px rgba(153, 153, 153, 0.2);*/
    /*-webkit-box-shadow: 0 0 3px rgba(153, 153, 153, 0.2);*/
    /*box-shadow: 0 0 3px rgba(153, 153, 153, 0.2);*/
}

.gssb-filter__checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.gssb-filter__checkbox {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 18px;
    line-height: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
}

.gssb-filter__checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.gssb-filter__checkbox svg {
    transform: translateY(3px);
    display: none;
}

.gssb-filter__checkbox input:checked ~ .gssb-filter__checkmark {
    background-color: black;
    /*border-color: #007FC3;*/
}

.gssb-filter__checkbox input:checked ~ .gssb-filter__checkmark:after {
    display: block;
}

.gssb-filter__checkbox .gssb-filter__checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gssb-filter__hr {
    display: none;
    width: 760px;
    margin: 0 auto;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(57, 57, 57, 0.2);
}

.gssb-filter-list__btn-toggle {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 0px;
    color: #434343;
    font-family: 'Basis Grotesque';
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    background-color: #FFF;
    border-top: 1px solid rgba(153, 153, 153, 0.4);
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
}

.gssb-filter__reset-btn.mobile {
    display: block;
    width: 100%;
    padding: 16px 44px;
    text-align: center;
    background-color: #FFF;
    border-top: 1px solid rgba(153, 153, 153, 0.4);
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    margin-left: 0;
    cursor: pointer;
}

.gssb-filter-list__btn-toggle::after {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
    right: 0px;
    transition: transform 0.3s linear;
}

.gssb-filter-list__btn-toggle[aria-expanded="false"]::after {
    background: url('/a/pgs/images/chevron--down.svg') no-repeat;
}

.gssb-filter-list__btn-toggle[aria-expanded="true"]::after {
    background: url('/a/pgs/images/chevron--down.svg') no-repeat;
    transform-origin: center;
    transform: rotate(-180deg);
}

.gssb-filter-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0px;
    padding: 32px 0;
    background-color: #F7F7FA;
}

.gssb-filter-list[aria-hidden="false"] {
    display: flex;
    border-top: 1px solid rgba(153, 153, 153, 0.4);
}

.gssb-filter-list[aria-hidden="true"] {
    display: none;
}

@media screen and (max-width: 768px) {
    .gssb-filter-list__btn:last-of-type {
        margin-bottom: 0px;
    }
}

.gssb-filter-list__btn {
    display: block;
    margin: 0px auto 16px;
    padding: 10px 20px;
    color: #171717;
    font-family: 'Basis Grotesque';
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    background-color: #DCDCE0;
    border-radius: 23px;
    border: 0;
}

.gssb-filter-list__btn[aria-selected="false"] {
    color: #171717;
    background-color: #DCDCE0;
}

.gssb-filter-list__btn:hover {
    color: black;
    opacity: .7;
    /*background-color: #F7F7FA;*/
}

.gssb-filter-list__btn[aria-selected="true"] {
    color: black;
    opacity: .7;
    /*background-color: #F7F7FA;*/
}

.gssb-filter-search__label {
    visibility: hidden;
}

.gssb-filter-search__input {
    flex-grow: 2;
    width: 100%;
    padding: 10px 30px;
    color: #171717;
    font-family: 'Univers 55 Roman', sans-serif;
    font-size: 14px;
    line-height: 26px;
    background-color: transparent;
    border: 0;
}

.gssb-filter-search__input::placeholder {
    color: #171717;
    font-family: 'Univers 55 Roman', sans-serif;
    font-size: 14px;
    line-height: 26px;
    opacity: 1;
}

@media screen and (min-width: 768px) {

    .gssb-filter {
        max-width: 800px;
        margin: 48px auto 48px auto;
        border-bottom: 0;
    }

    .gssb-filter__tabs {
        display: block;
    }

    .gssb-filter__tabs-panel[aria-hidden="true"] {
        display: none;
    }

    .gssb-filter__checkbox-container {
        justify-content: center;
        border-top: none;
        margin-bottom: 40px;
        padding: 0;
    }

    .gssb-filter__title,
    .gssb-filter__hr {
        display: block;
    }


    .gssb-filter-list__btn-toggle {
        display: none;
    }

    .gssb-filter-list,
    .gssb-filter-list[aria-hidden="true"] {
        display: flex !important;
        flex-direction: row;
        margin: 0 -8px 40px;
        padding: 0;
        background-color: #FFF;
    }

    .gssb-filter-list__btn {
        display: inline-block;
        margin: 8px;
    }

    .gssb-filter-search {
        max-width: 384px;
        margin: 0  auto 80px auto;
    }
}