.filters {
    color: var(--color-dark-blue-25);
    padding-bottom: 4vw;
}

.filters .label:after {
    content: "";
    width: 1.5vw;
    height: 1px;
    background-color: var(--color-dark-blue-25);
    display: block;
    margin: 0.6vw 0 2vw 0;
}

.filters .current {
    color: var(--color-dark-blue-100);
}

.filters ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.filters ul li {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/*
body.archive .filters ul {
    justify-content: unset;
}
*/

body.archive .filters ul li {
    padding-right: 5%;
    max-width: 12vw;
}

body.archive .filters ul li[data-filter="product-launch"] {
    max-width: 10vw;
}

body.archive .filters ul li[data-filter="lead-generation"],
body.archive .filters ul li[data-filter="content-marketing"],
body.archive .filters ul li[data-filter="thought-leadership"] {
    max-width: 11vw;
}

.filters ul li:hover {
    color: var(--color-dark-blue-75);
}

.filters li:before {
    position: absolute;
    width: 0.6vw;
    height: 0.6vw;
    left: 0;
    top: -0.7vw;
    background-color: var(--color-orange-100);
    display: inline-block;
    content: "";
    border-radius: 100%;
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.filters li.current:before {
    transform: scale(1);
    opacity: 1;
}

.filters .mobile {
    display: none;
}

@media only screen and (max-width: 960px) {
    body.archive .filters ul li {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .archive .filters {
        margin-top: 70px;
    }

    .filters .mobile {
        margin-top: 20px;
        margin-bottom: 20px;
        display: block;
        -webkit-appearance: none;
        appearance: none;
        border: 2px solid var(--color-dark-blue-50);
        border-radius: 5px;
        color: var(--color-dark-blue-100);
        width: 100%;
        padding: 14px 60px 14px 20px;
        background-color: var(--color-white);
        background-image: url(../../images/select.svg);
        background-repeat: no-repeat;
        background-size: 3.1vw 3.31v;
        background-position: calc(100% - 3.1vw) center;
    }

    .filters .desktop {
        display: none;
    }
}