@font-face {
    font-family: 'Saira';
    font-style: normal;
    font-weight: 800;
    font-stretch: expanded;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/saira/v23/memWYa2wxmKQyPMrZX79wwYZQMhs-OShhKMjjbU9uXuA79rFks8xlg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
        U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Saira';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/saira/v23/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFks8xlg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
        U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Hidden at its original CMS position until initTabsParentPlacement
moves it after the hero section ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â otherwise it flashes up top
before jumping down. Revealed by that same script. */
#tabsParent {
    display: none;
}

#hero {
    background: #363633;
    height: calc(100vh - 170px);
}

@media (max-height: 600px) {
    #hero {
        min-height: 550px;
    }
}

#hero h2 {
    font-family: Saira, sans-serif;
    font-size: clamp(4rem, 15vw, 240px);
    background-image: linear-gradient(90deg, #F1E67E 0%, #F9A262 33%, #EF466C 66%, #5BCAE8 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 300;
    transform: translateY(-2rem);
    /* h-full + flex with no width constraint makes this a full-bleed
invisible box at z-10, stacked above .hero-video's entire
subtree (a z-index:0 stacking context, so nothing inside it ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â
e.g. the play/pause button ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â can out-rank this via its own
z-index no matter how high). It's just decorative text with
nothing clickable inside, so let clicks pass through it. */
    pointer-events: none;
}

/* Intro + loop videos are stacked directly on top of each other and
crossfaded via opacity (see initHeroVideo below) rather than
swapped by hiding/showing, so there's never a blank frame between
the two while the loop video is buffering/seeking. Mobile poster
below shows instantly (parsed with the rest of the CSS, no JS
wait) and stays put underneath the intro video the whole time it's
loading ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â same reasoning as the desktop override further down,
just using a still frame pulled from the mobile cut instead. */
.hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background-image:
        url(https://assets.corsair.com/video/upload/f_auto/q_auto/ac_none,so_0/v1789074661/products/voxara/new_assets/Voxara_Hero_Intro_Mobile.png);
    background-size: cover;
    background-position: center;
}

/* Groups each breakpoint's intro/loop pair with its own play/pause
button (see initVideoPlayPauseButtons, which scopes a button to its
own container's <video> siblings) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â fills the same area .hero-video
    did before these were split out. */
.hero-video-group {
    position: absolute;
    inset: 0;
}

.hero-video__el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.hero-video__el.is-active {
    opacity: 1;
}

/* Voice in Focus intro + loop videos: same stacked/crossfade setup as
    .hero-video__el above (see initVoiceInFocusVideo). */
.voice-in-focus-video__el {
    opacity: 0;
}

.voice-in-focus-video__el.is-active {
    opacity: 1;
}

/* Desktop video-preview button (bottom-right of #hero) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â a small
    poster + play-icon card that opens #hero-video-modal. */
.video-preview-btn {
    width: 180px;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.video-preview-btn:hover {
    border-color: #fff;
    transform: scale(1.03);
}

.video-preview-btn__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-preview-btn__play {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
}

.video-preview-btn__play svg {
    margin-left: 2px;
    /* optically center the play triangle */
}

/* Hero video modal. Hidden via visibility (not display) so its
    fade/scale transitions can run on open + close alike; `.is-open`
    is toggled by initHeroVideoModal. .video-modal__panel's
    top/left/width/height are written directly (inline styles) by
    that same JS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â it animates the panel from the clicked trigger's
    on-screen rect to centered/full-size, FLIP-style, and these four
    properties are what's transitioned. */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
}

.video-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.is-open .video-modal__backdrop {
    opacity: 1;
}

.video-modal__panel {
    position: fixed;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
    transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    z-index: 10000000;
}

.video-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.is-open .video-modal__close {
    opacity: 1;
}

#studio-grade {
    background-image:
        url(https://assets.corsair.com/image/upload/f_auto/q_auto/products/voxara/BLACK/studio-grade-sound.png);
    background-size: cover;
    background-position: center;
    height: 130vh;
}

#studio-grade h2 {
    color: #FFEDA6;
}

#studio-grade .callout-subtext {
    margin-top: .5rem;
}

#voice-in-focus {
    height: 100vh;
}

#audio-comes-together {
    height: 100vh;
    overflow: hidden;
}

#audio-comes-together .bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        url(https://assets.corsair.com/image/upload/f_auto/q_auto/products/voxara/VOXARA_BLACK_LIFESTYLE_10.png);
    background-position: right;
    background-size: cover;
    filter: blur(0px);
    will-change: filter;
}

#audio-comes-together-callout {
    position: relative;
    z-index: 1;
}

#audio-comes-together-cards {
    z-index: 2;
}

#onboard-controls {
    min-height: 100vh;
    background: black;
}

@media (min-width: 768px) {
    .hero-video {
        /* Shows instantly (parsed with the rest of the CSS, no JS wait)
    and stays put underneath the video the whole time it's
    loading. This replaces using the intro video's `poster`
    attribute for the same purpose ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â most browsers clear a
    video's poster the moment it starts actively loading, even
    before a real frame is ready to paint, which produced a
    poster-then-back-to-grey flash right before playback began. */
        background-image:
            url(https://assets.corsair.com/video/upload/f_auto/q_auto/ac_none,so_0/products/voxara/Voxara_Hero_Intro.png);
        background-size: cover;
        background-position: center;
    }

    #onboard-controls .image-container {
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

#onboard-controls ul {
    padding-bottom: 60vh;
}

#onboard-controls ul li {
    min-height: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

#onboard-controls ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: url(https://assets.corsair.com/image/upload/f_auto/q_auto/products/voxara/arrow.svg);
    background-repeat: no-repeat;
    margin-left: -2.5rem;
    opacity: 0;
}

#onboard-controls ul li.active {
    color: white;
}

#onboard-controls ul li.active:before {
    margin-left: -1.5rem;
    top: 0.5rem;
}

#onboard-controls ul li.active span,
#onboard-controls .image-container img.active,
#onboard-controls .image-container video.active,
#onboard-controls ul li.active:before {
    opacity: 1;
}

#onboard-controls .image-container img,
#onboard-controls .image-container video,
#onboard-controls ul li,
#onboard-controls ul li:before {
    transition: 0.3s ease-out;
}

/* The RGB video's play/pause button is stacked in .image-container
    alongside 3 unrelated images (see markup) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â only show it while
    that video is actually the active/visible layer. */
#onboard-controls .image-container .video-button-container {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-out;
}

#onboard-controls .image-container video.active+.video-button-container {
    opacity: 1;
    pointer-events: auto;
}

#voxara---3-card-callouts {
    background: black !important;
}

.wave-logo {
    height: 60px;
    justify-self: left;
}

.gradient-text {
    background-image: linear-gradient(90deg, #FFFCFF 0%, #F1E67E 54.01%, #F0A16A 108.02%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.bottom-20 {
    bottom: 5rem;
}

.left-20 {
    left: 5rem;
}

.right-20 {
    right: 5rem;
}

.font-extrabold {
    font-weight: 800;
}

.w-min {
    width: min-content;
}

.w-max {
    width: max-content;
}

.gap-20 {
    gap: 5rem;
}

.gap-60 {
    gap: 15rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mb-60 {
    margin-bottom: 15rem;
}

.text-header-5.leading-none {
    line-height: 1;
}

.text-grey {
    color: #8C8C8E;
}

.text-light-yellow {
    color: #FFEDA6;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0, 0, 0.3, 1), transform 0.8s cubic-bezier(0, 0, 0.3, 1);
}

.fade-up.delay-100 {
    transition-delay: 0.1s;
}

.fade-up.delay-200 {
    transition-delay: 0.2s;
}

.fade-up.delay-300 {
    transition-delay: 0.3s;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.Tabs_tab-list-wrapper__KWthT .Tabs_tab-product-title__jgnil {
    font-size: 18px;
    line-height: 1.2;
}

.PDP_below-the-overview-tab__dnsoG #tabsParent ul li {
    font-size: 12px;
    line-height: 1.2;
}

[class*="PDP_pdp-left-container"],
[class*="ProductGallery_pdp-gallery"],
[class*="Ribbon_slider-wrapper"],
[class*="ProductContentCarousel_product-content-slider"],
html {
    overflow-anchor: none;
}

#onboard-controls h2 {
    margin-top: 15rem;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        transition-duration: 0.01ms !important;
        transform: none;
    }
}

@media (max-width: 768px) {
    #hero a {
        margin-left: auto;
        margin-right: auto;
    }

    /* Scoped to the "Bottom Left of container" CTA block specifically
    (see .hero-cta in markup) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â was previously `#hero .absolute`,
    which matched every Tailwind `.absolute` element in #hero,
    including the hero video's play/pause buttons, and stretched/
    centered those too. */
    #hero .hero-cta {
        width: 100%;
        justify-items: center;
        left: 0;
        text-align: center;
    }

    #hero h3 {
        font-family: 'Saira Expanded', sans-serif;
        font-size: 1.125rem
    }

    #hero p,
    #studio-grade p {
        font-size: .75rem
    }

    #studio-grade .copy {
        height: 50%;
    }

    #audio-comes-together-callout h2 {
        font-size: 1.5rem;
    }

    /* Lighter, phone-sized replacements for the desktop background
    assets above, swapped in purely via CSS so mobile never
    downloads the heavier desktop images. */
    #studio-grade {
        background-image: url(https://assets.corsair.com/image/upload/products/voxara/vox_studio_grade_mobile.png);
    }

    #audio-comes-together .bg-layer {
        background-image: url(https://assets.corsair.com/image/upload/products/voxara/audio_comes_together_mobile.png);
        background-position: center;
    }

    .wave-logo {
        height: 40px;
        justify-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    #tabsParent {
        position: relative;
    }

    #tabsParent button:has(.chevron-left),
    #tabsParent button:has(.chevron-right) {
        position: absolute;
        top: 0.35rem;
    }

    #tabsParent button:has(.chevron-left) {
        left: 0.5rem;
    }

    #tabsParent button:has(.chevron-right) {
        right: 0.5rem;
    }
}

div#container-classes {
    width: 100%;
}

.ProductGallery_pdp-gallery__bElxa {
    min-height: 600px;
}

@media (max-width: 1180px) {
    .PDP_below-the-overview-tab__dnsoG {
        overflow-x: unset;
    }

    .ProductGallery_pdp-gallery__bElxa {
        min-height: 350px;
    }
}