.zse-solution-tab {
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.zse-solution-tab.active {
    border-color: #0da6f2;
    background: rgba(13, 166, 242, 0.08);
}

.zse-solution-tab.active [data-zse-tab-kicker] {
    color: #0da6f2;
}

.zse-solution-tab:hover:not(.active) {
    border-color: #223c49;
    background: rgba(22, 37, 45, 0.5);
}

.zse-mobile-panel {
    animation: zseFadeUp 0.24s ease both;
}

@keyframes zseFadeUp {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .zse-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .zse-desktop-panel {
        display: none !important;
    }
}
