@charset "UTF-8";
/* snippet-row-list-services START */
#snippet-row-list-services {
    .nav.nav-tabs {
        border-bottom: none;
    }
    .nav-link {
        color: var(--bs-primary);
    }
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
        border: none;
        border-radius: 5px;
    }
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        background: var(--bs-white);
        color: var(--bs-primary);
    }
    .tab-pane {
        opacity: 0;
        height: 0;
        visibility: hidden;
        transform: scale(0.9);
        transform-origin: center left;
        display: block;
    }
    .tab-pane.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: all 1s ease;
        height: auto;
    }
}
/* snippet-row-list-services END */