.cp-tag-container {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    column-gap: 8px;
    row-gap: 8px ;
}

.cp-tag {
    padding: 6px !important;
    border-radius: 4px !important;
    background-color: #F4F5F5;
    cursor: pointer !important;
    border: 0px solid transparent !important;
    font-size: 12px !important;
    line-height: normal !important;
    margin: 0 !important;
    display: flex !important;
    color: #434242 !important;
    align-items: center;
    height: fit-content;
}

.cp-tag:hover {
    color: #fff !important;
    background-color: #f07e1d !important;
}

.cp-container-tag {}

@media only screen and (max-width:480px) {
    .cp-tag-container {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 4px;
        row-gap: 4px;
        column-gap: 4px;
    }

    .cp-tag {
        font-size: 11px !important;
        line-height: fit-content;
    }
}