#experience-container {
    position: fixed;
    inset: 0;
    z-index: 25010;
    pointer-events: none;
}

.experience-player {
    position: fixed;
    left: max(28px, 4.5vw);
    right: auto;
    bottom: max(24px, 4.2vh);
    display: flex;
    align-items: center;
    gap: 20px;
    pointer-events: auto;
}

.experience-button {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.exp-ring,
.exp-spinner,
.exp-play {
    pointer-events: none;
}

.exp-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 50%;
}

.exp-ring::before {
    position: absolute;
    inset: -5px;
    border-right: 1px solid var(--orange);
    border-left: 1px solid var(--teal);
    border-radius: 50%;
    content: "";
}

.exp-spinner {
    position: absolute;
    inset: 8px;
    border-top: 1px solid var(--teal);
    border-right: 1px solid transparent;
    border-radius: 50%;
    animation: experienceSpin 6s linear infinite;
}

.exp-play {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
}

.experience-player.is-playing .exp-play {
    width: 14px;
    height: 16px;
    margin-left: 0;
    border: 0;
    background: linear-gradient(90deg, #fff 0 36%, transparent 36% 64%, #fff 64% 100%);
}

.experience-copy strong {
    display: block;
    margin-bottom: 7px;
    color: var(--teal-hot);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .21em;
    text-transform: uppercase;
}

.experience-copy span {
    display: block;
    max-width: 220px;
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
    line-height: 1.5;
}

@keyframes experienceSpin {
    to { transform: rotate(360deg); }
}

@media (hover: hover) and (pointer: fine) {
    body.access-custom-cursor .experience-button {
        cursor: pointer !important;
    }
}

@media (max-width: 640px) {
    .experience-player {
        left: 20px;
        right: auto;
        bottom: 20px;
    }

    .experience-copy {
        display: none;
    }
}
