/* critical:start */
.video-player {
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
    height: 100%;
    width: 100%;
}

.video-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    background: #000;
    top: 0;
    left: 0;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper .video-inner {
    height: 100%;
    width: 100%;
    position: relative;
}
/* critical:end */

.video-wrapper.docked-default {
    position: fixed;
    top: unset;
    right: 91px;
    bottom: 0;
    left: unset;
    z-index: 100;
    width: 539px;
    height: calc(539px * 0.5625);
}

.video-wrapper.docked-wsj-article {
    position: fixed;
    top: unset;
    right: 10px;
    bottom: 0;
    left: unset;
    height: 310px;
    width: 380px;
    z-index: var(--z-slimline-header, 60);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 10px;
    display: flex;
    flex-direction: column;
}

.video-wrapper.docked-wsj-article .video-inner {
    aspect-ratio: 16 / 9;
    height: auto;
}

.video-wsj-article-docked-controls {
    z-index: var(--z-slimline-header, 60);
    top: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 16px 16px 10px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 10px;
    cursor: unset;
    flex: 1;
}

@media screen and (max-width: 640px) {
    .video-wrapper.docked-default {
        right: 0;
        /* TODO: Hardcoded to be underneath the slimline header for now. We may need a way for the page to tell the player where to position the player */
        top: var(--slimlineheader-height, 54px);
        width: 100vw;
        height: calc(100vw * 0.5625);
    }

    .video-wrapper.docked-wsj-article {
        right: 0;
        left: 0;
        bottom: unset;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .video-wrapper.docked-wsj-article .video-inner {
        max-width: 40%;
    }

    .video-wsj-article-docked-controls {
        padding: 8px 11px 0px 12px;
    }
}

.video-wrapper button {
    border: none;
    background: none;
    cursor: pointer;
}

.video-wrapper button:focus,
.video-wrapper a:focus,
.video-wrapper [tabindex='0']:focus,
.video-wrapper [tabindex='1']:focus {
    outline: none;
}

.video-player.show-focus button:focus,
.video-player.show-focus a:focus,
.video-player.show-focus [tabindex='0']:focus,
.video-player.show-focus [tabindex='1']:focus {
    outline: #0274b6 solid 3px;
    outline-offset: 1px;
}

.bigTop__videoPlayerBox .bigTop__videoPlayer {
    padding-bottom: 0 !important;
}

.bigTop__videoPlayerBox .bigTop__videoPlayer {
    padding-bottom: 0 !important;
}

.video-adLearn {
    position: absolute;
    z-index: 30;
    color: #fff;
    font-family: sans-serif;
    font-size: 25px;
    right: 10px;
    top: 10px;
}

.nocursor {
    cursor: none;
}

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

.wsjVideoPlayer > .video-wrapper:-webkit-full-screen {
    position: relative !important;
}

.video-wrapper .video-time {
    color: #fff;
    opacity: 0.8;
    font-family: 'Retina Narrow', 'Retina', Helvetica, sans-serif;
    font-weight: 400;
    height: 100%;
    padding-top: 5px;
    user-select: none;
    font-size: 18px;
    pointer-events: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .player-16U .video-time,
.player-full .video-time {
	height: 32px;
	top: 36px;
	margin-left: 10px;
	position: relative;
} */

.video-wrapper .video-controls-container {
    pointer-events: none;
    position: absolute;
    z-index: 5;
    bottom: 0;
    width: 100%;
    height: 130px;
    user-select: none;
    display: block;
    -webkit-user-select: none;
}

.video-wrapper .video-controls-background {
    height: 100%;
    width: 100%;
    background: linear-gradient(
        -180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.11) 19%,
        rgba(0, 0, 0, 0.33) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 0;
    transition-delay: 1s;
    -webkit-transition-delay: 1s;
    -moz-transition-dealy: 1s;
    -o-transition-delay: 1s;
    -ms-transition-delay: 1s;
}

.video-wrapper .video-fade-in,
.video-wrapper .video-fade-in > * {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.video-wrapper .video-fade-out,
.video-wrapper .video-fade-out > * {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.video-wrapper .video-fade-out .video-controls > *,
.video-wrapper .video-fade-out .video-controls {
    pointer-events: none !important;
}

.video-wrapper .video-controls {
    display: flex;
    pointer-events: all;
    cursor: default;
    width: 100%;
    padding: 0 11px 0 20px;
    height: 52px;
    bottom: 3px;
    line-height: 46px;
    text-align: left;
    direction: ltr;
    position: absolute;
    z-index: 5;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
}

.video-wrapper .video-controls-wrapper {
    width: 100%;
    height: 100%;
    position: static;
}
.video-wrapper .video-adContainer {
    height: 100%;
    width: 100%;
    z-index: 4;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.video-wrapper .ad-loading-screen {
    background: #000;
    height: 100%;
    width: 100%;
    color: #fff;
    position: absolute;
    z-index: 3;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.video-wrapper .ad-loading-screen span {
    font-size: 30px;
    font-family: 'Retina', Helvetica, sans-serif;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    position: relative;
    margin-top: 30px;
}
.video-wrapper .ad-loading-screen .video-loading {
    position: relative;
    top: auto;
}

.player-16U .ad-loading-screen span {
    font-size: 28px;
}
.player-12U .ad-loading-screen span {
    font-size: 19px;
}
.player-8U .ad-loading-screen span {
    font-size: 15px;
}

.player-4U .ad-loading-screen span,
.player-tiny .ad-loading-screen span {
    font-size: 10px;
}

.video-wrapper .disableMouse {
    pointer-events: none;
}

.video-wrapper .video-controls .filler {
    flex-grow: 1;
}

.video-wrapper .video-controls .f-r {
    margin-left: auto;
    margin-right: 15px;
}

.video-wrapper .video-controls .f-r div {
    height: 100%;
}

.video-wrapper .video-advertisment .video-time {
    display: none !important;
}

.video-wrapper .video-controls::before {
    content: '';
    display: inline-block;
    height: 100%;
    width: 12px;
}

.video-wrapper .gradient-bottom {
    bottom: 0;
    box-shadow: inset 0 -120px 90px -90px rgba(8, 8, 8, 0.8);
    height: 120px;
    width: 100%;
    position: absolute;
    -moz-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    pointer-events: none;
}

to {
    opacity: 1;
    transform: scale(1);
}

.video-player .videoMsg {
    font-family: 'Retina', Helvetica, sans-serif;
    text-align: center;
    color: #fff;
    line-height: 150%;
    position: absolute;
    font-size: 3vw;
    text-shadow: 2px 2px 0px #000000;
    width: 50%;
    right: 2%;
    top: 2%;
}

.video-player .videoMsg img {
    border: none;
    height: auto;
    width: auto;
    margin: 0 auto;
}

.video-player .videoErrorMsg {
    font-family: 'Retina', Helvetica, sans-serif;
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    height: 100%;
}

.video-player .videoErrorMsg > div {
    text-align: center;
    width: 100%;
}

.video-player .player-12U .videoErrorMsg,
.video-player .player-16U .videoErrorMsg {
    font-size: 25px;
}

.video-player .player-8U .videoErrorMsg,
.video-player .player-4U .videoErrorMsg,
.video-player .player-tiny .videoErrorMsg {
    font-size: 18px;
}

.video-controls > .video-volume {
    opacity: 0.8;
    margin-right: 8px;
}

.mobile-player .video-controls > .video-volume:hover ~ .video-time {
    opacity: 0.8 !important;
}

.video-controls > .video-volume > .video-volume-slider {
    height: 42px;
    width: 80px;
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    position: absolute;
    left: 100px;
    margin-left: 0;
    top: 11px;
    pointer-events: none;
}

.video-volume-slider > div {
    position: absolute;
    top: 18px;
}

.video-volume-slider > .video-volume-b {
    width: 80px;
    height: 2.1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.video-volume-slider > .video-volume-v {
    width: 50px;
    height: 3px;
    background-color: white;
}

.video-volume-slider > .video-volume-h {
    border-radius: 50%;
    height: 13px;
    width: 13px;
    background-color: white;
    top: 13.4px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.25), 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}

.video-wrapper .video-controls .video-volume-g-videoplayer {
    height: 100%;
    width: 32px;
    display: block;
    margin: 0;
}

.video-volume-g-videoplayer svg {
    height: 81px;
}

.video-wrapper .video-advertisment {
    bottom: 0px;
}

.video-wrapper:hover > .video-controls {
    bottom: 0;
}

.video-wrapper:hover > .static {
    bottom: 0px !important;
}

.video-wrapper > .control_static {
    bottom: 0px !important;
}

.video-wrapper .video-share {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(34, 34, 34, 0.7);
    text-align: center;
    -moz-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    cursor: default;
    bottom: 85px;
    right: 30px;
    opacity: 0;
    pointer-events: none;
    display: none;
}

.video-wrapper .video-show-share {
    opacity: 1 !important;
    bottom: 100px !important;
    pointer-events: all;
}

.player-full .video-share {
    height: 101px;
    width: 379px;
    bottom: 0;
    right: 30px;
    opacity: 0;
}

.player-16U .video-share {
    height: 101px;
    width: 379px;
    right: 30px;
}

.player-12U .video-share {
    height: 101px;
    width: 379px;
    right: 20px;
    bottom: 70px !important;
}

.player-8U .video-share,
.player-4U .video-share,
.player-tiny .video-share {
    top: 0;
    right: 0;
}

.video-wrapper ul.share-buttons li a {
    text-decoration: none;
}

.video-wrapper ul.share-buttons {
    list-style: none;
    padding: 0;
}

.player-8U ul.share-buttons {
    margin-bottom: 60px;
    width: 100%;
}

.player-12U ul.share-buttons li p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 7px;
    height: 17px;
    color: rgb(244, 244, 244);
    font-size: 12px;
    font-weight: 300;
    font-family: 'Retina Narrow';
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.92px;
    line-height: 13px;
}

.player-16U ul.share-buttons li p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 7px;
    height: 17px;
    color: rgb(244, 244, 244);
    font-size: 12px;
    font-weight: 300;
    font-family: 'Retina Narrow';
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.92px;
    line-height: 13px;
}
.player-full ul.share-buttons li p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 7px;
    height: 17px;
    color: rgb(244, 244, 244);
    font-size: 12px;
    font-weight: 300;
    font-family: 'Retina Narrow';
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.92px;
    line-height: 13px;
}

.player-8U ul.share-buttons li p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 7px;
    height: 17px;
    color: rgb(244, 244, 244);
    font-size: 12px;
    font-weight: 300;
    font-family: 'Retina Narrow';
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.92px;
    line-height: 13px;
}

.player-4U ul.share-buttons li p,
.player-tiny ul.share-buttons li p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 7px;
    width: 80px;
    height: 17px;
    color: rgb(244, 244, 244);
    font-size: 12px;
    font-family: 'Retina Narrow';
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.92px;
    line-height: 13px;
}

.video-wrapper .video-sound {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 5;
    top: 0;
    font-family: 'RetinaMedium', Helvetica, sans-serif;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.video-wrapper .video-sound svg {
    fill: #000;
    position: absolute;
    width: 25px;
}

.video-wrapper .video-sound div {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 25px;
    border-radius: 3px;
    overflow: hidden;
}
.video-wrapper .video-sound span {
    display: inline-block;
    height: 100%;
    line-height: 27px;
}

.video-wrapper .video-sound div span.live {
    background: #ba0000;
    color: #fff;
    padding: 0 10px;
}

.video-wrapper .video-sound div span.cta {
    background: #fff;
}

.video-wrapper .video-sound div span.cta span {
    padding: 0px 10px 0 30px;
}

.video-wrapper .share-link a {
    color: #fff;
    text-decoration: none;
}

.video-wrapper .share-link a:hover {
    color: #84c0ea;
}

.video-wrapper .video-share .closeBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    padding: 6px;
}

.player-full .video-share ul.share-buttons li {
    cursor: pointer;
    display: inline-block;
    height: 65px;
    width: 80px;
}

.player-16U .video-share ul.share-buttons li {
    cursor: pointer;
    display: inline-block;
    height: 65px;
    width: 80px;
}

.player-12U .video-share ul.share-buttons li {
    cursor: pointer;
    display: inline-block;
    height: 65px;
    width: 80px;
}

.player-8U .video-share ul.share-buttons li {
    cursor: pointer;
    display: inline-block;
    height: 65px;
    width: 80px;
    margin-left: 7px;
    margin-right: 7px;
}

.player-4U .video-share ul.share-buttons li,
.player-tiny .video-share ul.share-buttons li {
    cursor: pointer;
    display: inline-block;
    height: 65px;
    width: 80px;
}

.video-wrapper ul.share-buttons svg:hover,
.video-wrapper ul.share-buttons svg:focus {
    opacity: 1;
}

.video-wrapper ul.share-buttons svg {
    width: 42px;
    height: 42px;
    opacity: 0.9;
    position: relative;
    margin: auto;

    /* This is an for an issue with chrome where the SVG will move when opacity changes */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.video-wrapper .share-embed {
    position: absolute;
    width: 100%;
}

table.shareTable {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

table.share-wrapper {
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

table.share-wrapper tr td {
    vertical-align: middle;
}

.player-4U table.share-wrapper tr td,
.player-tiny table.share-wrapper tr td {
    padding-bottom: 20px;
}

table.share-wrapper tr {
    line-height: normal;
}

.shareTable input {
    font-family: 'Retina', Arial, Helvetica, sans-serif;
    width: 100%;
    height: 30px;
    font-size: 1.2em;
    border-radius: 2px;
    border: none;
    padding: 5px;
    background: #efefef;
    color: #525252;
    display: block;
    margin-bottom: 20px;
}

.shareTable label {
    font-family: 'Retina', Helvetica, sans-serif;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.video-wrapper .video-cc-inactive svg {
    fill: #7b7b7b;
}

.video-wrapper .video-cc-inactive:hover svg {
    fill: #ccc;
}

.video-wrapper > video,
.video-wrapper .video-play-overlay,
.video-wrapper > video,
.video-wrapper .video-play-overlay {
    display: none;
}

.video-wrapper svg {
    fill: #fff;
    visibility: visible !important;
    height: 100%;
}

.video-controls > .video-volume:hover,
.video-volume {
    width: 120px;
}

.mobile-player .video-controls > .video-volume:hover,
.video-volume {
    width: auto;
}

.disabled-btn {
    opacity: 0.4 !important;
}

.video-wrapper .video-controls Button,
.video-wrapper div.video-volume,
.video-wrapper .video-controls Button {
    pointer-events: all;
    cursor: pointer;
    height: 32px;
    display: inline-block;
    /* overflow: hidden; */
    border: none;
    background-color: transparent;
    color: inherit;
    text-align: inherit;
    font-size: 100%;
    font-family: inherit;
    cursor: pointer;
    line-height: inherit;
    opacity: 0.8;
    -webkit-font-smoothing: antialiased;
    transform-origin: 50% 50%;
    padding: 0;
    margin-top: 15px;
    margin-right: 15px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.video-wrapper div.video-volume {
    margin-right: 5px;
}

.video-wrapper .video-controls Button svg {
    height: 100%;
}

.video-controls Button,
.video-wrapper div.video-volume:hover,
.video-controls Button,
.video-wrapper div.video-volume:focus,
.video-wrapper .video-controls Button:hover,
.video-wrapper .video-controls Button:focus {
    opacity: 1;
}

.video-controls Button,
.video-wrapper .video-controls Button:active {
    opacity: 0.8;
}

.video-controls > .video-volume:hover .video-volume-slider,
.video-controls > .video-volume .video-volume-slider:hover,
.video-controls > .video-volume > button:focus ~ .video-volume-slider,
.video-controls > .video-volume .video-volume-slider:focus {
    opacity: 1;
    pointer-events: all;
}

.video-controls > .video-volume:hover ~ .video-time,
.video-controls > .video-volume .video-time {
    opacity: 0;
}

.mobile-player .video-controls > .video-volume .video-volume-slider,
.mobile-player .video-controls > .video-volume:hover .video-volume-slider {
    opacity: 0;
    display: none;
}

.video-wrapper .vr-alert {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper .vr-alert p {
    color: #fff;
    font-size: 2vw;
    font-family: 'Retina', sans-serif;
}

.shareCopy {
    line-height: 30px;
    border: none;
    background-color: #84c0ea;
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
    margin: 0 0 0 10px;
    font-size: 16px;
    width: 85px;
    border-radius: 2px;
    padding: 3px 5px;
    text-align: center;
    font-weight: bold;
}

/* Marketwatch Hack */
.over-video {
    z-index: 6;
}
::cue {
    font-family: 'Retina', sans-serif;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .video-wrapper .video-adContainer {
        pointer-events: none;
    }
}

.is-paused {
    animation-play-state: paused;
}
@media only screen and (max-width: 400px) {
    .video-thumb-content .video-duration,
    .video-thumb-content .video-caption {
        display: none;
    }
}
/* Future of Everything */

.vidThumb .video-thumb-content-foe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
}

.vidThumb .video-thumb-content-foe IMG {
    position: absolute;
}

.vidThumb .video-thumb-content-foe .video-title {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 39px;
    text-align: center;
    text-transform: uppercase;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    text-shadow: none;
}

.vidThumb .video-thumb-content-foe .video-thumb-text {
    order: 2;
    position: relative;
}

.vidThumb .video-thumb-content-foe .video-thumb-foe-series-name {
    order: 1;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vidThumb .video-thumb-content-foe .video-hint {
    order: 3;
    position: relative;
    z-index: 10;
    height: 50px;
    width: 100%;
    top: auto;
    transform: none;
    margin-top: 20px;
}

.vidThumb .video-thumb-content-foe .video-hint svg {
    height: 35px !important;
    width: 35px !important;
}
/* 4U */
.player-4U .video-thumb-content-foe .video-title,
.player-tiny .video-thumb-content-foe .video-title {
    font-size: 32px;
    line-height: 39px;
}
/* 8U */

/* 12U */
.player-12U .vidThumb .video-thumb-content-foe .video-hint svg {
    height: 45px !important;
    width: 45px !important;
}
.player-12U .vidThumb .video-thumb-content-foe .video-title {
    font-size: 50px;
    line-height: 58px;
}
/* 16U */
.player-16U .vidThumb .video-thumb-content-foe .video-hint svg {
    height: 60px !important;
    width: 60px !important;
}
.player-16U .vidThumb .video-thumb-content-foe .video-title {
    font-size: 50px;
    line-height: 58px;
}

.progressbar-text {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.progressbar-text {
    width: 83.83px;
    height: 24px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: 'Retina Narrow';
    text-align: center;
    letter-spacing: 0px;
    line-height: 27px;
}

.ad-top-background {
    position: absolute;
    pointer-events: none;
}

.player-full #copy-to-clipboard-notification div p {
    display: inline-block;
    top: -10px;
    padding-left: 8px;
    position: relative;
}

.player-full #copy-to-clipboard-notification div {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    height: 100%;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-family: 'Retina';
    letter-spacing: 0px;
    line-height: 22px;
}

.player-full #copy-to-clipboard-notification {
    display: none;
    position: absolute;
    width: 379px;
    height: 33px;
    bottom: 105px;
    background-color: rgba(34, 34, 34, 0.7);
}

.player-16U #copy-to-clipboard-notification div p {
    display: inline-block;
    top: -10px;
    padding-left: 8px;
    position: relative;
    font-weight: 300;
}

.player-16U #copy-to-clipboard-notification div {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    height: 100%;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-family: 'Retina';
    letter-spacing: 0px;
    line-height: 22px;
}

.player-16U #copy-to-clipboard-notification {
    display: none;
    position: absolute;
    width: 379px;
    height: 33px;
    bottom: 105px;
    background-color: rgba(34, 34, 34, 0.7);
}

.player-12U #copy-to-clipboard-notification div p {
    display: inline-block;
    top: -11px;
    margin-block-end: 0;
    margin-block-start: 0;
    padding-left: 8px;
    position: relative;
    font-weight: 300;
}

.player-12U #copy-to-clipboard-notification div {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    height: 100%;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-family: 'Retina';
    letter-spacing: 0px;
    line-height: 22px;
}

.player-12U #copy-to-clipboard-notification {
    display: none;
    position: absolute;
    width: 379px;
    height: 33px;
    bottom: 104px;
    background-color: rgba(34, 34, 34, 0.7);
}

.player-8U #copy-to-clipboard-notification div p {
    display: inline-block;
    position: relative;
    top: -4px;
    padding-left: 8px;
    font-weight: 300;
}

.player-8U #copy-to-clipboard-notification {
    display: none;
    margin-top: 7%;
    position: absolute;
    top: 0px;
    font-family: 'Retina';
    width: 100%;
    vertical-align: middle;
    height: 21px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 22px;
}

.player-4U #copy-to-clipboard-notification div p,
.player-tiny #copy-to-clipboard-notification div p {
    display: inline-block;
    position: relative;
    padding-left: 8px;
    top: -3px;
    font-weight: 300;
}

.player-4U #copy-to-clipboard-notification,
.player-tiny #copy-to-clipboard-notification {
    display: none;
    position: absolute;
    top: 12px;
    vertical-align: middle;
    width: 100%;
    height: 21px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-family: 'Retina';
    letter-spacing: 0px;
    line-height: 22px;
}

.ad-top-background {
    background: linear-gradient(
        to top,
        rgba(34, 34, 34, 0) 0%,
        rgba(34, 34, 34, 0.11) 38%,
        rgba(34, 34, 34, 0.33) 100%
    );
    border-radius: 0px 0px 0px 0px;
    height: 132px;
    width: 100%;
}

.player-tiny .video-controls .video-share-b {
    display: none !important;
}

.visually-hidden {
    left: 65px;
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    /* added line */
    pointer-events: none;
}

.CircularProgressbar {
    width: 100%;
    vertical-align: middle;
}

.CircularProgressbar .CircularProgressbar-path {
    stroke: rgba(255, 255, 255, 1);
    stroke-linecap: round;
    -webkit-transition: stroke-dashoffset 0.5s ease 0s;
    transition: stroke-dashoffset 0.5s ease 0s;
}

.CircularProgressbar .CircularProgressbar-trail {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-linecap: round;
}

.CircularProgressbar .CircularProgressbar-text {
    color: #fff;
    font-size: 20px;
    font-family: 'Retina Narrow';
    text-align: center;
    letter-spacing: 0;
    line-height: 27px;
    text-shadow: 0 1px 6px rgb(0 0 0 / 50%);
}

.CircularProgressbar .CircularProgressbar-background {
    fill: rgba(255, 255, 255, 0.5);
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-background {
    fill: rgba(255, 255, 255, 0.5);
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text {
    fill: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path {
    stroke: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trail {
    stroke: transparent;
}

.styles__loader_vu3aiFolUpQ0NQhbWc0m {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    height: 60px;
    width: 60px;
    z-index: 5;
    pointer-events: none;
    transform-origin: 50% 50%;
    animation-name: styles__loadspin_UiDfL47xJFP0EVSYSl9B;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.styles__loader_vu3aiFolUpQ0NQhbWc0m.styles__hide_PCol9QWU_WIiemu4NSnC {
    display: none;
}

@-webkit-keyframes styles__loadspin_UiDfL47xJFP0EVSYSl9B {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes styles__loadspin_UiDfL47xJFP0EVSYSl9B {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.styles__preview_cmIyaCh2YFl3UOrC06gH {
    color: #fff;
    background: #000;
    position: absolute;
    bottom: 100px;
    opacity: 1;
    transition: opacity 0.2s ease-in;
    overflow: hidden;
    border: #fff 2px solid;
    user-select: none;
    pointer-events: none;
}

.styles__preview_cmIyaCh2YFl3UOrC06gH.styles__hide_T9n75rf02wWtWxhPd_Sf {
    opacity: 0;
}

.player-12U .styles__preview_cmIyaCh2YFl3UOrC06gH,
.player-8U .styles__preview_cmIyaCh2YFl3UOrC06gH,
.player-4U .styles__preview_cmIyaCh2YFl3UOrC06gH,
.player-tiny .styles__preview_cmIyaCh2YFl3UOrC06gH {
    bottom: 80px;
}

.styles__time_Jg4OYUCMrwnSHea_jsB7 {
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    text-shadow: 2px 5px 5px rgba(0, 0, 0, 1);
    font-size: 20px;
    height: 20px;
    letter-spacing: 0px;
    text-align: center;
    width: 100%;
    position: absolute;
    line-height: 20px;
    bottom: 6px;
    z-index: 1;
}

.styles__img_Secvf3CnUBFXkvoC14lm {
    left: 0px;
    position: absolute;
}

.styles__scrubBar_sK3yUaWMg0CzjHhVutHV {
    position: absolute;
    width: calc(100% - 40px);
    pointer-events: all;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.styles__scrubBar_sK3yUaWMg0CzjHhVutHV:hover,
.styles__scrubBar_sK3yUaWMg0CzjHhVutHV.styles__mobile_QBsFn5YI2aVk6f6I15NR {
    transition: none;
}

.styles__scrubBackground_glWPGE7YF8fwLwli7qhL {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.styles__scrubPadding_f_H6E3a78WUSy1Smj6cf {
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: -10px;
    z-index: 1;
}

.styles__scrubProgress_EAoEl11cAVORVUkkGktQ {
    position: absolute;
    height: 100%;
    left: 0;
    background: #fff;
    width: 0;
    height: 2px;
}

.styles__dot_Wu3aWhYFnwj5onaoCkxS {
    height: 16px;
    width: 16px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: -8px;
    right: -5px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.25), 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.styles__scrubBar_sK3yUaWMg0CzjHhVutHV:hover .styles__scrubProgress_EAoEl11cAVORVUkkGktQ .styles__dot_Wu3aWhYFnwj5onaoCkxS,
.styles__scrubBar_sK3yUaWMg0CzjHhVutHV.styles__mobile_QBsFn5YI2aVk6f6I15NR .styles__scrubProgress_EAoEl11cAVORVUkkGktQ .styles__dot_Wu3aWhYFnwj5onaoCkxS {
    opacity: 1;
    top: -6px;
}

.styles__scrubBar_sK3yUaWMg0CzjHhVutHV:hover .styles__scrubPadding_f_H6E3a78WUSy1Smj6cf {
    height: 22px;
    bottom: -12px;
}

.styles__scrubBar_sK3yUaWMg0CzjHhVutHV:hover .styles__scrubLoaded_THBz4OK8tbud7jRxJzzn,
.styles__scrubBar_sK3yUaWMg0CzjHhVutHV:hover .styles__scrubProgress_EAoEl11cAVORVUkkGktQ,
.styles__scrubBar_sK3yUaWMg0CzjHhVutHV:hover .styles__scrubBackground_glWPGE7YF8fwLwli7qhL {
    height: 4px;
}

.styles__scrubLoaded_THBz4OK8tbud7jRxJzzn {
    position: absolute;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    width: 0;
}

.styles__adMarkerContainer_T5whM1Ajg4_iurxyfkWw {
    position: absolute;
    width: 100%;
    bottom: 5px;
    height: 100%;
}

.styles__scrubBar_sK3yUaWMg0CzjHhVutHV .ad-midroll-marker {
    position: absolute;
    width: 4px !important;
    background: #ffcc00;
    top: 0;
    height: 100%;
}

.styles__modal_Gvq7haU7mcszyJf9EQIA {
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    background-color: rgba(34, 34, 34, 0.75);
    z-index: 4;
}

.styles__modal_Gvq7haU7mcszyJf9EQIA.styles__fadeOut_VRyEMhVhOQFiYYmoSshC {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.styles__closeBtn_R_UihOuFFkHP8sUYKBCQ {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 11px;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.styles__closeBtn_R_UihOuFFkHP8sUYKBCQ,
.styles__closeBtn_R_UihOuFFkHP8sUYKBCQ svg {
    width: 11px;
}

.styles__slide_WdCwwLJ66laCpCGzMVZm {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 466px;
    display: flex;
    align-items: center;
}

.player-8U .styles__slide_WdCwwLJ66laCpCGzMVZm {
    width: 445px;
}

.styles__slide_WdCwwLJ66laCpCGzMVZm.styles__slideIn_S2pQLw2i7xDlhbY7YZZM {
    animation: styles__slideIn_S2pQLw2i7xDlhbY7YZZM 0.3s linear;
}

@keyframes styles__slideIn_S2pQLw2i7xDlhbY7YZZM {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.styles__thumbnail_FUCqAnjmaNBqNNp7UN5U {
    height: 100%;
    width: 106px;
    margin-right: 20px;
}

.player-8U .styles__thumbnail_FUCqAnjmaNBqNNp7UN5U {
    width: 96px;
}

.styles__textContainer_BLADdRlz18GBHiCo6GHC {
    flex: 1 1 auto;
}

.styles__headerText_Nch0hXRCxOSqXYaQ8J2Q {
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 350;
    color: #f4f4f4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.styles__videoTitle_svBYZiCjNhtzssT6pC7o {
    font-family: 'Escrow Condensed', Georgia, serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
    color: #fff;
}

.player-8U .styles__videoTitle_svBYZiCjNhtzssT6pC7o {
    font-size: 18px;
    line-height: 19px;
}

.styles__container_Qrcg9zfSV5I72gILbGA8 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 463px;
    padding: 15px 20px 20px;
    opacity: 0;
    z-index: 2;
    transition: opacity 1s ease-out, bottom 0.25s ease-in-out;
    pointer-events: none;
}

.player-8U .styles__container_Qrcg9zfSV5I72gILbGA8,
.player-4U .styles__container_Qrcg9zfSV5I72gILbGA8 {
    width: 400px;
}

.styles__container_Qrcg9zfSV5I72gILbGA8.styles__controlsVisible_Flb2JoAtOFr7PjOPjH3Q {
    bottom: 80px;
}

.player-16U .styles__container_Qrcg9zfSV5I72gILbGA8.styles__controlsVisible_Flb2JoAtOFr7PjOPjH3Q {
    bottom: 100px;
}

.styles__container_Qrcg9zfSV5I72gILbGA8.styles__fullscreen_nyRqj5mA39OeLLwSnJY8 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.player-tiny .styles__container_Qrcg9zfSV5I72gILbGA8.styles__fullscreen_nyRqj5mA39OeLLwSnJY8 {
    padding: 10px 20px;
}

.styles__container_Qrcg9zfSV5I72gILbGA8.styles__fadeIn_5srb2a0nyLAx7hKNTmUQ {
    opacity: 1;
    pointer-events: all;
}

.styles__headerText_CTCtwSxyabHj_ASQIP1P {
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 350;
    color: #f4f4f4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.player-tiny .styles__headerText_CTCtwSxyabHj_ASQIP1P {
    margin-bottom: 5px;
}

.styles__row_oFcsfy0nXgj0nlpILko0 {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.styles__row_oFcsfy0nXgj0nlpILko0:last-of-type {
    margin-bottom: 0;
}

.styles__thumbnail_zM8vPnzNeiT6MHU7cpw1 {
    height: 100%;
    width: 220px;
    min-width: 220px;
    margin-right: 20px;
}

.player-8U .styles__thumbnail_zM8vPnzNeiT6MHU7cpw1 {
    width: 150px;
    min-width: 150px;
}

.player-4U .styles__thumbnail_zM8vPnzNeiT6MHU7cpw1 {
    width: 120px;
    min-width: 120px;
}

.player-tiny .styles__thumbnail_zM8vPnzNeiT6MHU7cpw1 {
    width: 70px;
    min-width: 70px;
}

.styles__textContainer__kJk0OZtsaUEx1Wrrk7g {
    flex: 1 1 auto;
}

.styles__videoTitle_thrxxgqrryyv0ajD73VC {
    flex: 1;
    font-family: 'Escrow Condensed', Georgia, serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
    color: #fff;
}

.player-tiny .styles__videoTitle_thrxxgqrryyv0ajD73VC {
    font-size: 16px;
    line-height: 19px;
}

.styles__countdownText_pQqGC6LLBHIVQOgSH_xQ {
    font-family: 'Retina', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 350;
    line-height: 22px;
    color: #ccc;
    margin-top: 5px;
}

.styles__preview_wnPmyASEMFAa1oEPsWMU {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7; /* just above the thumbnail so events work */
}

.styles__preview_wnPmyASEMFAa1oEPsWMU video {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    top: 0; /* Article app makes this element have position: absolute */
    right: 0;
}

.styles__preview_wnPmyASEMFAa1oEPsWMU video.styles__show_OWSMaY0IXBpWmB7oiU5V {
    opacity: 1;
}

.styles__hoverText_JhTXfUHnIdk7_taetqkF {
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    font-size: 14px;
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 8;
    display: none;
    background-color: rgba(34, 34, 34, 0.75);
    padding: 10px;
}

.player-tiny .styles__hoverText_JhTXfUHnIdk7_taetqkF {
    padding: 5px;
    font-size: 12px;
}

.styles__hoverText_JhTXfUHnIdk7_taetqkF.styles__show_OWSMaY0IXBpWmB7oiU5V {
    display: block;
}

/* critical:start */
.base__vidThumb_J2Ig01mRQcFyN8dpXVG4 {
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    z-index: 6;
    background-color: #000;
    position: absolute;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
}

.base__videoThumbContent__W29K99ikxMDZHdwBv_G {
    color: #fff;
    font-family: 'Retina', Helvetica, sans-serif;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.base__videoHint_qqM8mqaB1e13KXjxbt5Y {
    position: absolute;
    transition: all 0.15s;
    transition-timing-function: ease-out;
    z-index: 1;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.base__videoThumbContent__W29K99ikxMDZHdwBv_G:hover .base__videoHint_qqM8mqaB1e13KXjxbt5Y polygon,
.base__videoThumbContent__W29K99ikxMDZHdwBv_G .base__videoHint_qqM8mqaB1e13KXjxbt5Y:focus polygon {
    fill: #0080c3;
    transition: all 0.15s ease-out;
}

.base__videoHint_qqM8mqaB1e13KXjxbt5Y svg {
    padding: 5px;
}

.player-16U .base__videoHint_qqM8mqaB1e13KXjxbt5Y svg,
.player-12U .base__videoHint_qqM8mqaB1e13KXjxbt5Y svg {
    width: 70px;
    height: 70px;
}

.player-8U .base__videoHint_qqM8mqaB1e13KXjxbt5Y svg {
    width: 60px;
    height: 60px;
}

.player-4U .base__videoHint_qqM8mqaB1e13KXjxbt5Y svg,
.player-tiny .base__videoHint_qqM8mqaB1e13KXjxbt5Y svg {
    width: 50px;
    height: 50px;
}

.base__videoThumbImg_t6sp3fpsHJ4V_N88NY06 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    position: absolute;
    left: 0;
}

.base__videoThumbFlashLine_Q3tuSnxEXDLPeX6SdR1H {
    color: #ffffff;
    font-size: 13px;
    height: 13px;
    letter-spacing: 0.8px;
    line-height: 13px;
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Retina Narrow', Retina, Arial, Helvetica, sans-serif;
}

.base__videoThumbText_rwV2lcvnQLeFrtVhRBYZ {
    box-sizing: border-box;
    bottom: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 45%;
    width: 100%;
    font-size: 22px;
    line-height: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.player-4U .base__videoThumbText_rwV2lcvnQLeFrtVhRBYZ,
.player-tiny .base__videoThumbText_rwV2lcvnQLeFrtVhRBYZ {
    padding-top: 10px;
}

.base__videoTitle_Hv79AV2Yh_FZvzzvAGHO {
    font-weight: 500;
    width: 80%;
    margin: 0 auto;
}

.base__visuallyHidden_SLUviDjoFe03jYgs8vzE {
    left: 65px;
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    pointer-events: none;
}

.base__hide_MfzHDcOZAgLvuGLnGagg {
    display: none;
}
/* critical:end */

/* @media (min-aspect-ratio: 16/9) {
    .video-wrapper .vidThumb video {
        top: 0;
        height: auto;
        width: 100%;
    }
}
 @media (max-aspect-ratio: 16/9) {
    .video-wrapper .vidThumb video {
        top: 0;
        height: 100%;
        width: auto;
    }
} */

/* critical:start */
.foe__videoThumbContent_QCjFoUb6FqxfQM4mWoV2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    text-align: center;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.foe__videoThumbContent_QCjFoUb6FqxfQM4mWoV2 img {
    position: absolute;
}

.foe__videoHint_VPGRBKGBfgu6PMsdK7Z4 {
    order: 3;
    position: relative;
    z-index: 10;
    height: 50px;
    width: 100%;
    top: auto;
    transform: none;
    margin-top: 10px;
    transition: all 0.15s;
    transition-timing-function: ease-out;
}

.foe__gradient_QnuQdNaO223wIbaGtt5g,
.foe__gradientTop__nbrweMqtHy2IpkL9CV8 {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.foe__videoThumbContent_QCjFoUb6FqxfQM4mWoV2:hover .foe__videoHint_VPGRBKGBfgu6PMsdK7Z4 polygon {
    fill: #0080c3;
    transition: all 0.15s ease-out;
}

.foe__videoHint_VPGRBKGBfgu6PMsdK7Z4 svg {
    padding: 5px;
    height: 35px !important;
    width: 35px !important;
}

.player-16U .foe__videoHint_VPGRBKGBfgu6PMsdK7Z4 svg {
    height: 60px !important;
    width: 60px !important;
}

.player-12U .foe__videoHint_VPGRBKGBfgu6PMsdK7Z4 svg {
    height: 45px !important;
    width: 45px !important;
}

.foe__videoThumbText__OThZ_lADeuZvqtjMRS4 {
    order: 2;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.player-16U .foe__videoThumbText__OThZ_lADeuZvqtjMRS4,
.player-12U .foe__videoThumbText__OThZ_lADeuZvqtjMRS4 {
    padding: 0 35px;
}

.foe__videoTitle_KtPFAeTl0iAVbftGpGzq {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 39px;
    text-align: center;
    text-transform: uppercase;
    max-width: 100%;
    width: 100%;
    text-shadow: none;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
}

.player-16U .foe__videoTitle_KtPFAeTl0iAVbftGpGzq,
.player-12U .foe__videoTitle_KtPFAeTl0iAVbftGpGzq {
    font-size: 38px;
    line-height: 42px;
    margin: 0 25px;
}

.player-8U .foe__videoTitle_KtPFAeTl0iAVbftGpGzq,
.player-4U .foe__videoTitle_KtPFAeTl0iAVbftGpGzq,
.player-tiny .foe__videoTitle_KtPFAeTl0iAVbftGpGzq {
    font-size: 22px;
    line-height: 26px;
}

.foe__videoThumbCta_WiqAbR1iY0gc37hnIxL4 {
    order: 1;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
}

.player-4U .foe__videoThumbCta_WiqAbR1iY0gc37hnIxL4,
.player-tiny .foe__videoThumbCta_WiqAbR1iY0gc37hnIxL4 {
    display: none;
}
/* critical:end */

/* critical:start */
.mobile__gradient_pVZokpyG40pf3SgQ3Ev2 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.mobile__gradientTop_H3y64xDfKv9ySrkFHN0A {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0) 24%,
        rgba(0, 0, 0, 0) 29%,
        rgba(0, 0, 0, 0.8) 100%
    );
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.mobile__videoThumbContent_qFNUGR71qbvIniRwbSLu {
}

.mobile__videoHint_bpneb7rBVctrE7WgY3Nz {
    position: absolute;
    padding: 0;
    left: 10px;
    height: 50px;
    width: 50px;
    bottom: -10px !important;
    top: auto;
    transform: translateY(-50%);
    transition: all 0.15s;
    transition-timing-function: ease-out;
    z-index: 1;
}

.mobile__videoThumbContent_qFNUGR71qbvIniRwbSLu:hover .mobile__videoHint_bpneb7rBVctrE7WgY3Nz polygon {
    fill: #0080c3;
    transition: all 0.15s ease-out;
}

.mobile__videoThumbFlashLine_v9HWDr2ekmc40cumxtRG {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 13px;
    height: 13px;
    letter-spacing: 0.8px;
    line-height: 13px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Retina Narrow', Retina, Arial, Helvetica, sans-serif;
}

.mobile__videoThumbCta_QV2HqVgSDtwbfnvpBnzZ {
    position: absolute;
    bottom: 30px;
    left: 75px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.46px;
    line-height: 15px;
    text-transform: uppercase;
    display: inline-block;
}

.mobile__videoThumbCta_QV2HqVgSDtwbfnvpBnzZ span {
    display: inline-block;
    width: 60px;
    text-align: left;
    color: #ccc;
    font-weight: 300;
}
/* critical:end */

/* critical:start */
.wsj-article__gradient_V1YOw7ejAbwOYXAUT4M_ {
}

.wsj-article__gradientTop_gp7jfACAoOaopascqbE6 {
}

.wsj-article__videoThumbContent_smIls8sxT0_s7Z4CKqSE {
}

.wsj-article__videoHint_yIhtZW7OIF0DLQNh__BR {
}

.wsj-article__videoThumbContent_smIls8sxT0_s7Z4CKqSE:hover .wsj-article__videoHint_yIhtZW7OIF0DLQNh__BR polygon {
    fill: #0080c3;
    transition: all 0.15s ease-out;
}

.wsj-article__videoThumbFlashLine_Yijm8CPlgABOJfYdUtww {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Retina', Retina, Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
    text-transform: none;
    text-align: left;
}

.video-wrapper.player-12U .wsj-article__videoThumbFlashLine_Yijm8CPlgABOJfYdUtww,
.video-wrapper.player-8U .wsj-article__videoThumbFlashLine_Yijm8CPlgABOJfYdUtww,
.video-wrapper.player-4U .wsj-article__videoThumbFlashLine_Yijm8CPlgABOJfYdUtww,
.video-wrapper.player-tiny .wsj-article__videoThumbFlashLine_Yijm8CPlgABOJfYdUtww {
    font-size: 16px;
    line-height: 22px;
}

.wsj-article__videoThumbCta_jaQvYOEZtmgb6v0Tcq9L {
}

.wsj-article__videoThumbCta_jaQvYOEZtmgb6v0Tcq9L span {
    color: #fff !important;
}
/* critical:end */


.barrons-next__videoTitle_hsZpLFcdpw1vLINSV5VA {
    font-weight: 500;
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    color: #001e20;
    font-size: 1.625rem;
    line-height: 2.25rem;
    padding: 0.5rem 0.4rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-shadow: none;
}

.styles__videoTitleContainer_MVI4TH1CpYWF7DvSQaYA {
    position: absolute;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 39%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.styles__videoTitle_MU8JRVssXCHNkhbVAaNH {
    position: relative;
    margin: 20px;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 40px;
    width: calc(100% -40px);
    color: rgb(255, 255, 255);
    font-family: 'Escrow Condensed', Georgia, serif;
}

.player-4U .styles__videoTitle_MU8JRVssXCHNkhbVAaNH {
    font-size: 22px;
    line-height: 22px;
}

.player-8U .styles__videoTitle_MU8JRVssXCHNkhbVAaNH {
    font-size: 32px;
    line-height: 34px;
}

.player-12U .styles__videoTitle_MU8JRVssXCHNkhbVAaNH,
.player-16U .styles__videoTitle_MU8JRVssXCHNkhbVAaNH,
.player-full .styles__videoTitle_MU8JRVssXCHNkhbVAaNH {
    font-size: 40px;
}

.styles__videoSavedQueueModalContainer_m4C3lQ6B0xs8is0sVvvG {
    color: #fff;
    position: absolute;
    width: calc(100% - 40px);
    height: 50px;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: all;
    margin: 20px;
}

.styles__videoSavedQueueModalText_fPNgIPs33M2Qj8wYjOvE {
    font-family: 'RetinaBook', Helvetica, sans-serif;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 0;
    pointer-events: none;
}

.styles__videoSavedQueueModalButton_pu65hCkFQZvEd5vzmXep {
    cursor: pointer;
    pointer-events: all;
    font-family: 'RetinaMedium', Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    right: 10px;
    border-radius: 2px;
    border: 1px solid rgb(255, 255, 255);
    height: 30px;
    width: 185px;
    background: none;
    color: #fff;
    top: 10px;
    outline: none;
}

.player-4U .styles__videoSavedQueueModalText_fPNgIPs33M2Qj8wYjOvE {
}

.player-8U .styles__videoSavedQueueModalText_fPNgIPs33M2Qj8wYjOvE {
}

.player-12U .styles__videoSavedQueueModalText_fPNgIPs33M2Qj8wYjOvE,
.player-16U .styles__videoSavedQueueModalText_fPNgIPs33M2Qj8wYjOvE,
.player-full .styles__videoSavedQueueModalText_fPNgIPs33M2Qj8wYjOvE {
}

.styles__countdownContainer_v9iOnfB7PvXYSNrAIwpg {
    width: 100%;
    height: 100%;
    z-index: 6;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.styles__thumbnail_GCd2xIfxMfcjaKWStXX1 {
    background-size: contain;
    filter: blur(30px);
    -webkit-filter: blur(30px);
    width: 100%;
    height: 100%;
    transform: scale(1.3);
    z-index: 6;
    position: absolute;
    top: 0;
    left: 0;
}

.styles__countdown_Ac_7rWU916xOtmJhAXC9 {
    position: relative;
    z-index: 10;
    height: 103px;
}

.styles__countdownSquare_CBburZwBsI7SG4YcnQ6Q {
    min-width: 58px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    display: inline-block;
    margin-right: 6px;
    margin-top: 17px;
}

.styles__squareNumber_tTlljFQiG4QgezhyRsvR {
    height: 41px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 43px;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    text-align: center;
    letter-spacing: 2.65px;
    line-height: initial;
    margin-top: 3px;
    padding-left: 3px;
}

.styles__squareTime_LE3AjZczsD_SnCc4PHYm {
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    text-align: center;
    letter-spacing: 0.68px;
    margin-top: 8px;
}

.styles__title_KgyaFogaK3xTscLfKl5O {
    width: 100%;
    height: 14px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;
    text-align: center;
    letter-spacing: 0.8px;
}

.styles__clickForSoundWrapper__CNP2wNjpm1tovhk6x8N {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 20px;
    height: 25px;
    padding: 5px 5px 5px 0;
    box-sizing: border-box;
    border-radius: 3px;
    overflow: hidden;
    background: #fff !important;
    font-family: 'RetinaMedium', Helvetica, sans-serif;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.2s;
    color: #000;
}

.styles__clickForSoundWrapper__CNP2wNjpm1tovhk6x8N svg {
    fill: #000;
    height: 24px;
    width: 24px;
    margin-right: 5px;
}

.styles__clickForSoundWrapperWithLive_cyZZ16bC2qRMqk3K9cUe {
    transform: translateX(47px);
}

.styles__clickForSoundWrapperWithAdvertisment_vabwqRqMBK9NoKuzFhc2 {
    transform: translateY(65px);
}

@media (hover: none) {
    .styles__clickForSoundWrapper__CNP2wNjpm1tovhk6x8N:hover,
    .styles__clickForSoundWrapper__CNP2wNjpm1tovhk6x8N:hover svg {
        color: #0080c3;
        fill: #0080c3;
    }
}

.styles__liveIndicatorWrapper_thWYsr7OVtAa3E8T_vZm {
    position: absolute;
    z-index: 3;
    top: 0;
    font-family: 'RetinaMedium', Helvetica, sans-serif;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    pointer-events: none;
    width: inherit;
}

.styles__liveButton_xeEHqZeaRSTaNffybwqa {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 25px;
    border-radius: 3px;
    overflow: hidden;
    background: #ba0000;
    color: #fff;
    line-height: 26px;
    padding: 0 10px;
}

.styles__videoSkipIcon_OVk3BUswAMdhVUNCV4YG {
    pointer-events: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAAAAABjvpF0AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAnRSTlMAAHaTzTgAAAACYktHRAD/h4/MvwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAEFJREFUGNNjYKARmC+PYP//D2cghJEEEcIogjBhNEGIMIYgSBiL4P14DMH78RjaQUJoghAhFEGYEJIgQghJkB4AAG9cX5X8X+CRAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    display: inline-block;
    height: 24px;
    margin-left: 5px;
    vertical-align: middle;
    width: 20px;
    display: none;
}

.styles__adSkip_L6o530LrhsHuqyrTXXJO {
    font-family: 'Retina', Helvetica, sans-serif;
    background: rgba(0, 0, 0, 0.7) !important;
    bottom: 55px;
    display: block;
    right: 0px;
    position: absolute;
    width: 120px;
    overflow: hidden;
    border: #fff 1px solid !important;
    border-right: 0 !important;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    transition: 0.2s;
    z-index: 6;
}
.styles__adSkip_L6o530LrhsHuqyrTXXJO:hover {
    text-decoration: underline;
    background: rgba(50, 50, 50, 1) !important;
}
.styles__skipTxt_X1lrmHSeI_ikhGcOWMGS {
    line-height: 35px;
    display: inline-block;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.styles__videoSkipCountdown_Il9n1CZyYb_GJJ1aOCAr {
    display: inline-block;
    margin-left: 6px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.styles__adCirlce_s6sIwEsk_XmZbXeZdv88 {
    top: 0;
    position: absolute;
    z-index: 1;
    margin-left: 20px;
    margin-top: 20px;
    height: 48px;
    width: 48px;
    font-weight: 300;
    pointer-events: none;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

.styles__adText_KobNYSrCrHgpjtY8fDw4,
.styles__adContent_wkYQEmAfm4OfWpwbDhAw {
    color: rgb(255, 255, 255);
    font-weight: 300;
    position: absolute;
    font-family: 'Retina Narrow';
    letter-spacing: 0px;
    text-shadow: 0 1px 6px rgb(0 0 0 / 50%);
    font-size: 20px;
    line-height: 27px;
    pointer-events: none;
    white-space: nowrap;
}

.styles__adText_KobNYSrCrHgpjtY8fDw4 {
    top: 11px;
    left: 0px;
    pointer-events: none;
    width: 48px;
    text-align: center;
}

.styles__adContent_wkYQEmAfm4OfWpwbDhAw {
    left: 56px;
    top: 11px;
}

.styles__title_NOYZ6Ih3Qj7XLAtKEy6n {
    font-family: var(--font-family-retina);
    font-weight: var(--font-weight-medium);
    color: var(--primary-text-color);
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 10px;
}

.styles__controls_n49Q6vw2L6uV4urOZ8Ng {
    display: flex;
    align-items: center;
}

.styles__time__kPb3GhwekWA6HHn3EEf {
    font-family: var(--font-family-retina);
    font-weight: var(--font-weight-regular);
    color: var(--secondary-text-color);
    font-size: 10px;
    line-height: 10px;
    margin: 0;
    flex: 1;
    letter-spacing: 0.5px;
}

.styles__btn_stsDGFwpN4YFg_IhhCh4 {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 24px;
}

.styles__btn_stsDGFwpN4YFg_IhhCh4.styles__playPause_ihgag9lVNe10bytQspKU {
    margin-right: 10px;
}

@media screen and (max-width: 639px) {
    .styles__tile_m1eWvGlkaIcDjijPfLzm {
        line-height: 12.8px;
        margin: 0 0 6px;
    }

    .styles__time__kPb3GhwekWA6HHn3EEf {
        font-size: 8px;
    }

    .styles__btn_stsDGFwpN4YFg_IhhCh4.styles__closeBtn_u5boTSBaBw6ZJdS3N5nA {
        transform: scale(0.56);
    }
}


/*# sourceMappingURL=video.css.map*/