.filter-all-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--systemSpacing-20);
}

.filter-icon-txt-wrp:hover {
    background-color: var(--systemBG-primary-hover);
}

.filter-icon-txt-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: var(--systemSpacing-12) var(--systemSpacing-16);
    gap: var(--systemSpacing-8);
    background-color: var(--systemBG-primary);
    width: fit-content;
    border-radius: var(--systemSpacing-9999);
    cursor: pointer;
}

.filter-icon-wrp svg {
    display: block;
    fill: var(--systemPrimary);
}

.filter-txt {
    font-size: var(--p-fontSize);
    color: var(--systemPrimary);
    font-weight: 600;
}

.filter-seperate-line {
    width: var(--systemSpacing-1);
    height: var(--systemSpacing-32);
    border: var(--systemSpacing-1) solid var(--systemQuaternary);
}

.filter-hashtag-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-hashtag-wrp::-webkit-scrollbar {
    display: none;
}

.hashtag-all-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--systemSpacing-8);
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hashtag-all-wrp::-webkit-scrollbar {
    display: none;
}

.hashtag-all-wrp .hashtag-wrp:last-child {
    margin-right: var(--systemSpacing-80);
}

.hashtag-wrp {
    border: var(--systemSpacing-1) solid var(--systemQuinary);
    border-radius: var(--systemSpacing-9999);
}

.hashtag-wrp:hover {
    background-color: var(--systemBG-primary);
    cursor: pointer;
    width: 100%;
}

.hashtag {
    font-size: var(--p-fontSize);
    color: var(--systemPrimary);
    font-weight: 600;
    padding: var(--systemSpacing-12) var(--systemSpacing-16);
    white-space: nowrap;
}

.scroll-btn-wrp {
    display: flex;
    flex-direction: flex-end;
    position: sticky;
    right: var(--systemSpacing-0);
}

.scroll-to-right, .scroll-to-left {
    border-radius: var(--systemSpacing-9999);
    padding: var(--systemSpacing-0);
    background-color: var(--systemBG-primary);
    box-shadow: var(--negative-systemSpacing-12) var(--systemSpacing-0) var(--systemSpacing-8) var(--systemSpacing-0) var(--systemWhite), var(--negative-systemSpacing-2) var(--systemSpacing-0) var(--systemSpacing-2) var(--systemSpacing-0) var(--systemWhite), var(--systemSpacing-12) var(--systemSpacing-0) var(--systemSpacing-8) var(--systemSpacing-0) var(--systemWhite), var(--systemSpacing-2) var(--systemSpacing-2) var(--systemSpacing-2) var(--systemSpacing-0) var(--systemWhite);
    font-variant: var(--negative-systemSpacing-12);
}

.scroll-to-left {
    display: none;
}

.scroll-to-right:hover, .scroll-to-left:hover {
    background-color: var(--systemBG-primary-hover);
}

.scroll-to-right svg {
    display: block;
    fill: var(--systemPrimary);
}

.scroll-to-left svg {
    display: block;
    fill: var(--systemPrimary);
}

@media screen and (max-width: 960px) {

    .hashtag-all-wrp .hashtag-wrp:last-child {
        margin-right: var(--systemSpacing-32);
    }
}

@media screen and (max-width: 600px) {
    
    .filter-icon-txt-wrp {
        padding: var(--systemSpacing-8) var(--systemSpacing-12);
    }

    .filter-icon-wrp svg {
        display: block;
        width: var(--systemSpacing-16);
    }

    .filter-txt {
        font-size: var(--ch-fontSize);
    }

    .hashtag {
        font-size: var(--ch-fontSize);
        padding: var(--systemSpacing-8) var(--systemSpacing-12);
    }
}