@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}
.rc-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  margin-top: -5px;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  touch-action: pan-x;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle:focus {
  outline: none;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: grabbing;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

.Player_preloader_UgYU2{position:absolute;top:0;left:0;right:0;bottom:0;background-color:#fff;display:flex;justify-content:center;align-items:center;background-position:center;background-repeat:no-repeat;z-index:100}.Player_player_UgCNa{height:100%;width:100%;background:rgba(0,0,0,0);position:relative}.Player_player_UgCNa .Player_animation_background_lCsYj{height:100%;width:100%;display:flex;justify-content:center;align-items:center;background-color:rgba(12,22,63,.8);position:absolute;z-index:10}.Player_player_UgCNa .Player_animation_background_lCsYj .Player_phone_rotate_animation_BTQvS{width:83px;height:141px;background:url(15c913.phone_rotate.svg) no-repeat center;animation:Player_phone_rotating_u65O3 1.5s 2}.Player_tap-to-unmute-button_GVOhh{position:absolute;z-index:1;top:10px;left:10px;height:30px;width:133px;background-color:#fff;background-image:url(d89866.off.png);background-size:100%}.Player_core-player-container_ElM1F{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;display:flex;align-items:center;justify-content:center}.Player_core-player-container-no-controls_XmVDc{bottom:0;overflow:hidden}.Player_core-player_Yqw4v{position:relative;overflow:hidden}:-webkit-full-screen .Player_core-player-container_ElM1F{bottom:0}:-ms-fullscreen .Player_core-player-container_ElM1F{bottom:0}:fullscreen .Player_core-player-container_ElM1F{bottom:0}.Player_player-visible-area_iiHd5{border-radius:4px}.Player_player-visible-area_iiHd5:focus-visible{outline:2px solid #9dabfd;border-radius:2px}.Player_fade-enter_zmQde{opacity:0}.Player_fade-enter_zmQde.Player_fade-enter-active_q2LHZ{opacity:1;transition:opacity .25s}.Player_fade-leave_bCMND{opacity:1}.Player_fade-leave_bCMND.Player_fade-leave-active_Mhf2s{opacity:0;transition:opacity .25s}.Player_preloader-container_jrzzf{position:absolute;top:0;left:0;right:0;bottom:0;background-color:#fff;display:flex;justify-content:center;align-items:center;background-position:center;background-repeat:no-repeat;z-index:100}.Player_css-preloader_WvRzh{height:100px;width:100px;border:3px solid #ccc;border-radius:50%;position:relative;animation:Player_rotating_HWSqw 1.5s infinite}.Player_css-preloader_WvRzh:after{background:#fff;height:60px;width:60px;position:absolute;top:-10px;left:-10px;content:""}@keyframes Player_rotating_HWSqw{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes Player_phone_rotating_u65O3{0%{transform:rotate(0)}50%{transform:rotate(-90deg)}100%{transform:rotate(0)}}
.Overlay_overlay_WpKqM{background:rgba(0,0,0,0);position:absolute;top:0;left:0;right:0;bottom:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;pointer-events:none}.Overlay_button_k15hV{background:url(038f4a.play-circle.svg) center no-repeat;background-size:75px;height:75px;width:75px;pointer-events:none;animation:none;opacity:0}.Overlay_button_k15hV.Overlay_is-visible_f85OU{animation:Overlay_fade-in_IDsS7 .5s linear}:-webkit-full-screen .Overlay_overlay_WpKqM{bottom:0;pointer-events:none}:-ms-fullscreen .Overlay_overlay_WpKqM{bottom:0;pointer-events:none}:fullscreen .Overlay_overlay_WpKqM{bottom:0;pointer-events:none}:-webkit-full-screen .Overlay_button_k15hV{background:url(038f4a.play-circle.svg) center no-repeat;background-size:129px;height:129px;width:129px;pointer-events:none}:-ms-fullscreen .Overlay_button_k15hV{background:url(038f4a.play-circle.svg) center no-repeat;background-size:129px;height:129px;width:129px;pointer-events:none}:fullscreen .Overlay_button_k15hV{background:url(038f4a.play-circle.svg) center no-repeat;background-size:129px;height:129px;width:129px;pointer-events:none}@keyframes Overlay_fade-in_IDsS7{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(2)}}
.ControlsBar_controls-bar_bm6sv{height:40px;box-sizing:content-box;bottom:0;left:0;right:0;position:absolute;z-index:2;align-items:center;display:flex;justify-content:space-between}.ControlsBar_controls-bar_bm6sv.ControlsBar_hide_o0xtC{display:none}.ControlsBar_controls-bar_bm6sv.ControlsBar_fixed_ME3yu{position:fixed}.ControlsBar_background_mDT1e{position:absolute;width:100%;height:80px;bottom:0;background:linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08) 24%, rgba(0, 0, 0, 0.26) 51%, rgba(0, 0, 0, 0.7));pointer-events:none;z-index:-1}.ControlsBar_base-controls_RG979{display:flex}.ControlsBar_base-controls_RG979 .ControlsBar_brand-powtoon_PwqM0{cursor:pointer;background:url(6c449d.brand-powtoon.svg) no-repeat top left;background-size:contain;width:81px;height:18px;margin-left:8px;margin-right:3px}@media(max-width: 343px){.ControlsBar_base-controls_RG979 .ControlsBar_brand-powtoon_PwqM0{display:none}}.ControlsBar_base-controls_RG979 .ControlsBar_brand-powtoon_PwqM0.ControlsBar_padded_ZhaSD{margin-right:15px}.ControlsBar_base-controls_RG979 .ControlsBar_brand-powtoon_PwqM0:focus-visible{outline:2px solid #9dabfd;border-radius:2px}:-webkit-full-screen .ControlsBar_controls-bar_bm6sv{height:120px;z-index:2;align-items:flex-end;padding-bottom:15px}:-ms-fullscreen .ControlsBar_controls-bar_bm6sv{height:120px;z-index:2;align-items:flex-end;padding-bottom:15px}:fullscreen .ControlsBar_controls-bar_bm6sv{height:120px;z-index:2;align-items:flex-end;padding-bottom:15px}:-webkit-full-screen .ControlsBar_controls-bar_bm6sv .ControlsBar_brand-powtoon_PwqM0{background:url(2c47a3.brand-powtoon-big.svg) no-repeat top left;width:135px;height:30px;margin-left:17px;margin-right:0}:-ms-fullscreen .ControlsBar_controls-bar_bm6sv .ControlsBar_brand-powtoon_PwqM0{background:url(2c47a3.brand-powtoon-big.svg) no-repeat top left;width:135px;height:30px;margin-left:17px;margin-right:0}:fullscreen .ControlsBar_controls-bar_bm6sv .ControlsBar_brand-powtoon_PwqM0{background:url(2c47a3.brand-powtoon-big.svg) no-repeat top left;width:135px;height:30px;margin-left:17px;margin-right:0}
.VolumeControl_volume-controls_AhKAp{width:40px;position:relative;display:flex;justify-content:center}.VolumeControl_volume-button__ik0E{cursor:pointer;background:url(92efc4.vol.svg) no-repeat top left;background-size:contain;height:17px;width:21px;z-index:1}.VolumeControl_volume-button__ik0E:hover{background:url(aaa661.vol-hover.svg) no-repeat top left}.VolumeControl_volume-button__ik0E:focus-visible{outline:2px solid #9dabfd;border-radius:2px}.VolumeControl_muted_rFkPQ{background:url(cf3876.vol-muted.svg) no-repeat top left;width:23px}.VolumeControl_muted_rFkPQ:hover{background:url(2eb78f.vol-muted-hover.svg) no-repeat top left}.VolumeControl_volume-slider-container_T6V_f{height:80px;border-top-left-radius:10px;border-top-right-radius:10px;overflow:hidden;position:absolute;bottom:0;left:0;padding-top:20px;padding-bottom:30px;background:linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.26) 38%, rgba(0, 0, 0, 0.7));width:36px;display:flex;justify-content:center;align-items:flex-end}.VolumeControl_volume-slider_k8W5O .rc-slider-rail{background-color:#fff;opacity:.25;width:4px;border-radius:8px}.VolumeControl_volume-slider_k8W5O .rc-slider-track{background-color:#fff;width:4px;border-radius:8px}.VolumeControl_volume-slider_k8W5O .rc-slider-handle{background-color:#fff;margin-left:-5px;margin-bottom:-7px;border:0}:-webkit-full-screen .VolumeControl_volume-controls_AhKAp{width:86px}:-ms-fullscreen .VolumeControl_volume-controls_AhKAp{width:86px}:fullscreen .VolumeControl_volume-controls_AhKAp{width:86px}:-webkit-full-screen .VolumeControl_volume-button__ik0E{background:url(bd01d9.vol-big.svg) no-repeat top left;height:28px;width:35px}:-ms-fullscreen .VolumeControl_volume-button__ik0E{background:url(bd01d9.vol-big.svg) no-repeat top left;height:28px;width:35px}:fullscreen .VolumeControl_volume-button__ik0E{background:url(bd01d9.vol-big.svg) no-repeat top left;height:28px;width:35px}:-webkit-full-screen .VolumeControl_volume-button__ik0E:hover{background:url(ffaacc.vol-hover-big.svg) no-repeat top left}:-ms-fullscreen .VolumeControl_volume-button__ik0E:hover{background:url(ffaacc.vol-hover-big.svg) no-repeat top left}:fullscreen .VolumeControl_volume-button__ik0E:hover{background:url(ffaacc.vol-hover-big.svg) no-repeat top left}:-webkit-full-screen .VolumeControl_muted_rFkPQ{background:url(8986f5.vol-muted-big.svg) no-repeat top left;width:36px}:-ms-fullscreen .VolumeControl_muted_rFkPQ{background:url(8986f5.vol-muted-big.svg) no-repeat top left;width:36px}:fullscreen .VolumeControl_muted_rFkPQ{background:url(8986f5.vol-muted-big.svg) no-repeat top left;width:36px}:-webkit-full-screen .VolumeControl_muted_rFkPQ:hover{background:url(0eddbe.vol-muted-hover-big.svg) no-repeat top left}:-ms-fullscreen .VolumeControl_muted_rFkPQ:hover{background:url(0eddbe.vol-muted-hover-big.svg) no-repeat top left}:fullscreen .VolumeControl_muted_rFkPQ:hover{background:url(0eddbe.vol-muted-hover-big.svg) no-repeat top left}:-webkit-full-screen .VolumeControl_volume-slider-container_T6V_f{height:250px;width:82px;padding-top:50px;padding-bottom:68px}:-ms-fullscreen .VolumeControl_volume-slider-container_T6V_f{height:250px;width:82px;padding-top:50px;padding-bottom:68px}:fullscreen .VolumeControl_volume-slider-container_T6V_f{height:250px;width:82px;padding-top:50px;padding-bottom:68px}:-webkit-full-screen .VolumeControl_volume-slider_k8W5O .rc-slider-rail{width:7px;border-radius:14px;height:100%}:-ms-fullscreen .VolumeControl_volume-slider_k8W5O .rc-slider-rail{width:7px;border-radius:14px;height:100%}:fullscreen .VolumeControl_volume-slider_k8W5O .rc-slider-rail{width:7px;border-radius:14px;height:100%}:-webkit-full-screen .VolumeControl_volume-slider_k8W5O .rc-slider-track{width:7px;border-radius:14px}:-ms-fullscreen .VolumeControl_volume-slider_k8W5O .rc-slider-track{width:7px;border-radius:14px}:fullscreen .VolumeControl_volume-slider_k8W5O .rc-slider-track{width:7px;border-radius:14px}:-webkit-full-screen .VolumeControl_volume-slider_k8W5O .rc-slider-handle{width:23px;height:23px;margin-left:-8px;margin-bottom:-12px}:-ms-fullscreen .VolumeControl_volume-slider_k8W5O .rc-slider-handle{width:23px;height:23px;margin-left:-8px;margin-bottom:-12px}:fullscreen .VolumeControl_volume-slider_k8W5O .rc-slider-handle{width:23px;height:23px;margin-left:-8px;margin-bottom:-12px}
.FullScreenButton_button-container_Uk5sG{width:40px;display:flex;justify-content:center}.FullScreenButton_fullscreen-button_vKwYs{cursor:pointer;background:url(35531a.fullscreen.svg) no-repeat top left;background-size:contain;width:21px;height:17px}.FullScreenButton_fullscreen-button_vKwYs:hover{background:url(c2069e.fullscreen-hover.svg) no-repeat top left}.FullScreenButton_fullscreen-button_vKwYs:focus-visible{outline:2px solid #9dabfd;border-radius:2px}:-webkit-full-screen .FullScreenButton_button-container_Uk5sG{width:86px;margin-left:-20px}:-ms-fullscreen .FullScreenButton_button-container_Uk5sG{width:86px;margin-left:-20px}:fullscreen .FullScreenButton_button-container_Uk5sG{width:86px;margin-left:-20px}:-webkit-full-screen .FullScreenButton_fullscreen-button_vKwYs{background:url(39fee8.exit-fullscreen.svg) no-repeat top left;height:26px;width:26px}:-ms-fullscreen .FullScreenButton_fullscreen-button_vKwYs{background:url(39fee8.exit-fullscreen.svg) no-repeat top left;height:26px;width:26px}:fullscreen .FullScreenButton_fullscreen-button_vKwYs{background:url(39fee8.exit-fullscreen.svg) no-repeat top left;height:26px;width:26px}:-webkit-full-screen .FullScreenButton_fullscreen-button_vKwYs:hover{background:url(6f83d4.exit-fullscreen-hover.svg) no-repeat top left}:-ms-fullscreen .FullScreenButton_fullscreen-button_vKwYs:hover{background:url(6f83d4.exit-fullscreen-hover.svg) no-repeat top left}:fullscreen .FullScreenButton_fullscreen-button_vKwYs:hover{background:url(6f83d4.exit-fullscreen-hover.svg) no-repeat top left}
.SlideshowControls_slideshow-controls_b2Tci{display:flex;font-family:"Open Sans",sans-serif;color:#fff;font-size:12px;font-weight:400;text-align:left;align-items:center}:-webkit-full-screen .SlideshowControls_slideshow-controls_b2Tci{font-size:20px;font-weight:700}:-ms-fullscreen .SlideshowControls_slideshow-controls_b2Tci{font-size:20px;font-weight:700}:fullscreen .SlideshowControls_slideshow-controls_b2Tci{font-size:20px;font-weight:700}
.SlideNavigation_slideshow-navigation_aSqV6{display:flex}.SlideNavigation_next_Q3qhL{background-image:url(0274ae.next.svg)}.SlideNavigation_prev_CJH3R{background-image:url(ca96da.prev.svg)}.SlideNavigation_prev-disabled_BGwhc{cursor:default !important;background-image:url(ab4867.prev-disabled.svg)}.SlideNavigation_restart_WOx7R{cursor:pointer;background-image:url(2fabe0.restart.svg)}.SlideNavigation_restart_WOx7R:hover{background-image:url(0efe5a.restart-hover.svg)}.SlideNavigation_button-container_lQVij .SlideNavigation_next_Q3qhL,.SlideNavigation_button-container_lQVij .SlideNavigation_prev_CJH3R,.SlideNavigation_button-container_lQVij .SlideNavigation_prev-disabled_BGwhc,.SlideNavigation_button-container_lQVij .SlideNavigation_restart_WOx7R{width:40px;height:40px;cursor:pointer;background-position:center;background-repeat:no-repeat}@media screen and (min-width: 1200px){.SlideNavigation_prev_CJH3R:hover{background-image:url(7b4a2a.prev-hover.svg)}.SlideNavigation_next_Q3qhL:hover{background-image:url(890bc1.next-hover.svg)}}:-webkit-full-screen .SlideNavigation_slideshow-navigation_aSqV6{margin:0 15px}:-ms-fullscreen .SlideNavigation_slideshow-navigation_aSqV6{margin:0 15px}:fullscreen .SlideNavigation_slideshow-navigation_aSqV6{margin:0 15px}:-webkit-full-screen .SlideNavigation_next_Q3qhL{background-image:url(b36286.next-big.svg)}:-ms-fullscreen .SlideNavigation_next_Q3qhL{background-image:url(b36286.next-big.svg)}:fullscreen .SlideNavigation_next_Q3qhL{background-image:url(b36286.next-big.svg)}:-webkit-full-screen .SlideNavigation_next_Q3qhL:hover{background-image:url(0a7d47.next-hover-big.svg)}:-ms-fullscreen .SlideNavigation_next_Q3qhL:hover{background-image:url(0a7d47.next-hover-big.svg)}:fullscreen .SlideNavigation_next_Q3qhL:hover{background-image:url(0a7d47.next-hover-big.svg)}:-webkit-full-screen .SlideNavigation_prev_CJH3R{background-image:url(90ce25.prev-big.svg)}:-ms-fullscreen .SlideNavigation_prev_CJH3R{background-image:url(90ce25.prev-big.svg)}:fullscreen .SlideNavigation_prev_CJH3R{background-image:url(90ce25.prev-big.svg)}:-webkit-full-screen .SlideNavigation_prev_CJH3R:hover{background-image:url(d82893.prev-hover-big.svg)}:-ms-fullscreen .SlideNavigation_prev_CJH3R:hover{background-image:url(d82893.prev-hover-big.svg)}:fullscreen .SlideNavigation_prev_CJH3R:hover{background-image:url(d82893.prev-hover-big.svg)}:-webkit-full-screen .SlideNavigation_prev-disabled_BGwhc{background-image:url(c21110.prev-disabled-big.svg)}:-ms-fullscreen .SlideNavigation_prev-disabled_BGwhc{background-image:url(c21110.prev-disabled-big.svg)}:fullscreen .SlideNavigation_prev-disabled_BGwhc{background-image:url(c21110.prev-disabled-big.svg)}:-webkit-full-screen .SlideNavigation_restart_WOx7R{background-image:url(eb8d9f.restart-big.svg)}:-ms-fullscreen .SlideNavigation_restart_WOx7R{background-image:url(eb8d9f.restart-big.svg)}:fullscreen .SlideNavigation_restart_WOx7R{background-image:url(eb8d9f.restart-big.svg)}:-webkit-full-screen .SlideNavigation_restart_WOx7R:hover{background-image:url(d4264b.restart-hover-big.svg)}:-ms-fullscreen .SlideNavigation_restart_WOx7R:hover{background-image:url(d4264b.restart-hover-big.svg)}:fullscreen .SlideNavigation_restart_WOx7R:hover{background-image:url(d4264b.restart-hover-big.svg)}
.SlideshowProgress_slideshow-progress_TUHcz{width:80px;padding:0 5px;display:flex;justify-content:space-around;align-items:center}.SlideshowProgress_circle-progress-container_GGNRo{position:absolute;width:30px;height:30px;margin-top:-6px;margin-left:-9px}.SlideshowProgress_slides-count-start_HZOxm{margin-left:-4px;width:20px;text-align:center}:-webkit-full-screen .SlideshowProgress_slideshow-progress_TUHcz{width:100px;padding:0 10px}:-ms-fullscreen .SlideshowProgress_slideshow-progress_TUHcz{width:100px;padding:0 10px}:fullscreen .SlideshowProgress_slideshow-progress_TUHcz{width:100px;padding:0 10px}:-webkit-full-screen .SlideshowProgress_circle-progress-container_GGNRo{width:38px;height:38px;margin-top:-5px;margin-left:-12px}:-ms-fullscreen .SlideshowProgress_circle-progress-container_GGNRo{width:38px;height:38px;margin-top:-5px;margin-left:-12px}:fullscreen .SlideshowProgress_circle-progress-container_GGNRo{width:38px;height:38px;margin-top:-5px;margin-left:-12px}
.CircleProgress_circle-progress_Qd_Ld{width:100%;height:100%}
.MovieControls_movie-controls_aPwUD{display:flex;align-items:center;font-family:"Open Sans",sans-serif;color:#fff;font-size:12px;font-weight:400;line-height:24px;flex:1;padding-right:5px}:-webkit-full-screen .MovieControls_movie-controls_aPwUD{font-size:20px}:-ms-fullscreen .MovieControls_movie-controls_aPwUD{font-size:20px}:fullscreen .MovieControls_movie-controls_aPwUD{font-size:20px}
.PlayPauseButton_button-container_MlMeX{width:53px;display:flex;justify-content:center}.PlayPauseButton_play_OWZ2b{cursor:pointer;background:url(eacab8.play.svg) no-repeat top left;background-size:contain;height:15px;width:13px}.PlayPauseButton_play_OWZ2b:hover{background:url(d7f96b.play-hover.svg) no-repeat top left}.PlayPauseButton_play_OWZ2b:focus-visible{outline:2px solid #9dabfd;border-radius:2px}.PlayPauseButton_pause_SfBfn{cursor:pointer;background:url(90d00f.pause.svg) no-repeat top left;background-size:contain;height:15px;width:13px}.PlayPauseButton_pause_SfBfn:hover{background:url(80db05.pause-hover.svg) no-repeat top left}.PlayPauseButton_pause_SfBfn:focus-visible{outline:2px solid #9dabfd;border-radius:2px}.PlayPauseButton_restart_BWYgP{cursor:pointer;background:url(2fabe0.restart.svg) no-repeat top left;background-size:contain;height:16px;width:17px}.PlayPauseButton_restart_BWYgP:hover{background:url(0efe5a.restart-hover.svg) no-repeat top left}.PlayPauseButton_restart_BWYgP:focus-visible{outline:2px solid #9dabfd;border-radius:2px}:-webkit-full-screen .PlayPauseButton_button-container_MlMeX{width:92px}:-ms-fullscreen .PlayPauseButton_button-container_MlMeX{width:92px}:fullscreen .PlayPauseButton_button-container_MlMeX{width:92px}:-webkit-full-screen .PlayPauseButton_play_OWZ2b{background:url(d99f96.play-big.svg) no-repeat top left;height:26px;width:23px}:-ms-fullscreen .PlayPauseButton_play_OWZ2b{background:url(d99f96.play-big.svg) no-repeat top left;height:26px;width:23px}:fullscreen .PlayPauseButton_play_OWZ2b{background:url(d99f96.play-big.svg) no-repeat top left;height:26px;width:23px}:-webkit-full-screen .PlayPauseButton_play_OWZ2b:hover{background:url(95c681.play-hover-big.svg) no-repeat top left}:-ms-fullscreen .PlayPauseButton_play_OWZ2b:hover{background:url(95c681.play-hover-big.svg) no-repeat top left}:fullscreen .PlayPauseButton_play_OWZ2b:hover{background:url(95c681.play-hover-big.svg) no-repeat top left}:-webkit-full-screen .PlayPauseButton_pause_SfBfn{background:url(d606b0.pause-big.svg) no-repeat top left;height:25px;width:22px}:-ms-fullscreen .PlayPauseButton_pause_SfBfn{background:url(d606b0.pause-big.svg) no-repeat top left;height:25px;width:22px}:fullscreen .PlayPauseButton_pause_SfBfn{background:url(d606b0.pause-big.svg) no-repeat top left;height:25px;width:22px}:-webkit-full-screen .PlayPauseButton_pause_SfBfn:hover{background:url(078b48.pause-hover-big.svg) no-repeat top left}:-ms-fullscreen .PlayPauseButton_pause_SfBfn:hover{background:url(078b48.pause-hover-big.svg) no-repeat top left}:fullscreen .PlayPauseButton_pause_SfBfn:hover{background:url(078b48.pause-hover-big.svg) no-repeat top left}:-webkit-full-screen .PlayPauseButton_restart_BWYgP{background:url(eb8d9f.restart-big.svg) no-repeat top left;height:25px;width:26px}:-ms-fullscreen .PlayPauseButton_restart_BWYgP{background:url(eb8d9f.restart-big.svg) no-repeat top left;height:25px;width:26px}:fullscreen .PlayPauseButton_restart_BWYgP{background:url(eb8d9f.restart-big.svg) no-repeat top left;height:25px;width:26px}:-webkit-full-screen .PlayPauseButton_restart_BWYgP:hover{background:url(d4264b.restart-hover-big.svg) no-repeat top left}:-ms-fullscreen .PlayPauseButton_restart_BWYgP:hover{background:url(d4264b.restart-hover-big.svg) no-repeat top left}:fullscreen .PlayPauseButton_restart_BWYgP:hover{background:url(d4264b.restart-hover-big.svg) no-repeat top left}
.scrubbler-handle-tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:12px;line-height:1.5;opacity:.9;width:54px;height:39px}.scrubbler-handle-tooltip .scrubbler-handle-tooltip-arrow{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.scrubbler-handle-tooltip .scrubbler-handle-tooltip-inner{padding:8px 10px;font-family:"Open Sans",sans-serif;color:#fff;font-weight:400;text-align:center;text-decoration:none;background-color:#373737;border-radius:6px;box-shadow:0 0 4px rgba(0,0,0,.17)}.scrubbler-handle-tooltip.scrubbler-handle-tooltip-placement-top{padding:5px 0 9px 0}.scrubbler-handle-tooltip.scrubbler-handle-tooltip-placement-top .scrubbler-handle-tooltip-arrow{bottom:9px;margin-left:-5px;border-width:5px 5px 0;border-top-color:#373737;left:50%}.Scrubbler_scrubbler__LSEi{flex:1;margin-right:20px}.Scrubbler_scrubbler__LSEi .rc-slider-rail{background-color:#fff;opacity:.25;height:4px;border-radius:8px}.Scrubbler_scrubbler__LSEi .rc-slider-track{background-color:#304ffe;height:4px;border-radius:8px}.Scrubbler_scrubbler__LSEi .rc-slider-handle{background-color:#304ffe;margin-left:-7px;margin-top:-5px;border:0}.Scrubbler_scrubbler__LSEi .rc-slider-handle:focus-visible{box-shadow:0 0 0 2px #9dabfd;outline:none}:-webkit-full-screen .Scrubbler_scrubbler__LSEi{margin-right:35px}:-ms-fullscreen .Scrubbler_scrubbler__LSEi{margin-right:35px}:fullscreen .Scrubbler_scrubbler__LSEi{margin-right:35px}:-webkit-full-screen .Scrubbler_scrubbler__LSEi .rc-slider-rail{height:7px;border-radius:14px}:-ms-fullscreen .Scrubbler_scrubbler__LSEi .rc-slider-rail{height:7px;border-radius:14px}:fullscreen .Scrubbler_scrubbler__LSEi .rc-slider-rail{height:7px;border-radius:14px}:-webkit-full-screen .Scrubbler_scrubbler__LSEi .rc-slider-track{height:7px;border-radius:14px}:-ms-fullscreen .Scrubbler_scrubbler__LSEi .rc-slider-track{height:7px;border-radius:14px}:fullscreen .Scrubbler_scrubbler__LSEi .rc-slider-track{height:7px;border-radius:14px}:-webkit-full-screen .Scrubbler_scrubbler__LSEi .rc-slider-handle{width:24px;height:24px;margin-left:-12px;margin-top:-8px}:-ms-fullscreen .Scrubbler_scrubbler__LSEi .rc-slider-handle{width:24px;height:24px;margin-left:-12px;margin-top:-8px}:fullscreen .Scrubbler_scrubbler__LSEi .rc-slider-handle{width:24px;height:24px;margin-left:-12px;margin-top:-8px}
.TimeIndicator_time-indicator_enFZn{-webkit-user-select:none;-ms-user-select:none;user-select:none}.TimeIndicator_time-indicator_enFZn:focus-visible{outline:2px solid #9dabfd;border-radius:2px}

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