.tag-scroll {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 0 20px;
}

.tag-scroll-wrap {
    box-sizing: border-box;
    width: 1500px;
    max-width: 100%;
    min-width: 375px;
}

.tag-scroll-container {
    display: flex;
    gap: 8px;
}

    .tag-scroll-container .arrow-content {
        display: none;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        box-sizing: border-box;
        border: 1px solid #1b1b1b;
        background: #ffffff;
        border-radius: 50%;
        cursor: pointer;
        flex-shrink: 0;
    }

        .tag-scroll-container .arrow-content img {
            width: 16px;
            height: 16px;
        }

    .tag-scroll-container .expend-action {
        transform: rotate(-90deg);
    }

        .tag-scroll-container .expend-action.expend {
            transform: rotate(90deg);
        }

    .tag-scroll-container .scroll-action {
        transform: rotate(180deg);
    }

.tag-scroll-content {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
}

    .tag-scroll-content::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .tag-scroll-content .tag-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 24px;
        box-sizing: border-box;
        border: 1px solid #1b1b1b;
        border-radius: 20px;
        cursor: pointer;
        padding: 0 16px;
        background: #ffffff;
        flex-shrink: 0;
    }

        .tag-scroll-content .tag-item.active {
            background-color: #1b1b1b;
            color: #fff;
        }

        .tag-scroll-content .tag-item:hover {
            background-color: #1b1b1b;
            color: #fff;
        }

.tag-scroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 24px;
    color: #1b1b1b;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    padding-bottom: 6px;
}

    .tag-scroll-header #delete-tag {
        cursor: pointer;
    }

@media screen and (max-width: 375px) {
    .tag-scroll {
        width: 375px;
    }
}
