.row {
    position: relative;
}
.timestamp {
    position: absolute;
    width: min-content;
    font-size: 100px;
    font-weight: 600;
    font-family: 'Frank Ruhl Libre', serif;
    color: #b9b9b9;
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%) translateX(-30%);
}
.timestamp.left {
    transform: translateY(-50%) translateX(-30%) rotate(-90deg);
}
.timestamp.right {
    right: 0px;
    transform: translateY(-50%) translateX(30%) rotate(90deg);
}

.justify {
    text-align: justify;
}
.history-block {
    background-color: #fff;
    padding: 20px;
}
.history-block__description {
    color: #847e78;
    font-size: 16px;
    margin-bottom: 0px;
}
.history-block__description > span {
    font-size: 28px;
}
.history-block__description > span.bigger {
    font-size: 40px;
}
.history-block__description.p-left {
    padding-left: 30px;
}
.history-block__description.p-right {
    padding-right: 30px;
}
.history-block__highlight {
    padding: 20px;
}
.history-block__double.left {
    padding-right: 20px;
}
.history-block__double.right {
    padding-left: 20px;
}
.history-block__img {
    width: 100%;
    object-fit: cover;
}
.line-break.left {
    border-left: 2px solid #cdcdcd;
}
.line-break.right {
    border-right: 2px solid #cdcdcd;
}
.line-break.left-down {
    border-top: 2px solid #cdcdcd;
    border-left: 2px solid #cdcdcd;
}
.line-break.right-down {
    border-top: 2px solid #cdcdcd;
    border-right: 2px solid #cdcdcd;
}

.comparison-slider-wrapper {
	position: relative;
	width: 100%;
}
.comparison-slider {
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}
.comparison-slider > img {
    width: 100%;
    height: auto;
    display: block;
}
.comparison-slider .resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}
.comparison-slider .resize > img {
    display: block;
}
.divider {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: rgba(256, 256, 256, 0.2);
    left: 50%;
    top: 0;
    bottom: 0;
    margin-left: -2px;
    cursor: ew-resize;
}
.divider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: -9px;
    top: 50%;
    margin-top: -10px;
    background-color: white;
    transform: rotate(45deg);
    transition: all 0.1s ease-in-out;
}
.divider:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left:2px;
    top: 50%;
    margin-top: -6px;
    background-color: white;
    transform: rotate(45deg);
    transition: all 0.1s ease-in-out;
}
.divider.draggable:before {
    width: 30px;
    height: 30px;
    left: -14px;
    margin-top: -15px;
}
.divider.draggable:after {
    width: 20px;
    height: 20px;
    left: -9px;
    margin-top: -10px;
    background-color: #555;
}

@media (max-width: 1300px) {
    .history-block__double.left,
    .history-block__double.right {
        padding-right: 12px;
        padding-left: 12px;
    }
}
