/* Only hide/animate tabs on the live frontend, not in the Bricks builder */
.bricks-is-frontend .cc__tab-content-item {
    display: none;
    opacity: 0;
    transition: opacity 200ms ease;
}

.bricks-is-frontend .cc__tab-content-item.active {
    display: flex;
}

.bricks-is-frontend .cc__tab-content-item.visible {
    opacity: 1;
}

.cc__tab-nav-item {
    cursor: pointer;
}
