/* TUTORIAL */

.tutorial {
    height: 100%;
}

.tutorial__up {
    height: calc(100% - 120px);
    /* min-height: calc(100% - 120px); */
}

.tutorial__down {
    height: 120px;
    /* outline: var(--outline); */
    box-shadow: var(--box-shadow);
    position: relative;
}

.tutorial__left {
    background-color: var(--blue);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* outline: var(--outline); */
    box-shadow: var(--box-shadow);
    padding: 20px;
    position: relative;
}

.is-room-2 .tutorial__left {
    background-color: var(--red);
}

.tutorial__right {
    display: flex;
    flex-direction: column;
    padding: 20px;

    display: none;
}

.tutorial__partition {
    margin: auto 0;
}

.tutorial__nav {
    margin-top: auto;
}

.tutorial__ocarina {
    margin: auto;
    max-height: 700px;
    height: 100%;
}

.tutorial__ocarina-item {
    height: 50%;
}

.tutorial__switch {
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: 1;
}

.tutorial__legend {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.tutorial__piano {
    height: 100%;
}

/* .tutorial__piano div[data-overlayscrollbars-viewport*=overflowXScroll] {
    display: none;
} */


@media screen and (min-width: 1024px) {

    /* .tutorial__up {
        display: flex;
    }

    .tutorial__left {
        width: 75%;
    }
    
    .tutorial__right {
        width: 25%;
    } */

    .tutorial__ocarina {
        display: flex;
        margin: 0 auto;
        max-width: 1200px;
    }

    .tutorial__ocarina-item {
        height: 100%;
        width: 50%;
    }

    .tutorial__legend {
        position: static;
    }

}