.dz-tabs {
    transition: all 0.2s ease;
}
.dz-tabs:not(:last-child) {
    margin-bottom: 32px;
}
.dz-tabs__list {
    display: flex;
    justify-content: center;
    gap: 4px;
    user-select: none;
}
.dz-tabs__item {
    background: #f2f2f2;
    color: #000;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    padding: 12px 32px;
    transition: all 0.2s ease;
}
.dz-tabs__item:not(:first-child) {
    margin-left: 4px;
}
.dz-tabs__item:first-child {
    border-radius: 4px 0 0 4px;
}
.dz-tabs__item:last-child {
    border-radius: 0 4px 4px 0;
}
.dz-tabs__item:hover {
    background: #e5e5e5;
}
.dz-tabs__item:active {
    background: #d9d9d9;
}
.dz-tabs__item-active {
    background: #1428a0 !important;
    color: #fff;
    cursor: default;
}
.dz-tabsContent__item {
    display: none;
}
.dz-tabsContent__item-active {
    display: block;
}

/* Adaptation */
@media screen and (max-width: 410px) {
    .dz-tabs__item {
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media screen and (max-width: 360px) {
    .dz-tabs {
        margin-left: -20px;
        margin-right: -20px;
    }
    .dz-tabs__list {
        width: 100%;
    }
    .dz-tabs__item {
        width: 50%;
        font-size: 14px;
        border-radius: 0 !important;
        padding-left: 8px;
        padding-right: 8px;
    }
}