
.tag_wrapper ul{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tag_wrapper ul a{
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.tag_wrapper ul a:hover{
    opacity: 0.5;
}

.tag_wrapper ul a .text{
    margin-top: -3px;
}

.tag_wrapper ul .circle{
    display: flex;
    width: 18px;
    height: 18px;
    border-radius: 100%;
}

.tag_wrapper ul .tag_purple{
    color: #792980;
}

.tag_wrapper ul .tag_purple .circle{
    background-color: #792980;
}

.tag_wrapper ul .tag_pink{
    color: #dd2751;
}

.tag_wrapper ul .tag_pink .circle{
    background-color: #dd2751;
}

.tag_wrapper ul .tag_green{
    color: #2c5e59;
}

.tag_wrapper ul .tag_green .circle{
    background-color: #2c5e59;
}

.tag_wrapper ul .tag_blue{
    color: #2c345e;
}

.tag_wrapper ul .tag_blue .circle{
    background-color: #2c345e;
}