@keyframes plyr-progress {
    to {
        background-position: 25px 0;
    }
}

@keyframes plyr-popup {
    0% {
        transform: translateY(10px);

        opacity: 0.5;
    }

    to {
        transform: translateY(0);

        opacity: 1;
    }
}

@keyframes plyr-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.plyr {
    font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.7;

    position: relative;
    z-index: 0;

    display: flex;
    flex-direction: column;

    min-width: 200px;
    max-width: 100%;
    height: 100%;

    transition: box-shadow 0.3s ease;

    text-shadow: none;

    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: subpixel-antialiased;
    align-items: center;
    direction: ltr;
    font-variant-numeric: tabular-nums;
}

.plyr audio,
.plyr iframe,
.plyr video {
    display: block;

    width: 100%;
    height: 100%;
}

.plyr button {
    font: inherit;
    line-height: inherit;

    width: auto;
}

.plyr:focus {
    outline: 0;
}

.plyr--full-ui {
    box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui ::after,
.plyr--full-ui ::before {
    box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
    touch-action: manipulation;
}

.plyr__badge {
    font-size: 9px;
    line-height: 1;

    padding: 3px 4px;

    color: #fff;
    border-radius: 2px;
    background: #4a5764;
}

.plyr--full-ui ::-webkit-media-text-track-container {
    display: none;
}

.plyr__captions {
    font-size: 14px;

    position: absolute;
    bottom: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 10px;

    transition: transform 0.4s ease-in-out;
    animation: plyr-fade-in 0.3s ease;
    text-align: center;

    color: #fff;
}

.plyr__captions .plyr__caption {
    line-height: 185%;

    padding: 0.2em 0.5em;

    white-space: pre-wrap;

    border-radius: 2px;
    background: rgba(0, 0, 0, 0.8);
            box-decoration-break: clone;

    -webkit-box-decoration-break: clone;
}

.plyr__captions .plyr__caption div {
    display: inline;
}

.plyr__captions span:empty {
    display: none;
}

@media (min-width: 480px) {
    .plyr__captions {
        font-size: 16px;

        padding: 20px;
    }
}

@media (min-width: 768px) {
    .plyr__captions {
        font-size: 18px;
    }
}

.plyr--captions-active .plyr__captions {
    display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
    transform: translateY(-40px);
}

.plyr__control {
    position: relative;

    overflow: visible;

    padding: 7px;

    cursor: pointer;
    transition: all 0.3s ease;

    color: inherit;
    border: 0;
    border-radius: 3px;
    background: 0 0;

    flex-shrink: 0;
}

.plyr__control svg {
    display: block;

    width: 18px;
    height: 18px;

    pointer-events: none;

    fill: currentColor;
}

.plyr__control:focus {
    outline: 0;
}

.plyr__control.plyr__tab-focus {
    outline: 0;
    box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
}

a.plyr__control {
    text-decoration: none;
}

a.plyr__control::after,
a.plyr__control::before {
    display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed {
    display: none;
}

.plyr--full-ui ::-webkit-media-controls {
    display: none;
}

.plyr__controls {
    display: flex;

    text-align: center;

    align-items: center;
    justify-content: flex-end;
}

.plyr__controls .plyr__progress__container {
    flex: 1;

    min-width: 0;
}

.plyr__controls .plyr__controls__item {
    margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
    margin-right: auto;
    margin-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
    padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
    padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
    padding-left: 0;
}

.plyr__controls:empty {
    display: none;
}

.plyr [data-plyr="airplay"],
.plyr [data-plyr="captions"],
.plyr [data-plyr="fullscreen"],
.plyr [data-plyr="pip"] {
    display: none;
}

.plyr--airplay-supported [data-plyr="airplay"],
.plyr--captions-enabled [data-plyr="captions"],
.plyr--fullscreen-enabled [data-plyr="fullscreen"],
.plyr--pip-supported [data-plyr="pip"] {
    display: inline-block;
}

.plyr__menu {
    position: relative;

    display: flex;
}

.plyr__menu .plyr__control svg {
    transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded="true"] .plyr__tooltip {
    display: none;
}

.plyr__menu__container {
    font-size: 16px;

    position: absolute;
    z-index: 3;
    right: -3px;
    bottom: 100%;

    margin-bottom: 10px;

    animation: plyr-popup 0.2s ease;
    text-align: left;
    white-space: nowrap;

    color: #4a5764;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.plyr__menu__container > div {
    overflow: hidden;

    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
    position: absolute;
    top: 100%;
    right: 15px;

    width: 0;
    height: 0;

    content: "";

    border: 4px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.9);
}

.plyr__menu__container [role="menu"] {
    padding: 7px;
}

.plyr__menu__container [role="menuitem"],
.plyr__menu__container [role="menuitemradio"] {
    margin-top: 2px;
}

.plyr__menu__container [role="menuitem"]:first-child,
.plyr__menu__container [role="menuitemradio"]:first-child {
    margin-top: 0;
}

.plyr__menu__container .plyr__control {
    font-size: 14px;

    display: flex;

    width: 100%;
    padding: 4px 11px;

    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;

    color: #4a5764;

    align-items: center;
}

.plyr__menu__container .plyr__control > span {
    display: flex;

    width: 100%;

    align-items: inherit;
}

.plyr__menu__container .plyr__control::after {
    position: absolute;
    top: 50%;

    content: "";
    transform: translateY(-50%);

    border: 4px solid transparent;
}

.plyr__menu__container .plyr__control--forward {
    padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
    right: 5px;

    border-left-color: rgba(74, 87, 100, 0.8);
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,
.plyr__menu__container .plyr__control--forward:hover::after {
    border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
    font-weight: 500;

    position: relative;

    width: calc(100% - 14px);
    margin: 7px;
    margin-bottom: 3px;
    padding-left: 28px;
}

.plyr__menu__container .plyr__control--back::after {
    left: 7px;

    border-right-color: rgba(74, 87, 100, 0.8);
}

.plyr__menu__container .plyr__control--back::before {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    overflow: hidden;

    height: 1px;
    margin-top: 4px;

    content: "";

    background: rgba(114, 133, 151, 0.2);
    box-shadow: 0 1px 0 #fff;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,
.plyr__menu__container .plyr__control--back:hover::after {
    border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role="menuitemradio"] {
    padding-left: 7px;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]::after,
.plyr__menu__container .plyr__control[role="menuitemradio"]::before {
    border-radius: 100%;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]::before {
    display: block;

    width: 16px;
    height: 16px;
    margin-right: 10px;

    content: "";
    transition: all 0.3s ease;

    background: rgba(0, 0, 0, 0.1);

    flex-shrink: 0;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]::after {
    top: 50%;
    left: 12px;

    width: 6px;
    height: 6px;

    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-50%) scale(0);

    opacity: 0;
    border: 0;
    background: #fff;
}

.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
    background: #00b3ff;
}

.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::after {
    transform: translateY(-50%) scale(1);

    opacity: 1;
}

.plyr__menu__container .plyr__control[role="menuitemradio"].plyr__tab-focus::before,
.plyr__menu__container .plyr__control[role="menuitemradio"]:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
    display: flex;
    overflow: hidden;

    margin-right: -5px;
    margin-left: auto;
    padding-left: 25px;

    pointer-events: none;

    align-items: center;
}

.plyr--full-ui input[type="range"] {
    display: block;

    width: 100%;
    height: 19px;
    margin: 0;
    padding: 0;

    transition: box-shadow 0.3s ease;

    color: #00b3ff;
    border: 0;
    border-radius: 26px;
    background: 0 0;

    -webkit-appearance: none;
}

.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;

    -webkit-user-select: none;
            user-select: none;
    -webkit-transition: box-shadow 0.3s ease;
            transition: box-shadow 0.3s ease;

    border: 0;
    border-radius: 2.5px;
    background: 0 0;
    background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
    position: relative;

    width: 13px;
    height: 13px;
    margin-top: -4px;

    -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;

    border: 0;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);

    -webkit-appearance: none;
}

.plyr--full-ui input[type="range"]::-moz-range-track {
    height: 5px;

    user-select: none;
    -moz-transition: box-shadow 0.3s ease;
         transition: box-shadow 0.3s ease;

    border: 0;
    border-radius: 2.5px;
    background: 0 0;
}

.plyr--full-ui input[type="range"]::-moz-range-thumb {
    position: relative;

    width: 13px;
    height: 13px;

    -moz-transition: all 0.2s ease;
         transition: all 0.2s ease;

    border: 0;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
}

.plyr--full-ui input[type="range"]::-moz-range-progress {
    height: 5px;

    border-radius: 2.5px;
    background: currentColor;
}

.plyr--full-ui input[type="range"]::-ms-track {
    height: 5px;

    -ms-user-select: none;
        user-select: none;
    -ms-transition: box-shadow 0.3s ease;
        transition: box-shadow 0.3s ease;

    color: transparent;
    border: 0;
    border-radius: 2.5px;
    background: 0 0;
}

.plyr--full-ui input[type="range"]::-ms-fill-upper {
    height: 5px;

    -ms-user-select: none;
        user-select: none;
    -ms-transition: box-shadow 0.3s ease;
        transition: box-shadow 0.3s ease;

    border: 0;
    border-radius: 2.5px;
    background: 0 0;
}

.plyr--full-ui input[type="range"]::-ms-fill-lower {
    height: 5px;

    -ms-user-select: none;
        user-select: none;
    -ms-transition: box-shadow 0.3s ease;
        transition: box-shadow 0.3s ease;

    border: 0;
    border-radius: 2.5px;
    background: 0 0;
    background: currentColor;
}

.plyr--full-ui input[type="range"]::-ms-thumb {
    position: relative;

    width: 13px;
    height: 13px;
    margin-top: 0;

    -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;

    border: 0;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
}

.plyr--full-ui input[type="range"]::-ms-tooltip {
    display: none;
}

.plyr--full-ui input[type="range"]:focus {
    outline: 0;
}

.plyr--full-ui input[type="range"]::-moz-focus-outer {
    border: 0;
}

.plyr--full-ui input[type="range"].plyr__tab-focus::-webkit-slider-runnable-track {
    outline: 0;
    box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
}

.plyr--full-ui input[type="range"].plyr__tab-focus::-moz-range-track {
    outline: 0;
    box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
}

.plyr--full-ui input[type="range"].plyr__tab-focus::-ms-track {
    outline: 0;
    box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
}

.plyr__poster {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    transition: opacity 0.2s ease;

    opacity: 0;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
    opacity: 1;
}

.plyr__time {
    font-size: 14px;
}

.plyr__time + .plyr__time::before {
    margin-right: 10px;

    content: "\2044";
}

@media (max-width: 767px) {
    .plyr__time + .plyr__time {
        display: none;
    }
}

.plyr__tooltip {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;

    position: absolute;
    z-index: 2;
    bottom: 100%;
    left: 50%;

    margin-bottom: 10px;
    padding: 5px 7.5px;

    transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
    transform: translate(-50%, 10px) scale(0.8);
    transform-origin: 50% 100%;
    white-space: nowrap;
    pointer-events: none;

    opacity: 0;
    color: #4a5764;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip::before {
    position: absolute;
    z-index: 2;
    bottom: -4px;
    left: 50%;

    width: 0;
    height: 0;

    content: "";
    transform: translateX(-50%);

    border-top: 4px solid rgba(255, 255, 255, 0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
    transform: translate(-50%, 0) scale(1);

    opacity: 1;
}

.plyr .plyr__control:hover .plyr__tooltip {
    z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
    left: 0;

    transform: translate(0, 10px) scale(0.8);
    transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
    left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
    right: 0;
    left: auto;

    transform: translate(0, 10px) scale(0.8);
    transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
    right: 16px;
    left: auto;

    transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
    transform: translate(0, 0) scale(1);
}

.plyr__progress {
    position: relative;
    left: 6.5px;

    margin-right: 13px;
}

.plyr__progress input[type="range"],
.plyr__progress__buffer {
    width: calc(100% + 13px);
    margin-right: -6.5px;
    margin-left: -6.5px;
}

.plyr__progress input[type="range"] {
    position: relative;
    z-index: 2;
}

.plyr__progress .plyr__tooltip {
    font-size: 14px;

    left: 0;
}

.plyr__progress__buffer {
    position: absolute;
    top: 50%;
    left: 0;

    height: 5px;
    margin-top: -2.5px;
    padding: 0;

    border: 0;
    border-radius: 100px;
    background: 0 0;

    -webkit-appearance: none;
}

.plyr__progress__buffer::-webkit-progress-bar {
    background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
    min-width: 5px;

    -webkit-transition: width 0.2s ease;
            transition: width 0.2s ease;

    border-radius: 100px;
    background: currentColor;
}

.plyr__progress__buffer::-moz-progress-bar {
    min-width: 5px;

    -moz-transition: width 0.2s ease;
         transition: width 0.2s ease;

    border-radius: 100px;
    background: currentColor;
}

.plyr__progress__buffer::-ms-fill {
    -ms-transition: width 0.2s ease;
        transition: width 0.2s ease;

    border-radius: 100px;
}

.plyr--loading .plyr__progress__buffer {
    animation: plyr-progress 1s linear infinite;

    color: transparent;
    background-image: linear-gradient(
    -45deg,
    rgba(35, 41, 47, 0.6) 25%,
    transparent 25%,
    transparent 50%,
    rgba(35, 41, 47, 0.6) 50%,
    rgba(35, 41, 47, 0.6) 75%,
    transparent 75%,
    transparent
    );
    background-repeat: repeat-x;
    background-size: 25px 25px;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
    background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
    background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
    position: relative;

    display: flex;

    width: 20%;
    min-width: 80px;
    max-width: 110px;

    align-items: center;
}

.plyr__volume input[type="range"] {
    position: relative;
    z-index: 2;

    margin-right: 5px;
    margin-left: 5px;
}

.plyr--is-ios .plyr__volume {
    width: auto;
    min-width: 0;
}

.plyr--audio {
    display: block;
}

.plyr--audio .plyr__controls {
    padding: 10px;

    color: #4a5764;
    border-radius: inherit;
    background: #fff;
}

.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded="true"] {
    color: #fff;
    background: #00b3ff;
}

.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track {
    background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track {
    background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type="range"]::-ms-track {
    background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--audio .plyr__progress__buffer {
    color: rgba(193, 201, 209, 0.66);
}

.plyr--video {
    overflow: hidden;

    background: #000;
}

.plyr--video.plyr--menu-open {
    overflow: visible;
}

.plyr__video-wrapper {
    overflow: hidden;

    width: 100%;
    height: 100%;
    margin: auto;

    background: #000;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
    position: absolute;
    top: 0;
    left: 0;

    border: 0;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
    position: relative;

    padding-bottom: 240%;

    transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 20px 5px 5px;

    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;

    color: #fff;
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

@media (min-width: 480px) {
    .plyr--video .plyr__controls {
        padding: 35px 10px 10px;
    }
}

.plyr--video.plyr--hide-controls .plyr__controls {
    transform: translateY(100%);
    pointer-events: none;

    opacity: 0;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
    color: #fff;
    background: #00b3ff;
}

.plyr__control--overlaid {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;

    display: none;

    padding: 15px;

    transform: translate(-50%, -50%);

    color: #fff;
    border: 0;
    border-radius: 100%;
    background: rgba(0, 179, 255, 0.8);
}

.plyr__control--overlaid svg {
    position: relative;
    left: 2px;
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
    background: #00b3ff;
}

.plyr--playing .plyr__control--overlaid {
    visibility: hidden;

    opacity: 0;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
    display: block;
}

.plyr--full-ui.plyr--video input[type="range"]::-webkit-slider-runnable-track {
    background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track {
    background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type="range"]::-ms-track {
    background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--video .plyr__progress__buffer {
    color: rgba(255, 255, 255, 0.25);
}

.plyr:-webkit-full-screen {
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:-ms-fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:-webkit-full-screen video {
    height: 100%;
}

.plyr:-ms-fullscreen video {
    height: 100%;
}

.plyr:fullscreen video {
    height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr:fullscreen .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
    cursor: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
    cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
    cursor: none;
}

@media (min-width: 1024px) {
    .plyr:-webkit-full-screen .plyr__captions {
        font-size: 21px;
    }

    .plyr:-ms-fullscreen .plyr__captions {
        font-size: 21px;
    }

    .plyr:fullscreen .plyr__captions {
        font-size: 21px;
    }
}

.plyr:-webkit-full-screen {
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:-webkit-full-screen video {
    height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
    cursor: none;
}

@media (min-width: 1024px) {
    .plyr:-webkit-full-screen .plyr__captions {
        font-size: 21px;
    }
}

.plyr:-moz-full-screen {
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:-moz-full-screen video {
    height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
    cursor: none;
}

@media (min-width: 1024px) {
    .plyr:-moz-full-screen .plyr__captions {
        font-size: 21px;
    }
}

.plyr:-ms-fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:-ms-fullscreen video {
    height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
    cursor: none;
}

@media (min-width: 1024px) {
    .plyr:-ms-fullscreen .plyr__captions {
        font-size: 21px;
    }
}

.plyr--fullscreen-fallback {
    position: fixed;
    z-index: 10000000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr--fullscreen-fallback video {
    height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
    position: static;

    height: 100%;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
    position: relative;
    top: 50%;

    height: 0;

    transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
    display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
    display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
    cursor: none;
}

@media (min-width: 1024px) {
    .plyr--fullscreen-fallback .plyr__captions {
        font-size: 21px;
    }
}

.plyr__ads {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    cursor: pointer;

    border-radius: inherit;
}

.plyr__ads > div,
.plyr__ads > div iframe {
    position: absolute;

    width: 100%;
    height: 100%;
}

.plyr__ads::after {
    font-size: 11px;

    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;

    padding: 2px 6px;

    content: attr(data-badge-text);
    pointer-events: none;

    color: #fff;
    border-radius: 2px;
    background: rgba(35, 41, 47, 0.8);
}

.plyr__ads::after:empty {
    display: none;
}

.plyr__cues {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;

    display: block;

    width: 3px;
    height: 5px;
    margin: -2.5px 0 0;

    opacity: 0.8;
    background: currentColor;
}

.plyr__preview-thumb {
    position: absolute;
    z-index: 2;
    bottom: 100%;

    margin-bottom: 10px;
    padding: 3px;

    transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
    transform: translate(0, 10px) scale(0.8);
    transform-origin: 50% 100%;
    pointer-events: none;

    opacity: 0;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.plyr__preview-thumb--is-shown {
    transform: translate(0, 0) scale(1);

    opacity: 1;
}

.plyr__preview-thumb::before {
    position: absolute;
    z-index: 2;
    bottom: -4px;
    left: 50%;

    width: 0;
    height: 0;

    content: "";
    transform: translateX(-50%);

    border-top: 4px solid rgba(255, 255, 255, 0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.plyr__preview-thumb__image-container {
    position: relative;
    z-index: 0;

    overflow: hidden;

    border-radius: 2px;
    background: #c1c9d1;
}

.plyr__preview-thumb__image-container img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
}

.plyr__preview-thumb__time-container {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 6px;
    left: 0;

    white-space: nowrap;
}

.plyr__preview-thumb__time-container span {
    font-size: 14px;

    padding: 3px 6px;

    color: #fff;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.55);
}

.plyr__preview-scrubbing {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
    margin: auto;

    transition: opacity 0.3s ease;

    opacity: 0;

    filter: blur(1px);
}

.plyr__preview-scrubbing--is-shown {
    opacity: 1;
}

.plyr__preview-scrubbing img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;

    -o-object-fit: contain;
       object-fit: contain;
}

.plyr--no-transition {
    transition: none !important;
}

.plyr__sr-only {
    position: absolute !important;

    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);

    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;

    border: 0 !important;
}

.plyr [hidden] {
    display: none !important;
}

body {
    background: #fff;
}

.banner_item {
    position: relative;
}

.banner_video_link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}

.banner_video_des {
    padding-bottom: 30px;
}

.banner_video_link-button {
    font-size: 24px;
    line-height: 44px;

    width: 80%;
    margin: 0 auto;

    text-align: center;

    color: #df183e;
    border-radius: 25px;
    background: #fff;
}

.banner_video_link-subtitle {
    font-size: 40px;
    line-height: 60px;

    padding-bottom: 8px;

    text-align: center;

    color: #fff;
}

.banner_video_link-title {
    font-size: 70px;
    font-weight: 900;

    text-align: center;

    color: #fff;
}

.page_frame {
    max-width: 1440px;
}

body .page #page_body_editor-wrapper .layout_group a[data-layout]:hover,
body .page #page_body_editor-wrapper .layout_group .normal_link[data-layout]:hover,
.editor.ck-content a[data-layout]:hover {
    color: #df1e3d !important;
    background: #fff !important;
}

body .page #page_body_editor-wrapper .layout_group a[data-layout],
body .page #page_body_editor-wrapper .layout_group .normal_link[data-layout],
.editor.ck-content a[data-layout] {
    font-size: 16px !important;
    line-height: 44px;

    position: relative;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 270px;
    margin-right: 32px;
    padding-right: 24px;

    -webkit-transition: 0.2s ease;
            transition: 0.2s ease;
    text-align: right;

    color: #df1e3d !important;
    border: 3px solid;
    border-radius: 25px;
    background: transparent !important;
}

.editor.ck-content a[data-layout]:before {
    font-family: iconfont !important;
    font-size: 16px;
    font-size: 12px;
    font-style: normal;
    line-height: 27px;

    position: absolute;
    top: 50%;
    left: 12px;

    display: block;

    width: 28px;
    height: 28px;
    margin-top: -14px;

    content: "\E642";
    -webkit-transition: color 0.2s ease;
            transition: color 0.2s ease;
    text-align: center;

    color: #df1e3d;
    border-radius: 50%;
    background: transparent;

    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar-track {
    background-color: #fff;

/* 定义滚动条轨道  内阴影+圆角*/
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 10px;

    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background-color: #df183e;
}

.page-footer {
    overflow: hidden;
}

body.page[data-page_name="team"] ._group {
    position: relative;

    visibility: visible;

    opacity: 1;
}

body.page[data-page_name="team"] ._group.active ~ ._group {
    display: none;
}

.button_add_more {
    width: 400px;
    margin: 0 auto;
}

.button_add_more .button::before {
    font-family: iconfont !important;
    font-size: 16px;
    font-size: 12px;
    font-style: normal;
    line-height: 27px;

    position: absolute;
    top: 50%;
    left: 8px;

    display: block;

    width: 28px;
    height: 28px;
    margin-top: -14px;

    content: "\E642";
    -webkit-transition: color 0.2s ease;
            transition: color 0.2s ease;
    transform: rotate(135deg);
    text-align: center;

    color: #fff;
    border-radius: 50%;
    background: #df1e3d;

    -webkit-font-smoothing: antialiased;
}

.button_add_more .button {
    font-size: 16px;
    line-height: 39px;

    position: relative;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    margin-right: 32px;
    padding-right: 24px;

    -webkit-transition: 0.2s ease;
            transition: 0.2s ease;
    text-align: right;

    color: #df1e3d;
    border: 1px solid #df1e3d;
    border-radius: 25px;
    background: transparent;
}

#team-swiper-container .list_item {
    min-height: 100px;
}

.search_input input {
    background-color: transparent;
}

.search_input {
    transition: 0.36s ease;
}

.page-header .header-search_btn.open .search_input {
    width: 150px;
}

.page-body.page-search {
    box-sizing: border-box;
    min-height: 100vh;
    padding-top: 260px;
}

.search_result_list-item_desc {
    font-size: 16px;
    font-weight: 900;
    line-height: 40px;

    overflow: hidden;

    height: 80px;

    color: #595757;
}

.search_result_list-item {
    min-height: 180px;
}

.search_result_list-item_image {
    flex: 0 0 auto;

    width: 270px;
    margin-left: 70px;

    background-repeat: no-repeat;
    background-size: cover;
}

.search_result_title {
    font-size: 40px;
    font-weight: 900;

    margin-bottom: 60px;

    color: #df183e;
}

.search_result_wrapper {
    padding-bottom: 210px;
}

.text_wrapper {
    padding-bottom: 50px;
}

.search_result_list-item_title {
    font-size: 30px;
    font-weight: 900;
    line-height: 60px;

    color: #000;
}

.search_result_list-item:last-child {
    border-bottom: 1px solid #aeaead;
}

.search_result_list-item {
    display: flex;

    padding: 40px 0;

    border-top: 1px solid #aeaead;

    align-items: center;
}

#headSHBtn::after {
    position: absolute;
    top: 28px;
    left: 14px;

    display: block;

    width: 20px;
    height: 2px;

    content: "";
    transition: all 0.3s ease-out 0s;

    background: #fff;
}

#headSHBtn::before {
    position: absolute;
    top: 16px;
    left: 14px;

    display: block;

    width: 20px;
    height: 2px;

    content: "";
    transition: all 0.3s ease-out 0s;

    background: #fff;
}

#headSHBtn .fa {
    position: absolute;
    top: 22px;
    left: 14px;

    display: block;

    width: 100%;
    width: 20px;
    height: 3px;
    height: 2px;

    background: #fff;
}

#headSHBtn {
    display: block;

    width: 100%;
    height: 100%;

    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;

    color: #fff;
    background: transparent;
}

.page-header.open #headSHBtn::after {
    top: 22px;

    transform: rotate(45deg);

    background: #fff;
}

.page-header.open #headSHBtn .fa {
    opacity: 0;
}

.page-header.open #headSHBtn::before {
    top: 22px;

    transform: rotate(-45deg);

    background: #fff;
}

.page .list_category-item:last-child {
    margin: 0;
}

.page .list_category-item {
    position: relative;

    margin-right: 20px;
}

.page .list_category-item.active:after,
.page .list_category-item:hover:after {
    opacity: 1;
}

.page .list_category-item:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 2px;

    content: "";
    transition: 0.36s ease;

    opacity: 0;
    background-color: #df183e;
}

.page .list_category {
    font-size: 20px;
    font-weight: 900;
    line-height: 28px;

    display: flex;

    margin-bottom: 30px;

    color: #df183e;

    justify-content: flex-end;
}

.button_add_more .button::before {
    transition: 0.36s ease;
}

.button_add_more .button {
    transition: 0.36s ease;
}

.button_add_more:hover .button {
    color: #fff;
    background-color: #df183e;
}

.button_add_more:hover .button::before {
    color: #df183e;
    background-color: #fff;
}

.page-body.page-search {
    position: relative;
}

.page-search_input_wrapper .iconfont {
    font-size: 30px;
    line-height: 42px;

    margin-left: 20px;

    cursor: pointer;

    color: #fff;
}

.page-search_input_wrapper input {
    font-size: 20px;
    line-height: 40px;

    box-sizing: border-box;
    width: 420px;
    padding-left: 10px;

    border: none;
    border-bottom: 2px solid #fff;
}

.page-search_input_wrapper {
    position: absolute;
    top: 120px;

    display: flex;

    width: 100%;

    justify-content: center;
}

.page[data-page_name="new"] .module-new .module_header .icon-new {
    font-size: 200px;

    padding-right: 20px;

    color: #df183e;
}

.page[data-page_name="new"] .module-new .module_des {
    font-size: 22px;
    font-weight: 900;
}

.page[data-page_name="new"] .module-new .module_other p {
    display: inline-block;

    width: 50%;
}

.page[data-page_name="new"] .module-new .module_other {
    padding-bottom: 190px;

    text-align: right;
}

.page[data-page_name="new"] .module-new .module_title {
    font-size: 66px;

    margin-bottom: 40px;

    vertical-align: bottom;
}

.page[data-page_name="new"] .module-new .module_header {
    padding-bottom: 50px;

    justify-content: space-between;
}

.layout-img_gallary_wrapper.layout-open .layout-img_gallary_img {
    width: auto !important;
}
.page_tab_btns .pagination li a {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.page_tab_btns .pagination li {
    position: relative;
}

.module-new.page-module .effect:nth-child(3n + 1) {
    clear: left;
}

html {
    overflow: initial;
}
