.tariffs-tabs-toggle {
    margin: 0 0 32px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
    .tariffs-tabs-toggle ul {
        list-style: none;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 4px;
        border-radius: 12px;
        background: #EDEBE8;
    }
    .tariffs-tabs-toggle .tariffs-tabs-toggle-item {
        display: inline-block;
        padding: 8px 16px;
        cursor: pointer;
        border-radius: 8px;
        white-space: nowrap;
        color: #171F26;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
    .tariffs-tabs-toggle .tariffs-tabs-toggle-item.active {
        box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.09), 0 5px 25px 0 rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(4, 11, 23, 0.04);
        background-color: #fff;
    }
        .tariffs-tabs-toggle .tariffs-tabs-toggle-item .discount {
            display: inline-block;
            height: 24px;
            margin-left: 12px;
            padding: 1px 8px;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 8px;
            background: #22C55E;
            color: #fff;
        }
.tariffs-tabs-items {

}
    .tariffs-tabs-items .tariffs-tab-item {
        display: none;
    }
    .tariffs-tabs-items .tariffs-tab-item.active {
        display: block;
    }

@media only screen and (max-width: 575px) {
    .tariffs-tabs-toggle .tariffs-tabs-toggle-item {
        padding: 6px;
        font-size: 14px;
    }
    .tariffs-tabs-toggle .tariffs-tabs-toggle-item .discount {
        margin-left: 4px;
    }
}