.fpn-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #DED9B8;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 9999;

    opacity: 1;
    visibility: visible;

    transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0s,
    background 0.25s ease;
}

/* Hidden state */
.fpn-arrow.fpn-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0s linear 0.25s,
        background 0.25s ease;
}

/* Slight slide effect */
.fpn-arrow--prev.fpn-hidden {
    transform: translateY(-50%) translateX(-10px);
}

.fpn-arrow--next.fpn-hidden {
    transform: translateY(-50%) translateX(10px);
}

.fpn-arrow--prev {
    left: 12px;
}

.fpn-arrow--next {
    right: 12px;
}

.fpn-arrow:hover {
    background: #DED9B8;
    color: #ffffff;
}

.fpn-arrow__icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.fpn-arrow__label {
    display: none;
}

@media (max-width: 768px) {
    body.single {
        overscroll-behavior-x: contain;
		touch-action: pan-y;
    }
}

@media (max-width: 600px) {
    .fpn-arrow--prev {
        left: 6px;
    }

    .fpn-arrow--next {
        right: 6px;
    }

    .fpn-arrow {
        width: 40px;
        height: 40px;
    }
}