* {
}


.c-video {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    text-align: left;
    row-gap: 2rem;
}

.c-video[class*=c-video--single-vertical] {
    flex-direction: column;
}

[class*=c-video--single-vertical] .c-video__content {
    width: 100%;
}

.c-video--single-vertical-large .c-video__content {
    text-align: center;
    align-self: center;
    max-width: 50rem;
}

[class*=c-video--single-vertical] .c-video__content-instance {
    position: relative;
}

.c-video--gallery {
    flex-direction: column;
}

.c-video--gallery .c-video__content-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.c-video--gallery .c-video__content-instance {
    position: relative;
}

.c-video--gallery .c-video__content-instance .c-video__video-description {
    display: none;
}

.c-video--gallery .c-video__content-instance .c-video__video-title {
    font-size: calc(1.25rem*var(--scale, 1)); 
    margin: 0;
}

.c-video--gallery .c-video__content-instance img {
    margin-bottom: 1.25rem;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.c-video.c-video--alternative {
    flex-direction: column;
}

.c-video__gallery-thumbnail-button {
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.c-video--gallery .c-video__content-inner {
    display: flex;
    overflow: auto;
    gap: 1rem;
}

.c-video--gallery .c-video__content-inner .c-video__content-instance {
    min-width: 150px;
    padding: 0.5rem;
}

.c-video--gallery .c-video__content-inner .c-video__content-instance.selected {
   background-color: rgb(245, 245, 245);
}

@media screen and (min-width: 768px) {
    .c-video:not(.c-video--gallery, [class*=c-video--single-vertical]) {
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-template-rows: auto 0;
        grid-template-areas: "text video" "text description";
        display: grid;
        column-gap: 4rem;
        row-gap: 0rem;
    }

    .c-video.c-video--list {
        grid-template-columns: 3fr 5fr;
    }

    .c-video__content {
        grid-area: text;
    }

    .c-video__videos {
        grid-area: video;
    }

    .c-video__feature-description {
        grid-area: description;
    }

    .c-video.c-video--alternative {
        grid-template-columns: 4fr 3fr;
        grid-template-areas: "video text" "description text";
    }

    .c-video--alternative.c-video--compact-list {
        grid-template-columns: 5fr 300px;
    }

    .c-video.c-video--alternative .c-video__content {
        margin-top: 4rem;
    }

    .c-video--list-compact .c-video__video-title-button {
        background-color: var(--background, white);
    }

    .c-video--list-compact .c-video__content-inner {
        align-items: start;
        flex-direction: column;
    }

    .c-video--gallery .c-video__content-inner {
        display: grid;
        overflow: none;
        gap: 2rem;
        align-items: stretch;
    }
    
    .c-video--gallery .c-video__content-inner .c-video__content-instance {
        min-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .c-video--list-compact .c-video__video-title-button {
        min-width: 150px;
        background-color: rgb(249, 249, 249);
    }

    .c-video--list-compact .c-video__content-inner {
        flex-direction: row;
        overflow: auto;
    }
}

.c-video__feature-description {
    position: relative;
}

.c-video__feature-description .c-video__content-instance {
    opacity: 1;
    transition: 300ms;
}

.c-video__feature-description .c-video__content-instance.hidden {
    opacity: 0;
    pointer-events: none;
}

.c-video__feature-description .c-video__video-description {
    max-width: 45rem;
}

.c-video--alternative {
    border-top: none;
    column-gap: 2.25rem;
}

.c-video.c-video--compact-list {
    grid-template-rows: auto auto;
    row-gap: 2rem;
}

.c-video.c-video--alternative .c-video__content {
    padding-left: 2rem;
    border-left: 3px solid var(--primary);
}

.c-video .c-video__videos {
    display: flex;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    transition: 300ms;
}

.c-video .c-video__videos .c-video__video-instance {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-video .c-video__videos .c-video__video-instance > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.c-video .c-video__videos .c-video__video-instance.loading > img {
    opacity: 1;
    pointer-events: all;
}

.c-video .c-video__videos .c-video__video-instance.loading::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text, black);
    background-color: var(--background, white);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    z-index: 15;
}

.c-video .c-video__videos .c-video__video-instance > img {
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    object-fit: cover;
}


.c-video.c-video--alternative .c-video__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: none;
    padding-left: 0;
}

.c-video__content-inner {
    position: relative;
    flex-grow: 1;
}

.c-video--full .c-video__content-instance.hidden {
    opacity: 0;
    pointer-events: none;
}

.c-video__content-instance {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.c-video .c-video__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: none;
    padding-left: 0;
    justify-content: space-between;
}

.c-video__outer {
    border-top: .25rem solid var(--primary);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
}

.c-video__outer--no-border {
    border-top: none;
    padding-top: 0;
}

.c-video__outer h2 {
    margin-bottom: 3.75rem;
}

.c-video.c-video--alternative .c-video__content-instance {
    padding-left: 2rem;
    border-left: .25rem solid var(--primary);
}

.c-video__button:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.c-video__button svg {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
    flex: unset;
}

.c-video__button--prev svg {
    transform: rotate(180deg);
}

.c-video__button {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-video--list .c-video__content-inner {
    display: flex;
    flex-direction: column;
    gap: calc(1.0rem*var(--scale, 1));
}

.c-video--list .c-video__content-instance {
    position: relative;
    opacity: 1;
}

.c-video--list .c-video__content-instance:not(:first-child) {
    border-top: .25rem solid var(--primary);
    padding-top: calc(1.4rem*var(--scale, 1));
}

.c-video__video-description {
    overflow: hidden;
}

.c-video--list .c-video__video-title {
    font-size: calc(1.7rem*var(--scale, 1));
    cursor: pointer;
    margin-bottom: calc(0.35rem*var(--scale, 1));
}

.c-video--list .c-video__video-title svg {
    height: calc(1.1rem*var(--scale, 1));
    width: calc(1.1rem*var(--scale, 1));
    margin-left: 0.75rem;
    transition: 300ms;
    transform: rotate(0deg);
    transform-origin: 50% 40%;
}

.c-video--list .c-video__video-title-button.active svg {
    transform: rotate(90deg);
}



.c-video__buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}


.c-video__video-title-button {
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    text-align: left;
}


.c-video--list-compact .c-video__content-inner {
    display: flex;
    gap: 1rem;
}

.c-video .c-video__feature-description .c-video__content-instance {
    border: none;
    padding-left: 0;
}

.c-video--list-compact .c-video__video-title-button {
    color: var(--text, black);
    padding: 0.7rem 1rem;
    transition: 300ms;
    text-align: left;
    width: 100%;
}

.c-video--list-compact .c-video__video-title-button h3 {
    transition: 0ms;
    font-size: calc(1.4rem*var(--scale, 1));
    text-align: left;
}

.c-video--list-compact .c-video__video-title-button.active {
    background-color: var(--text, #f0f0f0);
    color: var(--background, black)
}

.c-video__button:is(:focus-visible, :hover):not(:disabled) {
    background-color: var(--primary);
}

.c-video__video-title-button:focus-visible {
    outline: 2px dotted var(--primary);
}

.c-video__video-title-button:hover {
    text-decoration: underline;
}

.plyr__controls>*:is(:focus-visible, :focus-within) {
    outline: 2px dotted var(--primary);
}

.gallery__item>figure>.plyr>.plyr__control--overlaid {
    top: 50%;
}

.plyr__controls__item.plyr__progress__container {
    flex-grow: 1;
}

.c-video--sbs .c-video__videos .c-video__video-instance {
    position: relative;
    aspect-ratio: 16/9;
}

.c-video.c-video--sbs {
    display: flex;
    flex-direction: column;
}

.c-video--sbs .c-video__content-instance {
    position: relative;
}

.c-video--sbs .c-video__videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.c-video--sbs .c-video__videos {
    aspect-ratio: unset;
}

.c-video--sbs .c-video__videos .c-video__video-instance {
    height: unset;
}

.c-video--sbs .c-video__video-wrapper {
    display: flex;
    flex-direction: column;
}

.c-video--sbs .c-video__video-title {
    line-height: normal;
    margin-bottom: 0;
}

.plyr__poster {
    pointer-events: none;
}

@media screen and (max-width: 1023px) {
    .c-video__outer h2 {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .c-video--sbs .c-video__videos {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
}
/*# sourceMappingURL=local.css.map */
