.disabled {
    opacity: 0.35;
}
.controls {
    z-index: 50;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 110%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.controls > div {
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ultraDark50);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.controls > div > * {
    height: 30%;
    transform: translateX(1px);
}
.controls > div img {
    object-fit: contain;
}
.controls > div:first-child img {
    rotate: 180deg;
}
