.product-comparison .inside-header.--center {
    text-align: center;
    padding-bottom: 1rem;
    max-width: 740px;
}
.product-comparison__content {
    display: flex;
    justify-content: space-evenly;
    gap: 10rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}
.product-comparison h3 {
    font-size: 1.125rem;
}
.product-comparison p,
.product-comparison h4 {
    font-size: .938rem;
}
.product-comparison__content .--minimized-sidebar {
    display: none;
    height: 100%
}
.product-comparison__content .--minimized-sidebar img {
    align-self: center;
}
.compare-container {
    position: relative;
}
.product-comparison .--text-content {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    z-index: 1;
    text-align: center;
    position: absolute;
}
.product-comparison .--text-content.--left {
    top: 50%;
    transform: translate(-25%, -50%);
    left: 19%;
}
.product-comparison .--text-content.--right {
    top: 50%;
    transform: translate(25%, -50%);
    right: 19%;
}
.product-comparison .--text-content .--full-sidebar {
    width: 180px;
}
.product-comparison .--text-content .--minimized-sidebar {
    width: 35px;
}
.product-comparison .--text-content img {
    margin-bottom: 1rem;
}
.image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 10px;
}
.image-comparison .images-container {
    position: relative;
    display: flex;
}
.image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
}
.image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fff;
    left: 50%;
    translate: translateX(-50%);
}
.image-comparison .slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 47px;
    height: 47px;
    color: #fff;
    transform: translate(-45%, -50%);
}

@media only screen and (max-width: 800px) {
    .compare-container {
        position: relative;
        display: flex;
        flex-flow: wrap;
    }
    .product-comparison .--text-content {
        text-align: center;
        min-height: fit-content;
        position: relative;
        display: inline-block;
        width: 49%;
        box-sizing: border-box;
        padding: 0 1rem;
        vertical-align: top;
        flex: 50%;
    }
    .product-comparison .--text-content.--left {
        top: auto;
        transform: none;
        left: auto;
    }
    .product-comparison .--text-content.--right {
        top: auto;
        transform: none;
        right: auto;
        border-left: 1px solid #4EAED6;
    }
    .image-comparison {
        flex: 100%;
        margin-bottom: 2rem;
    }
    .product-comparison__content {
        justify-content: center;
        aspect-ratio: 1;
        flex-flow: column;
        min-height: auto;
    }
    .product-comparison .--text-content .--full-sidebar {
        width: 100%;
    }
    .product-comparison .--text-content.--align-right {
        text-align: center;
    }
    .product-comparison .--text-content {
        background: none;
        border-radius: 0;
    }
    .product-comparison .--text-content img {
        margin: 0 auto 1rem;
        max-width: 215px;
    }
    .product-comparison h3 {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .product-comparison__content {
        flex-flow: column;
    }
    .image-comparison img {
        border-radius: 0;
    }
}