body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    perspective: 1500px;
    overflow: hidden;
}

section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

#hero {
    visibility: visible;
}

.share-copy-feedback {
    position: absolute;
    right: calc(100% + 10px);
    bottom: 6px;
    padding: 6px 10px;
    border-radius: 14px;
    background: rgba(112, 47, 138, 0.9);
    color: #fff;
    font-family: Mona Sans Reg, sans-serif;
    font-size: 12px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.share-copy-feedback.--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media only screen and (min-width:992px) {
    .share-copy-feedback {
        bottom: 12px;
        font-size: 13px;
    }
}

.state-handle {
    display: none;
}

@media only screen and (min-width:992px) {
    .state-handle {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        width: 16px;
        height: 16px;
        border: 0;
        border-radius: 50%;
        background: #702f8a;
        box-shadow: 0 0 0 3px #fff, 0 6px 16px rgba(112, 47, 138, 0.35);
        transform: translate(-50%, -50%);
        cursor: grab;
        z-index: 2;
        transition: box-shadow .2s ease;
        touch-action: none;
        pointer-events: auto;
    }

    .state-handle:active {
        cursor: grabbing;
        box-shadow: 0 0 0 4px #fff, 0 8px 20px rgba(112, 47, 138, 0.45);
    }
}
