.parallax-interactive {
    position: fixed;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
}

.parallax-interactive__close {
    position: absolute;
    right: 57px;
    top: 41px;

    z-index: 1;

    background-color: transparent;
    border: none;

    font-size: 15.4px;

    color: #fff;

    text-transform: uppercase;

    display: flex;
    align-items: center;

    padding: 0;

    cursor: pointer;
}

.parallax-interactive__close svg {
    margin-left: 10px;
}

.parallax-interactive__sequence {
    background-color: #000;

    width: 100%;
    height: 100%;
}

.parallax-interactive__sequence img {
    position: absolute;
    left: 0;
    top: 0;

    visibility: hidden;

    object-fit: cover;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.parallax-interactive__sequence img.active {
    visibility: visible;
}

.parallax-interactive__range {
    position: absolute;
    bottom: 20px;
    left: 50%;

    transform: translate(-50%);

    width: 100%;
}

.parallax-interactive__range-control {
    width: 444px;
    display: block;

    margin: 0 auto;

    position: relative;
}

.parallax-interactive__range-arrow {
    position: absolute;
    top: 0;

    opacity: 0;
    transition: opacity .2s;
}

.parallax-interactive__range-arrow img {
    width: 48px;
}

.parallax-interactive__range-arrow.is-active {
    opacity: 1;
}

.parallax-interactive__range-arrow.--to-right {
    left: -10px;
    transform: translate(-100%);
}

.parallax-interactive__range-arrow.--to-left {
    right: -10px;
    transform: translate(100%);
}

.parallax-interactive__range-hint {
    color: #fff;
    margin-top: 13px;

    font-size: 18px;
    line-height: 32px;

    text-align: center;
} 

.parallax-interactive__range.is-vertical {
    position: absolute;
    bottom: 50%;
    right: 10%;
    left: auto;
    top: auto;

    transform: rotate(90deg) translateX(50%);
    transform-origin: bottom right;

    width: auto;
}

.parallax-interactive__range.is-vertical.is-reversed {
    transform: rotate(-90deg) translateX(50%);
}

.parallax-interactive__bubbles {
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
}

.parallax-interactive__bubble {
    position: absolute;

    background-color: #fff;
    border-radius: 15px;

    padding: 72px 41px 40px 71px;

    box-sizing: border-box;

    font-size: 16px;
    line-height: 28px;

    color: #000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.parallax-interactive__bubble.is-active {
    opacity: 1;
    visibility: visible;
}

.parallax-interactive__bubble-icon {
    width: 88px;

    position: absolute;
    top: 32px;
    left: 32px;

    opacity: .2;
}

.parallax-interactive__bubble.corner-top-left {
    border-top-left-radius: 0;
}

.parallax-interactive__bubble.corner-bottom-left {
    border-bottom-left-radius: 0;
}

.parallax-interactive__bubble.corner-top-right {
    border-top-right-radius: 0;
}

.parallax-interactive__bubble.corner-bottom-right {
    border-bottom-right-radius: 0;
}

[data-bubble-id="apple-1"] {
    right: 12%;
    top: 27%;

    max-width: 314px;
}

[data-bubble-id="apple-2"] {
    right: 15%;
    top: 25%;

    max-width: 341px;
}

[data-bubble-id="apple-3"] {
    left: 15%;
    top: 34%;

    max-width: 430px;
}

[data-bubble-id="tomato-1"] {
    left: 50%;
    top: 50%;

    max-width: 430px;

    transform: translate(-50%, -50%);
}

[data-bubble-id="tomato-harvester-1"] {
    left: 15%;
    top: 44%;

    max-width: 527px;
}

[data-bubble-id="tomato-harvester-2"] {
    left: 12%;
    top: 31%;

    max-width: 472px;
}

[data-bubble-id="tomato-harvester-3"] {
    left: 50%;
    top: 50%;

    max-width: 411px;

    transform: translate(-50%, -50%);
}

[data-bubble-id="orange-parallax-1"] {
    left: 12%;
    top: 31%;

    max-width: 472px;
}

[data-bubble-id="orange-parallax-2"] {
    right: 15%;
    top: 25%;

    max-width: 341px;
}

@media (max-height: 500px), (max-width: 767px) {
    .parallax-interactive__range-control {
        width: 266px;
    }

    .parallax-interactive__range.is-vertical {
        bottom: 20px;
        right: 70px;
        transform: rotate(90deg);
    }

    .parallax-interactive__range.is-vertical.is-reversed {
        transform: rotate(-90deg) translate(calc(100% + 40px));
    }

    .parallax-interactive__range.is-vertical .parallax-interactive__range-control {
        width: 180px;
    }

    .parallax-interactive__range-arrow img {
        width: 32px;
    }

    .parallax-interactive__range-hint {
        font-size: 10px;
        line-height: 16px;
    }

    .parallax-interactive__close {
        top: 30px;
        right: 16px;

        font-size: 8px;
        line-height: 10px;
    }

    .parallax-interactive__bubble {
        padding: 40px 20px 20px 40px;

        font-size: 12px;
        line-height: 20px;
    }

    .parallax-interactive__bubble-icon {
        width: 48px;
        top: 20px;
        left: 20px;
    }

    [data-bubble-id="apple-1"] {
        max-width: 199px;
    }
    
    [data-bubble-id="apple-2"] {
        max-width: 206px;
    }
    
    [data-bubble-id="apple-3"] {
        max-width: 262px;
    }
    
    .parallax-interactive__bubble.corner-top-left::after {    
        top: -7px;
        left: -7px;
    }
    
    .parallax-interactive__bubble.corner-bottom-left::after {    
        bottom: -7px;
        left: -7px;
    }
    
    .parallax-interactive__bubble.corner-top-right::after {
        top: -7px;
        right: -7px;
    }
}