	.comma-tabs__item_custom {
	    position: relative;
	    font-weight: 700;
	    font-size: 1rem;
	    line-height: 150%;
	    color: var(--text-primary);
	    padding: .75rem .25rem;
	    white-space: nowrap;
	}
	
	.comma-tabs__item_custom::after {
	    content: "";
	    display: block;
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    width: 0;
	    height: 2px;
	    background-color: var(--icon-accent);
	    -webkit-transition: all .3s ease-in-out;
	    transition: all .3s ease-in-out;
	}
	
	.comma-tabs__item_custom.is-active::after {
	    width: 100%;
	}
	
	.comma-tabs__item_custom.is-active {
	    color: var(--text-accent);
	}
	
	a {
	    cursor: pointer;
	}