.dt-template-tabs {
    width: 100%;
}

.dt-template-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.elementor-kit-5 .dt-template-tabs__tab {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.05);
    color: #d1d5dc;
    border-radius: 10px;
    padding: 14px 18px;
    min-height: 40px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .25s ease;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 500 !important;
    line-height: 1.2;
    font-size: 15px !important;
}

.dt-template-tabs__tab:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.dt-template-tabs__tab.is-active {
    background: rgb(250, 70, 22);
    border-color: transparent;
    color: #ffffff;
    box-shadow: none;
}

.dt-template-tabs__tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.dt-template-tabs__tab-icon i,
.dt-template-tabs__tab-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.dt-template-tabs__tab-icon svg {
    fill: none !important;
    stroke: #ffffff !important;
}

.dt-template-tabs__tab-text {
    display: inline-flex;
    align-items: center;
}

.dt-template-tabs__panels {
    position: relative;
    width: 100%;
}

.dt-template-tabs__panel {
    display: none;
    opacity: 0;
    transform: translateY(18px);
}

.dt-template-tabs__panel.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: dtTemplateTabsFade .35s ease;
}

@keyframes dtTemplateTabsFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .dt-template-tabs__nav {
        gap: 10px;
        margin-bottom: 24px;
    }

    .dt-template-tabs__tab {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 16px;
        font-size: 0.9rem;
    }
}