/* Tabs bar */
.pewc-tabs {
    display: flex;
    //border-bottom: 2px solid #64254b;
    margin-bottom: 10px;
    gap: 12px;
}

.pewc-tab {
    border: none;
    padding: 6px 32px;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    text-transform: uppercase;
    border-bottom: 6px solid #e9e9ed;
    line-height: 1.5;
}

.pewc-tab.active {
    background: #fff;
    padding: 6px 32px;
    border: none;
    border-bottom: 6px solid #d63494;
    color: #000;
    text-transform: uppercase;
    line-height: 1.5;
}

.pewc-tab:hover {
    background: none !important;
    border: none !important;
    padding: 6px 32px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    text-transform: uppercase;
    border-bottom: 6px solid #d63494 !important;
    line-height: 1.5;
}

/* Hide/show groups */
.pewc-group-wrap {
    display: none;
}

.pewc-group-wrap.active {
    display: block;
    border: none;
    background: #fff;
}
