/* Image Compare */
.image-comparer {
    position: relative;
    width: 480px;
    height: 320px;
    border: 2px solid white;
    display: flex;
}

.image-comparer .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 480px 100%;
}

.image-comparer .slider {
    position: absolute;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0.3);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-comparer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 320px;
    background: white;
    cursor: pointer;
}

.image-comparer .slider::-moz-range-thumb {
    width: 6px;
    height: 320px;
    background: white;
    cursor: pointer;
}

.image-comparer .slider-button {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 18px);
    top: calc(50% - 18px);
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Google Maps */
.map-responsive {
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

