.op-sidebarcircle {
    position: relative;
    height: calc(100vh * 5);
}

.op-sidebarcircle .wrapper {
    position: relative;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.5s;
}

.op-sidebarcircle .wrapper.hidden {
    opacity: 0;
	z-index: -10;
}

.op-circle-button {
	z-index: 99999;
}

.op-sidebarcircle .itempanel {
    transition: transform 0.5s;
    width: 100vw;
    transform: rotate(0deg);
    position: fixed;
    top: 25vh;
    left: -63vw;
    height: 100vh;
	pointer-events: none;
}

@media (min-width: 800px) {
    .op-sidebarcircle .itempanel {
        width: 75vw;
        left: -40vw;
    }
}

@media (min-width: 1200px) {
    .op-sidebarcircle .itempanel {
        width: 50vw;
        top: 5vh;
        left: -15vw;
    }
}

#center-image {
    transition: transform 0.5s;
}

.op-sidebarcircle object#center-image {
    pointer-events: none;
}

.op-sidebarcircle .itempanel .fluid-width-video-wrapper {
    height: 100%;
}

.op-sidebarcircle .outer-text-container {
    position: fixed;
    top: 20vh;
	right: 10%;
    width: 50vw;
    height: 80vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.op-sidebarcircle .outer-text {
    position: absolute;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s;
	z-index: 9999;
	pointer-events: none;
}

.op-sidebarcircle .outer-text.active {
    opacity: 1;
	pointer-events: auto;
}

.op-sidebarcircle .btn-controls {
    position: absolute;
    display: flex;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    top: 25%;
    gap: 60em;
}

.op-sidebarcircle .btn-controls button {
    color: black;
    scale: 10;
}