.atm-tag {
    @apply inline-block;
    @apply border-gray-100 border;
    @apply rounded-full;
    @apply px-4 py-2;
    @apply transition;

    &:hover{
        @apply border-secondary-col-1 text-secondary-col-1;
    }
        
    &.active {
        @apply bg-secondary-col-1 text-white border-none;
    }

    &.tag-sm {
        @apply py-1.5;
        @apply text-sm;
    }

    span {
        @apply flex items-center gap-3;
    }
}

a.atm-tag {
    @apply cursor-pointer;
}
