<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.xcompare {
	position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.xcompare .f-image.left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
}
.xcompare p {margin: 0;}
.xcompare .f-image img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    pointer-events: none;
}   
.xcompare .f-bar {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    cursor: pointer;
    transform: translateX(-50%);
    z-index: 2;
}
.xcompare .f-line {
    width: 8px;
    height: 100%;
    border: solid 2px #000;
    background-color: #fff;
}
.xcompare .f-arrow {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.xcompare .f-arrow svg {
    fill: #fff;
    stroke: #000;
}
.xcompare .f-arrow.left {
    left: -10px;
}
.xcompare .f-arrow.left svg {
    transform: rotate(180deg);
}
.xcompare .f-label {
    display: inline-block;
    position: absolute;
    top: 0;
    padding: 5px 10px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}
.xcompare .f-image.left .f-label {
    left: 0;
}
.xcompare .f-image.right .f-label {
    right: 0;
}
</pre></body></html>