.bzb_compare_sect .tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.25em;
    justify-content: center;
}
.bzb_compare_sect .tabs:not(:last-child) {
    margin-bottom: 2.5em;
}
.bzb_compare_sect .tab {
    margin: 0 0.25em;
    max-width: calc(100% - 0.5em);
    box-sizing: border-box;
    padding: 0.5em;
    display: flex;
    align-items: center;
    min-height: 2.5em;
    justify-content: center;
    text-align: center;
    border-bottom: 0.125em solid rgba(75, 78, 252, 0.20);
    font-weight: 600;
    color: #2F3132;
    cursor: pointer;
}
.bzb_compare_sect .tab.active {
    border-bottom-color: #4B4EFC;
}
.bzb_compare_sect .tab_label {
    font-size: 0.75em;
}
.bzb_compare_sect .item {
    background-color: #F6F6F6;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
}
.bzb_compare_sect .item:not(.active) {
    display: none;
}
.bzb_compare_sect .compare_slider {
    position: relative;
    height: 28em;
}
.bzb_compare_sect .ui-slider-range-min {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    background-color: #F6F6F6;
    z-index: 2;
}
.bzb_compare_sect .compare_image {
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bzb_compare_sect .ui-slider-handle {
    position: absolute;
    height: 100%;
    width: 0.25em;
    transform: translate(-50%, 0);
    background-color: #ffffff;
    outline: none;
    cursor: col-resize;
    z-index: 2;
}
.bzb_compare_sect .ui-slider-handle:before {
    content: '';
    display: block;
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center;
    background-image: url(../img/drag.svg);
}
.bzb_compare_sect .compare_image_name {
    position: absolute;
    color: #1E1E1E;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 600;
    top: 1em;
    right: 0;
    width: max-content;
}
.bzb_compare_sect .ui-slider-range-min .compare_image_name {
    right: auto;
    left: 0;
}
