/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.textLayer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.2;
  line-height: 1.0;
}

.textLayer > div {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  transform-origin: 0% 0%;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;

  background-color: rgb(180, 0, 170);
  border-radius: 4px;
}

.textLayer .highlight.begin {
  border-radius: 4px 0px 0px 4px;
}

.textLayer .highlight.end {
  border-radius: 0px 4px 4px 0px;
}

.textLayer .highlight.middle {
  border-radius: 0px;
}

.textLayer .highlight.selected {
  background-color: rgb(0, 100, 0);
}

.textLayer ::-moz-selection { background: rgb(0,0,255); }

.textLayer ::selection { background: rgb(0,0,255); }

.textLayer ::-moz-selection { background: rgb(0,0,255); }

.textLayer .endOfContent {
  display: block;
  position: absolute;
  left: 0px;
  top: 100%;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.textLayer .endOfContent.active {
  top: 0px;
}

.annotationLayer section {
  position: absolute;
}

.annotationLayer .linkAnnotation > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer .linkAnnotation > a /* -ms-a */  {
  background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7") 0 0 repeat;
}

.annotationLayer .linkAnnotation > a:hover, .annotationLayer .linkAnnotation > a:focus {
  opacity: 0.2;
  background: #ff0;
  box-shadow: 0px 2px 10px #ff0;
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
}

.annotationLayer .textWidgetAnnotation input,
.annotationLayer .textWidgetAnnotation textarea,
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  background-color: rgba(0, 54, 255, 0.13);
  border: 1px solid transparent;
  box-sizing: border-box;
  font-size: 9px;
  height: 100%;
  margin: 0;
  padding: 0 3px;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  font: message-box;
  font-size: 9px;
  resize: none;
}

.annotationLayer .textWidgetAnnotation input[disabled],
.annotationLayer .textWidgetAnnotation textarea[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
.annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
  background: none;
  border: 1px solid transparent;
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
.annotationLayer .buttonWidgetAnnotation.radioButton input:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:focus,
.annotationLayer .buttonWidgetAnnotation.radioButton input:focus {
  border: 1px solid #000;
}

.annotationLayer .textWidgetAnnotation input:focus,
.annotationLayer .textWidgetAnnotation textarea:focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 1px solid transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  background-color: #000;
  content: '';
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 115%;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

.annotationLayer .popupWrapper {
  position: absolute;
  width: 20em;
}

.annotationLayer .popup {
  position: absolute;
  z-index: 200;
  max-width: 20em;
  background-color: #FFFF99;
  box-shadow: 0px 2px 5px #333;
  border-radius: 2px;
  padding: 0.6em;
  margin-left: 5px;
  cursor: pointer;
  font: message-box;
  word-wrap: break-word;
}

.annotationLayer .popup h1 {
  font-size: 1em;
  border-bottom: 1px solid #000000;
  margin: 0;
  padding-bottom: 0.2em;
}

.annotationLayer .popup p {
  margin: 0;
  padding-top: 0.2em;
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.pdfViewer .canvasWrapper {
  overflow: hidden;
}

.pdfViewer .page {
  direction: ltr;
  width: 816px;
  height: 1056px;
  margin: 1px auto -8px auto;
  position: relative;
  overflow: visible;
  border: 9px solid transparent;
  background-clip: content-box;
  -o-border-image: url(/assets/images/shadow-bf677598a57b9539055834af51cf6062.png) 9 9 repeat;
     border-image: url(/assets/images/shadow-bf677598a57b9539055834af51cf6062.png) 9 9 repeat;
  background-color: white;
}

.pdfViewer.removePageBorders .page {
  margin: 0px auto 10px auto;
  border: none;
}

.pdfViewer.singlePageView {
  display: inline-block;
}

.pdfViewer.singlePageView .page {
  margin: 0;
  border: none;
}

.pdfViewer .page canvas {
  margin: 0;
  display: block;
}

.pdfViewer .page canvas[hidden] {
  display: none;
}

.pdfViewer .page .loadingIcon {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/assets/images/loading-icon-faa74e8c61fc64d5edb11613c7eead2c.gif) center no-repeat;
}

.pdfPresentationMode:-webkit-full-screen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

.pdfPresentationMode:fullscreen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{display:none;width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:' ';display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:'';background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s .5s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-delay:0s;transition-duration:0s}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-scrollbar:before{top:2px;bottom:2px;left:2px;right:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:0;bottom:0;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.simplebar-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:scrollbar!important}.simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}

.vjs-svg-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  fill: #FFFFFF;
  height: 1.5em;
  width: 1.5em;
}
.vjs-svg-icon:before {
  content: none !important;
}
.vjs-svg-icon:hover,
.vjs-control:focus .vjs-svg-icon,
.vjs-svg-icon:focus {
  filter: drop-shadow(0 0 0.25em #fff);
}
.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}
@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}
.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play-circle:before {
  content: "\f102";
}
.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}
.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}
.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}
.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}
.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}
.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}
.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}
.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-spinner:before {
  content: "\f10a";
}
.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10b";
}
.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10c";
}
.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-hd:before {
  content: "\f10d";
}
.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}
.vjs-icon-downloading {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-downloading:before {
  content: "\f10f";
}
.vjs-icon-file-download {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-file-download:before {
  content: "\f110";
}
.vjs-icon-file-download-done {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-file-download-done:before {
  content: "\f111";
}
.vjs-icon-file-download-off {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-file-download-off:before {
  content: "\f112";
}
.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-share:before {
  content: "\f113";
}
.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cog:before {
  content: "\f114";
}
.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-square:before {
  content: "\f115";
}
.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f116";
}
.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-outline:before {
  content: "\f117";
}
.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
  content: "\f118";
}
.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f119";
}
.vjs-icon-repeat {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-repeat:before {
  content: "\f11a";
}
.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f11b";
}
.vjs-icon-replay-5, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay-5:before, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder:before {
  content: "\f11c";
}
.vjs-icon-replay-10, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay-10:before, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder:before {
  content: "\f11d";
}
.vjs-icon-replay-30, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay-30:before, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder:before {
  content: "\f11e";
}
.vjs-icon-forward-5, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-forward-5:before, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder:before {
  content: "\f11f";
}
.vjs-icon-forward-10, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-forward-10:before, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder:before {
  content: "\f120";
}
.vjs-icon-forward-30, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-forward-30:before, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder:before {
  content: "\f121";
}
.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f122";
}
.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-next-item:before {
  content: "\f123";
}
.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-previous-item:before {
  content: "\f124";
}
.vjs-icon-shuffle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-shuffle:before {
  content: "\f125";
}
.vjs-icon-cast {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cast:before {
  content: "\f126";
}
.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f127";
}
.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f128";
}
.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-facebook:before {
  content: "\f129";
}
.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-linkedin:before {
  content: "\f12a";
}
.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-twitter:before {
  content: "\f12b";
}
.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-tumblr:before {
  content: "\f12c";
}
.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pinterest:before {
  content: "\f12d";
}
.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f12e";
}
.video-js {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}
.video-js:-moz-full-screen {
  position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js[tabindex="-1"] {
  outline: none;
}
.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}
.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}
.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}
.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}
.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}
.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}
.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}
body.vjs-full-window,
body.vjs-pip-window {
  padding: 0;
  margin: 0;
  height: 100%;
}
.vjs-full-window .video-js.vjs-fullscreen,
body.vjs-pip-window .video-js {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.video-js.vjs-fullscreen:not(.vjs-ios-native-fs),
body.vjs-pip-window .video-js {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  display: block;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
.vjs-pip-container .vjs-pip-text {
  position: absolute;
  bottom: 10%;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5em;
  text-align: center;
  width: 100%;
}
.vjs-layout-tiny.vjs-pip-container .vjs-pip-text,
.vjs-layout-x-small.vjs-pip-container .vjs-pip-text,
.vjs-layout-small.vjs-pip-container .vjs-pip-text {
  bottom: 0;
  font-size: 1.4em;
}
.vjs-hidden {
  display: none !important;
}
.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}
.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}
.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin-top: -0.81666em;
  margin-left: -1.5em;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}
.vjs-big-play-button .vjs-svg-icon {
  width: 0.75em;
  height: 0.75em;
}
.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus,
.video-js:focus .vjs-big-play-button {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}
.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}
.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}
.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}
.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}
.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}
.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}
.vjs-menu-button {
  cursor: pointer;
}
.vjs-menu-button.vjs-disabled {
  cursor: default;
}
.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu, .vjs-workinghover .vjs-menu-button.vjs-disabled:focus .vjs-menu {
  display: none;
}
.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}
.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}
.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu, .vjs-scrubbing .vjs-control.vjs-menu-button:focus .vjs-menu {
  display: none;
}
.vjs-menu li {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:focus {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:focus {
  background-color: #fff;
  color: #2B333F;
}
.vjs-menu li.vjs-selected .vjs-svg-icon,
.vjs-menu li.vjs-selected:focus .vjs-svg-icon,
.vjs-menu li.vjs-selected:hover .vjs-svg-icon,
.js-focus-visible .vjs-menu li.vjs-selected:hover .vjs-svg-icon,
.js-focus-visible .vjs-menu li.vjs-selected:focus .vjs-svg-icon {
  fill: #000000;
}
.video-js .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}
.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}
.vjs-pip-window .vjs-menu-button-popup .vjs-menu {
  left: unset;
  right: 1em;
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}
.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}
.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}
.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}
.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}
.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}
.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active {
  width: 12em;
}
.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}
.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}
.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}
.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}
.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}
.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}
.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}
.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}
.vjs-button > .vjs-icon-placeholder {
  display: block;
}
.vjs-button > .vjs-svg-icon {
  display: inline-block;
}
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}
.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.video-js .vjs-custom-control-spacer {
  display: none;
}
.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}
.video-js .vjs-progress-control.disabled {
  cursor: default;
}
.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}
.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}
.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder, .video-js .vjs-progress-control:focus .vjs-progress-holder {
  font-size: 1.6666666667em;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled, .video-js .vjs-progress-control:focus .vjs-progress-holder.disabled {
  font-size: 1em;
}
.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}
.video-js .vjs-play-progress {
  background-color: #fff;
}
.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  line-height: 0.35em;
  z-index: 1;
}
.vjs-svg-icons-enabled .vjs-play-progress:before {
  content: none !important;
}
.vjs-play-progress .vjs-svg-icon {
  position: absolute;
  top: -0.35em;
  right: -0.4em;
  width: 1em;
  height: 1em;
  pointer-events: none;
  line-height: 0.15em;
  z-index: 1;
}
.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}
.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}
.vjs-progress-control:hover .vjs-progress-holder .vjs-play-progress .vjs-svg-icon, .vjs-progress-control:focus .vjs-progress-holder .vjs-play-progress .vjs-svg-icon {
  width: 0.8em;
  height: 0.8em;
  top: -0.25em;
  right: -0.5em;
  line-height: 0.35em;
}
.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}
.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:focus .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}
.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip, .video-js .vjs-progress-control.disabled:focus .vjs-time-tooltip {
  font-size: 1em;
}
.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}
.video-js .vjs-progress-control:hover .vjs-mouse-display, .video-js .vjs-progress-control:focus .vjs-mouse-display {
  display: block;
}
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}
.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}
.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari, and Chrome 53 */
  -webkit-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  -moz-user-select: none;
       user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-slider.disabled {
  cursor: default;
}
.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}
.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}
.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}
.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}
.video-js .vjs-volume-panel {
  transition: width 1s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}
.video-js .vjs-volume-panel {
  display: flex;
}
.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}
.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}
.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}
.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}
.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}
.vjs-svg-icons-enabled .vjs-volume-level:before {
  content: none;
}
.vjs-volume-level .vjs-svg-icon {
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: -0.55em;
  pointer-events: none;
}
.vjs-mute-control .vjs-svg-icon {
  width: 1.75em;
  height: 1.75em;
}
.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
  line-height: 0.35em;
  right: -0.5em;
}
.vjs-slider-horizontal .vjs-volume-level .vjs-svg-icon {
  top: -0.15em;
  right: -0.3em;
  line-height: 0.05em;
}
.vjs-slider-vertical .vjs-volume-level .vjs-svg-icon {
  top: -0.9em;
  right: -0.15em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}
.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}
.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}
.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}
.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}
.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}
.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip,
.video-js .vjs-volume-control:focus .vjs-volume-tooltip,
.video-js .vjs-volume-control:focus .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}
.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:focus .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:focus .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}
.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip, .video-js .vjs-volume-control.disabled:focus .vjs-volume-tooltip {
  font-size: 1em;
}
.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}
.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}
.video-js .vjs-volume-control:hover .vjs-mouse-display, .video-js .vjs-volume-control:focus .vjs-mouse-display {
  display: block;
}
.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}
.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}
.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}
.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster,
.vjs-pip-container.vjs-has-started .vjs-poster {
  display: block;
}
.vjs-poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}
.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}
.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}
.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}
.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}
.vjs-svg-icons-enabled .vjs-seek-to-live-control {
  line-height: 0;
}
.vjs-seek-to-live-control .vjs-svg-icon {
  width: 1em;
  height: 1em;
  pointer-events: none;
  fill: #888888;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-svg-icon {
  fill: red;
}
.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}
.vjs-live .vjs-time-control,
.vjs-live .vjs-time-divider,
.video-js .vjs-current-time,
.video-js .vjs-duration {
  display: none;
}
.vjs-time-divider {
  display: none;
  line-height: 3em;
}
.video-js .vjs-play-control {
  cursor: pointer;
}
.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}
.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}
.vjs-subtitles {
  color: #fff;
}
.vjs-captions {
  color: #fc6;
}
.vjs-tt-cue {
  display: block;
}
video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}
.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}
.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}
.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control,
.vjs-pip-window .vjs-picture-in-picture-control {
  display: none;
}
.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}
.video-js.vjs-audio-only-mode .vjs-fullscreen-control,
.vjs-pip-window .vjs-fullscreen-control {
  display: none;
}
.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}
.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}
.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}
.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  text-align: left;
  border: 0.6em solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  visibility: hidden;
}
.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}
.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -0.6em;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}
.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  animation-delay: 0.44s;
}
@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}
.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}
.vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-svg-icon {
  margin-left: 0.3em;
}
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10c";
  font-size: 1.5em;
  line-height: inherit;
}
.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}
.video-js .vjs-audio-button + .vjs-menu .vjs-description-menu-item .vjs-menu-item-text .vjs-icon-placeholder,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}
.video-js .vjs-audio-button + .vjs-menu .vjs-description-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f12e";
  font-size: 1.5em;
  line-height: inherit;
}
.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:focus, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:focus, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:focus {
  width: auto;
  width: initial;
}
.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}
.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}
.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}
.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}
.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}
.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}
@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-text-track-settings select {
  font-size: inherit;
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.vjs-text-track-settings fieldset {
  margin: 10px;
  border: none;
}
.vjs-text-track-settings fieldset span {
  display: inline-block;
  padding: 0 0.6em 0.8em;
}
.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}
.vjs-text-track-settings legend {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}
.vjs-text-track-settings .vjs-label {
  margin: 0 0.5em 0.5em 0;
}
.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}
.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}
.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}
.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}
.vjs-title-bar {
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  font-size: 1.2em;
  line-height: 1.5;
  transition: opacity 0.1s;
  padding: 0.666em 1.333em 4em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.vjs-title-bar-title,
.vjs-title-bar-description {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vjs-title-bar-title {
  font-weight: bold;
  margin-bottom: 0.333em;
}
.vjs-playing.vjs-user-inactive .vjs-title-bar {
  opacity: 0;
  transition: opacity 1s;
}
.video-js .vjs-skip-forward-5 {
  cursor: pointer;
}
.video-js .vjs-skip-forward-10 {
  cursor: pointer;
}
.video-js .vjs-skip-forward-30 {
  cursor: pointer;
}
.video-js .vjs-skip-backward-5 {
  cursor: pointer;
}
.video-js .vjs-skip-backward-10 {
  cursor: pointer;
}
.video-js .vjs-skip-backward-30 {
  cursor: pointer;
}
@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}
.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}
.video-js *:focus:not(.focus-visible) {
  outline: none;
}

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */ /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.rcs-custom-scroll{min-height:0;min-width:0}

.rcs-custom-scroll .rcs-outer-container{overflow:hidden}

.rcs-custom-scroll .rcs-outer-container .rcs-positioning{position:relative}

.rcs-custom-scroll .rcs-outer-container:hover .rcs-custom-scrollbar,.rcs-custom-scroll .rcs-outer-container:focus .rcs-custom-scrollbar{opacity:1;transition-duration:0.2s}

.rcs-custom-scroll .rcs-inner-container{overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}

.rcs-custom-scroll .rcs-inner-container:after{content:'';position:absolute;top:0;right:0;left:0;height:0;background-image:linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0) 100%);pointer-events:none;transition:height 0.1s ease-in;will-change:height}

.rcs-custom-scroll .rcs-inner-container.rcs-content-scrolled:after{height:5px;transition:height 0.15s ease-out}

.rcs-custom-scroll.rcs-scroll-handle-dragged .rcs-inner-container{-webkit-user-select:none;-moz-user-select:none;user-select:none}

.rcs-custom-scroll .rcs-custom-scrollbar{position:absolute;height:100%;width:6px;right:3px;opacity:0;z-index:1;transition:opacity 0.4s ease-out;padding:6px 0;box-sizing:border-box;will-change:opacity;pointer-events:none}

.rcs-custom-scroll .rcs-custom-scrollbar.rcs-custom-scrollbar-rtl{right:auto;left:3px}

.rcs-custom-scroll.rcs-scroll-handle-dragged .rcs-custom-scrollbar{opacity:1}

.rcs-custom-scroll .rcs-custom-scroll-handle{position:absolute;width:100%;top:0}

.rcs-custom-scroll .rcs-inner-handle{height:calc(100% - 12px);margin-top:6px;background-color:rgba(78,183,245,0.7);border-radius:3px}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_300.ttf)
    format('truetype');

  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_300_italic.ttf)
    format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_400.ttf)
    format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_400_italic.ttf)
    format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_500.ttf)
    format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_500_italic.ttf)
    format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_700.ttf)
    format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_700_italic.ttf)
    format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_800.ttf)
    format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tuna';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/Tuna/Tuna_800_italic.ttf)
    format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200_italic.ttf)
    format('truetype');
  font-style: italic;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300_italic.ttf)
    format('truetype');
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400_italic.ttf)
    format('truetype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600_italic.ttf)
    format('truetype');
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700_italic.ttf)
    format('truetype');
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900.ttf)
    format('truetype');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900_italic.ttf)
    format('truetype');
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

/*-------------------------- */

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200_italic.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200_italic.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200_italic.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200_italic.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_200_italic.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300_italic.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300_italic.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300_italic.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300_italic.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_300_italic.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400_italic.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400_italic.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400_italic.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400_italic.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_400_italic.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600_italic.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600_italic.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600_italic.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600_italic.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_600_italic.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700_italic.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700_italic.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700_italic.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700_italic.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_700_italic.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900_italic.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900_italic.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900_italic.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900_italic.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900_italic.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSansPro/SourceSansPro_900.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_400.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_400.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_400.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_400.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_400.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_600.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_600.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_600.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_600.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_600.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_700.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_700.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_700.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro_700.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/SourceSerifPro/SourceSerifPro700.ttf)
      format('truetype');
}

@font-face {
  font-family: 'Kaushan Script';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/KaushanScript/KaushanScript_400.eot);
  src: local(''),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/KaushanScript/KaushanScript_400.eot?#iefix)
      format('embedded-opentype'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/KaushanScript/KaushanScript_400.woff2)
      format('woff2'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/KaushanScript/KaushanScript_400.woff)
      format('woff'),
    url(https://res.cloudinary.com/dylsvi3ok/raw/upload/v1644406598/Fonts/KaushanScript/KaushanScript_400.ttf)
      format('truetype');
}

/*** Table of Contents ***/

/**  Colors   **/

/***  Body    ***/

/***  Links   ***/

/***  Fonts   ***/

/***  Headings ***/

/***  Navbar  ***/

/***  Other  ***/

:root {

  /* Reassign color vars to semantic color scheme */

  /* Body */

  /* Links */

  /* Fonts */ /* 52/16 */ /* 32/16 */ /* 24/16 */ /* 22/16 */ /* 20/16 */ /* 18/16 */ /* 16/16 */ /* 15/16 */ /* 14/16 */

  /* Shadows */

  /* Headings */

  /* Navbar */
}

/*
** Breakpoints
** Make sure these breakpoints correspond
** with the breakpoint in _variables.css
*/

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
}

h1,
.h1 {
  font-size: 2.25rem; /* 36/16 */
  font-weight: inherit;
}

h2,
.h2 {
  font-size: 1.75rem;
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: inherit;
}

h4,
.h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

h5,
.h5 {
  font-size: inherit;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 0.875rem;
  font-weight: 700;
}

/*
** IE 10 fixes
*/

input[type='text']::-ms-clear {
  display: none;
}

iframe {
  border: 0;
}

/* Print page style */

@page {
  margin: 2cm;
}

q {
  quotes: '«' '»' '‹' '›' '«' '»';
}

/*
** Components
*/

.akn {

    /*
      authorialNote makes use of the HTML <details> element for opening/closing the note.
      This element is not supported in IE (it will always show as open)
     */
}

.akn__blockList,
    .akn__list,
    .akn__citations,
    .akn__recitals {
      padding-left: 2rem;
      list-style: none;
    }

.akn__item,
    .akn__point,
    .akn__citation,
    .akn__recital {
      position: relative;
    }

.akn__item > .akn__num, .akn__point > .akn__num, .akn__citation > .akn__num, .akn__recital > .akn__num {
        position: absolute;
        left: -2rem;
        width: 1.5rem;
        text-align: right;
      }

.akn__item .akn__p:nth-of-type(1), .akn__point .akn__p:nth-of-type(1), .akn__citation .akn__p:nth-of-type(1), .akn__recital .akn__p:nth-of-type(1) {
        margin-top: 0;
      }

.akn__citations,
    .akn__recitals {
      padding-left: 3rem;
    }

.akn__citation,
    .akn__recital > .akn__num {
      left: -3rem;
    }

.akn__subheading {
      padding-left: 1rem;
    }

.akn__quotedStructure {
      background: #e8dcd6;

      margin: 0.5rem 0;
      padding: 0.1rem 1rem;
    }

.akn__quotedStructure .akn__articleHeading {
        display: block;
        text-indent: 0;
        margin: 0;
        padding: 1rem 0;
        font-size: 1.25rem;
      }

.akn__quotedStructure .akn__num {
        font-size: 1.125rem;
      }

.akn__table {
      margin: 1rem auto;
      overflow-x: scroll;
      border-collapse: collapse;
      display: block;
    }

.akn__table td,
      .akn__table th {
        padding: 1rem;
        border: solid 0.0625rem #8f8d90;
      }

.akn__table td p, .akn__table th p {
          margin: 0;
        }

.akn__table th {
        vertical-align: top;
        text-align: left;
        background-color: #f1f2f2;
        font-size: 1rem;
        font-weight: 600;
        text-transform: capitalize;
      }

.akn__note {
      font-size: 0.875rem;
      font-weight: 500;
}

.akn__note .akn__p {
        display: inline;
      }

.akn__intro {
      text-indent: 1rem;
}

.akn__content {
      text-indent: 1rem;
}

.akn__list {
      text-indent: 1rem;
}

.akn__paragraph:last-child {
        margin-bottom: 1rem;
      }

.akn__paragraph .akn__paragraphHeading {
        margin: 0 0 1rem 0;
        font-family: 'Tuna';
        font-size: 1.125rem;
        font-weight: 500;
        text-indent: 0;
      }

.akn__subparagraph .akn__subparagraphHeading {
        margin: 0 0 1rem 0;
        font-family: 'Tuna';
        font-size: 0.938rem;
        font-weight: 600;
        text-indent: 0;
      }

.akn__authorialNote {
      display: inline;
      text-indent: 0;
}

/* the following is somehow absolutely needed to make summary marker inline when open */

.akn__authorialNote[open] {
        /* autoprefixer: ignore next */
        display: contents;
      }

.akn__authorialNote summary {
        color: #00478c;
        font-weight: 600;
        font-size: 80%;
        vertical-align: text-top;
        cursor: pointer;
        display: inline;
      }

.akn__authorialNote summary::marker {
          display: none;
          list-style: none;
        }

.akn__authorialNote summary::-webkit-details-marker {
          display: none;
        }

.akn__authorialNote div {
        margin: 0.5rem 0;
        padding: 1rem;
        background: #e8dcd6;
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1rem;
        font-weight: 400;
      }

/*
  the following make headings run-in (inline) if they are just a number with no other text
*/

.isNumericOnlyHeading {
  clear: both;
  float: left;
  display: inline-block;
  margin: 0 !important;
  /* need to use same font as text when inlining heading, to avoid line height inconsistencies */
  font-family: 'Source Sans Pro', sans-serif !important;
  font-weight: 600 !important;
}

a.c-btn {
  text-decoration: none;
}

.c-btn {
  display: inline-flex;
  background: transparent;
  align-items: center;
  padding: 2px 7px;
  border: none;
  border-radius: 0.125rem;
  font-weight: 600;
  white-space: nowrap;
  outline: none;
  color: #29282e;
  letter-spacing: 0.0313rem;
  text-align: left;
  cursor: pointer;

  /*
  **  Button size modifiers
  */

  /*
  ** Button themes
  */

  /* TODO:
  ** Find a better name for this modifier
  */

  /*
  ** Icon styles
  */
}

.c-btn svg {
    display: flex;
    align-items: center;
    width: 1rem;
    height: 1rem;
  }

.c-btn:hover,
  .c-btn:active,
  .c-btn:visited,
  .c-btn:focus {
    color: inherit;
    text-decoration: none !important;
  }

.c-btn--isSmall {
    padding: 0.375rem 0.6875rem;
    font-size: 0.875rem;
}

.c-btn--isBig {
    padding: 6px 11px;
}

.c-btn--isHuge {
    padding: 20px 30px;
    border-radius: 0.25rem;
    font-size: 1.25rem;
}

.c-btn--isDefault {
    background: #e1e0e1;
    color: #29282e;
}

.c-btn--isDisabled {
    opacity: 0.35;
    pointer-events: none;
}

.c-btn--isSecondary {
    background: #291547;
}

.c-btn--isSecondary,
    .c-btn--isSecondary:hover,
    .c-btn--isSecondary:active,
    .c-btn--isSecondary:visited,
    .c-btn--isSecondary:focus {
      color: #ffffff;
      text-decoration: none !important;
      background-color: #463460;
    }

.c-btn--isSecondaryInverted,
    .c-btn--isSecondaryInverted:hover,
    .c-btn--isSecondaryInverted:active,
    .c-btn--isSecondaryInverted:visited,
    .c-btn--isSecondaryInverted:focus {
      color: #463460;
      text-decoration: none !important;
    }

.c-btn--isPrimary {
    background: #d6142b;
}

.c-btn--isPrimary,
    .c-btn--isPrimary:hover,
    .c-btn--isPrimary:active,
    .c-btn--isPrimary:visited,
    .c-btn--isPrimary:focus {
      color: #ffffff;
      text-decoration: none !important;
    }

.c-btn--isPrimaryInverted,
    .c-btn--isPrimaryInverted:hover,
    .c-btn--isPrimaryInverted:active,
    .c-btn--isPrimaryInverted:visited,
    .c-btn--isPrimaryInverted:focus {
      color: #d6142b;
      text-decoration: none !important;
    }

.c-btn--isOceanBlueInverted,
    .c-btn--isOceanBlueInverted:hover,
    .c-btn--isOceanBlueInverted:active,
    .c-btn--isOceanBlueInverted:visited,
    .c-btn--isOceanBlueInverted:focus {
      color: #00478c;
    }

.c-btn--isUnderlined {
    text-decoration: underline;
}

.c-btn--isInverted {
    color: white;
}

.c-btn__text {
    display: inline-block;
}

.c-btn__text--hasIconLeft {
      margin-left: 0.4375rem;
}

.c-btn__text--hasIconRight {
      margin-right: 0.4375rem;
}

.c-btn__rightIcon {
    display: flex;
}

.c-btn__rightIcon--isPrimary svg *, .c-btn__rightIcon--isSecondary svg * {
        fill: #ffffff;
      }

.c-btn__rightIcon--isPrimaryInverted svg * {
        fill: #d6142b;
      }

.c-btn__rightIcon--isOceanBlueInverted svg * {
        fill: #00478c;
      }

.c-btn__rightIcon--isSmall {
      margin-left: 0.55rem;
}

.c-btn__rightIcon--isSmall svg {
        width: 12px;
        height: 12px;
      }

.c-btn__rightIcon--isHuge {
      margin-left: 0.55rem;
}

.c-btn__rightIcon--isHuge svg {
        width: 1.25rem;
        height: 1.25rem;
      }

.c-btn__leftIcon {
    display: flex;
}

.c-btn__leftIcon--isPrimary svg *, .c-btn__leftIcon--isSecondary svg * {
        fill: #ffffff;
      }

.c-btn__leftIcon--isPrimaryInverted svg * {
        fill: #d6142b;
      }

.c-btn__leftIcon--isOceanBlueInverted svg * {
        fill: #00478c;
      }

.c-btn__leftIcon--isSmall {
      margin-right: 0.55rem;
}

.c-btn__leftIcon--isSmall svg {
        width: 12px;
        height: 12px;
      }

.c-btn__leftIcon--isHuge {
      margin-right: 0.55rem;
}

.c-btn__leftIcon--isHuge svg {
        width: 1.25rem;
        height: 1.25rem;
      }

.article {

  /* ===============
   Book Reviews
   =============== */
}

/* ===============
   Global
   =============== */

.article h1,
  .article h2,
  .article h3,
  .article h4,
  .article h5 {
    margin: 0.75rem 0;
  }

/* ===============
   Article Metadata
   =============== */

.article .articleMeta,
  .article .body,
  .article .back {
    margin: 2.5rem 0;
  }

.article .articleTitle,
  .article .transTitle,
  .article .titleGroup__subtitle,
  .article .subtitle,
  .article .transTitleGroup__transTitle,
  .article .transTitleGroup__transSubtitle {
    font-family: 'Tuna';
  }

.article .articleTitle {
    font-size: 2.5rem;
    font-weight: 300;
  }

.article .titleGroup__subtitle,
  .article .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.019rem;
  }

.article .transTitleGroup__transTitle {
    margin: 2.5rem 0 0.5rem;
    font-size: 1.375rem;
  }

.article .transTitleGroup__transSubtitle {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }

.article .contribGroup,
    .article .contribGroup .contrib {
      margin-top: 1.5rem;
    }

.article .contribGroup .name,
    .article .contribGroup .bio,
    .article .contribGroup .bio .avsnitt,
    .article .contribGroup .email {
      margin: 0.5rem 0;
    }

.article .contribGroup .name {
      font-weight: 600;
    }

.article .contribGroup .role {
      margin: 0;
    }

.article .contribGroup .institution {
      margin: 0 0 0.5rem 0;
    }

.article .contribGroup .bio {
      font-style: italic;
    }

.article .pubInfo {
    margin: 2.5rem 0 1.5rem;
    font-size: 0.938rem;
  }

.article .pubInfo p {
      margin: 0;
    }

.article .readingTimeInfo {
    color: #5c5b5f;
    margin: 0 0 1.5rem 0;
    font-size: 0.875rem;
  }

.article .readingTimeInfo .readingTimeIcon {
      background-image: url(/assets/images/time-ce88e0aa4718b7a255ccb420fab8976a.svg);
      background-size: 0.8rem 0.8rem;
      margin: 0 0.4rem 0.15rem 0;
      width: 0.8rem;
      height: 0.8rem;
      display: inline-block;
      vertical-align: middle;
    }

.article .abstract {
    margin: 1.5rem 0 1rem;
  }

.article .transAbstract {
    margin: 0.5rem 0;
  }

.article .abstract,
  .article .transAbstract {
    line-height: 1.33;
    letter-spacing: 0.013rem;
    font-size: 1rem;
  }

.article .abstract__title, .article .transAbstract__title {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.019rem;
      margin: 0.5rem 0;
    }

.article .abstract__title + .avsnitt, .article .transAbstract__title + .avsnitt {
      margin-top: 0.5rem;
    }

.article .abstract .avsnitt:last-child, .article .transAbstract .avsnitt:last-child {
      margin-bottom: 0.5rem;
    }

.article .permissions {
    margin: 2.5rem 0;
    font-size: 0.938rem;
  }

.article .permissions p {
      margin: 0;
    }

.article .keywordGroup {
    margin: 0.5rem 0 2.5rem;
    font-size: 0.938rem;
  }

.article .keywordGroup__title {
      display: inline-block;
      margin: 0;
      font-family: 'Source Sans Pro', sans-serif;
      font-size: 1rem;
      font-weight: 400;
    }

.article .keywordGroup__kwds {
      color: #444;
    }

.article .kwdGroup {
    margin: 0.5rem 0 2.5rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
  }

.article .kwdGroup,
    .article .kwdGroup__title {
      display: inline-block;
      margin: 0 0.313rem 0 0;
      font-family: 'Source Sans Pro', sans-serif;
      font-size: 0.938rem;
      font-weight: 400;
    }

.article .kwdGroup__title:after {
      content: ': ';
    }

.article .kwdGroup__list {
      display: inline;
      margin: 0;
      list-style: none;
      padding: 0;
      color: #444;
    }

.article .kwdGroup .kwd {
      display: inline-block;
    }

.article .kwdGroup .kwd:not(:last-child) {
        margin-right: 0.313rem;
      }

.article .kwdGroup .kwd:not(:last-child):after {
          content: ',';
        }

/* ===============
   Body
   =============== */

.article .body {
    font-size: 1.125rem;
    letter-spacing: 0.013rem;
    line-height: 1.33;
  }

.article .avsnitt {
    margin: 1rem 0;
  }

/* === Ingress === */

.article .leadParagraph {
    font-size: 1.375rem;
  }

.article .leadParagraph:first {
      margin-top: 2.5rem;
    }

.article .leadParagraph:last {
      margin-bottom: 2.5rem;
    }

/* === Section === */

.article .sec__title {
      font-family: 'Tuna';
    }

.article .sec__title + .avsnitt {
        margin-top: 0.75rem;
      }

.article .sec__level1 {
      margin: 3.75rem 0 2.5rem;
    }

.article .sec__level1 > .sec__title {
        font-size: 1.375rem;
      }

.article .sec__level2 {
      margin: 1rem 0 2.5rem;
    }

.article .sec__level2 > .sec__title {
        font-size: 1.125rem;
      }

.article .sec p + .sec__level2 .sec__title {
        margin-top: 2.5rem;
      }

.article .sec__level3 {
      margin: 2.5rem 0;
    }

.article .sec__level3 > .sec__title {
        font-size: 1.125rem;
        font-weight: 400;
        letter-spacing: 0.4px;
        font-style: italic;
      }

.article .sec__level4 {
      margin: 2.5rem 0;
    }

.article .sec__level4 > .sec__title {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0.4px;
      }

/* === Quote and Verse === */

.article .dispQuote {
    margin: 0 30px;
    font-family: 'Source Serif Pro', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
  }

@media only screen and (min-width: 768px) {

.article .dispQuote {
      margin: 0 3.75rem
  }
    }

.article .verseGroup {
    margin: 2.5rem 0;
  }

.article .verseGroup .verseGroup__title {
      font-family: 'Tuna';
      font-size: 1.125rem;
      font-weight: 400;
    }

.article .verseGroup .verseLine {
      margin: 0;
      font-family: 'Tuna';
      font-size: 1rem;
      letter-spacing: 0.019rem;
      line-height: 1.33;
    }

.article .verseGroup .verseLine--isSeparator {
        height: 1rem;
      }

.article .verseGroup .attrib {
      margin: 0.75rem 0;
      color: #444;
      font-size: 0.938rem;
    }

/* === Petit === */

.article .petit {
    font-size: 0.938rem;
    color: #444;
    line-height: 1.375rem;
  }

/* === Boxed text === */

.article .boxedText {
    margin: 2.5rem 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }

.article .boxedText .avsnitt:last-child {
      margin-bottom: 0.75rem;
    }

/* === Footnote === */

.article .fn__actionBtn {
  background: transparent;
  border: none;
  outline: none;

      padding: 0;
      color: #00478c;
      font-size: 0.75rem;
      font-weight: 700;
    }

.article .footnotes {
    display: none;
    list-style: none;
    padding: 0;
  }

.article .footnotes .footnote {
      display: flex;
      padding: 0;
      background: none;
    }

.article .footnotes .footnote__link {
        margin-right: 10px;
        color: #00478c;
        font-weight: 600;
        text-decoration: none;
      }

.article .footnotes .footnote__content span:first-child {
        margin-top: 0;
      }

@media print {

.article .footnotes {
      display: inline;
      display: initial
  }
    }

.article .footnote {
    display: none;
    overflow: hidden;
    margin: 0.75rem 0;
    padding: 1rem;
    color: #29282e;
    background: #e8dcd6;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
  }

.article .footnote__counter {
      font-size: 0.75rem;
      font-weight: 700;
      vertical-align: top;
    }

.article .footnote__avsnitt {
      display: block;
      margin: 1rem 0;
    }

.article .footnote__avsnitt:last-child {
        margin-bottom: 0;
      }

.article .footnote__counter + span {
      display: inline;
    }

.article .footnote--isOpen {
      display: block;
      width: -moz-fit-content;
      width: fit-content;
    }

.article .listItem .footnote {
    margin: 0.75rem 0 0;
  }

/* === Figure === */

.article .fig {
    margin: 2.5rem 0;
  }

.article .fig .label {
      margin: 0.25rem 0 0.75rem;
      font-size: 1rem;
      font-style: italic;
    }

.article .fig .caption .avsnitt:first-child {
        margin-top: 0.75rem;
      }

.article .fig .caption .avsnitt:last-child {
        margin-bottom: 0.75rem;
      }

.article .fig .attrib,
    .article .fig .permissions,
    .article .fig .copyrightHolder {
      color: #444;
      font-size: 0.938rem;
    }

.article .fig .attrib,
      .article .fig .attrib p,
      .article .fig .permissions,
      .article .fig .permissions p,
      .article .fig .copyrightHolder,
      .article .fig .copyrightHolder p {
        margin: 0;
      }

.article .fig .attrib {
      margin-top: 0.75rem;
    }

/* === Graphic === */

.article .styledContent {
    display: inline-block;
  }

/* === External link and Crossreference === */

.article .inlineGraphic {
    height: inherit;
    background: #f1f2f2;
    vertical-align: middle;
  }

.article .graphic {
    max-width: 100%;
    background: #f1f2f2;
  }

/* === Lists === */

.article .sec > .listWrapper {
    margin: 1.5rem 0;
  }

.article .sec > .listWrapper > .list {
    padding-left: 1.125rem;
  }

.article .list {
    margin: 0;
  }

.article .list__title {
      font-family: 'Tuna';
      font-size: 1.125rem;
      font-weight: 400;
    }

.article .list--isAlphaLower {
      list-style-type: lower-alpha;
    }

.article .list--isAlphaUpper {
      list-style-type: upper-alpha;
    }

.article .list--isRomanLower {
      list-style-type: lower-roman;
    }

.article .list--isRomanUpper {
      list-style-type: upper-roman;
    }

.article .list--isSimple {
      list-style: none;
    }

.article .list--isBullet {
      list-style-type: disc;
    }

.article .list--isNumber {
      list-style-type: decimal;
    }

.article .list .listItem .avsnitt {
        margin: 0;
      }

/* === Table === */

.article .tableWrap {
    margin: 2.5rem 0;
    overflow-x: auto;
  }

.article .tableWrap .caption {
      font-family: 'Tuna';
      font-size: 1.125rem;
      font-weight: 400;
      text-align: left;
    }

.article .tableWrap .caption p:first-child {
        margin-top: 0.75rem;
      }

.article .tableWrap .caption p:last-child {
        margin-bottom: 0.75rem;
      }

.article .tableWrap .label {
      margin: 0.25rem 0 0.75rem;
      font-size: 1rem;
      font-style: italic;
    }

.article .tableWrap .thead {
    }

.article .tableWrap .tbody {
    }

.article .tableWrap .tr {
    }

.article .tableWrap .td,
    .article .tableWrap .th {
      padding: 1rem;
      border: solid 1px #8f8d90;
    }

.article .tableWrap .td .sub,
      .article .tableWrap .td .sup,
      .article .tableWrap .th .sub,
      .article .tableWrap .th .sup {
        font-size: 0.75rem;
      }

.article .tableWrap .th {
      vertical-align: top;
      text-align: left;
      background-color: #f1f2f2;
      font-size: 1rem;
      font-weight: 600;
      text-transform: capitalize;
    }

.article .tableWrap .th em {
        font-style: normal;
      }

.article .tableWrap .td {
      font-size: 1rem;
      vertical-align: text-top;
    }

.article .tableWrap .tableWrapFoot {
      font-size: 0.938rem;
      text-align: left;
    }

.article .tableWrapTransparent {
    /* also stop horizontal overflow of table: */
  }

.article .tableWrapTransparent .td {
      border: none;
    }

.article .tableWrapTransparent {
    width: auto !important;
}

/* === Ref List === */

.article .refListWrapper {
    margin: 2.5rem 0;
  }

/* ===============
   Back
   =============== */

.article .refList {
    list-style: none;
    padding: 0;
  }

.article .refList__title {
      margin-bottom: 0.5rem;
      font-size: 1rem;
      font-weight: 600;
    }

.article .refList .ref {
      margin-bottom: 0.75rem;
    }

.article .refList .ref * {
        display: inline;
        font-size: 0.938rem;
        font-weight: 400;
      }

/* === Citations === */

.article .mixedCitation {
  }

.article .elementCitation .source {
    }

.article .elementCitation .articleTitle {
      font-style: italic;
    }

.article .elementCitation .volume {
    }

.article .elementCitation .issue {
    }

.article .elementCitation .fpage {
    }

.article .elementCitation .lpage {
    }

.article .elementCitation .surname {
    }

.article .elementCitation .given-name {
    }

.article .elementCitation .year {
    }

.article .elementCitation .month {
    }

.article .elementCitation .day {
    }

.article .elementCitation .publisher-loc {
    }

.article .elementCitation .publisher-name {
    }

.article .elementCitation__isBook {
    }

.article .elementCitation__isJournal {
    }

.article .elementCitation__isOther {
    }

.article .boxedText {
    margin: 2.5rem 0;
    border-top: 0.0625rem solid black;
    border-bottom: 0.0625rem solid black;
  }

.article .boxedText,
    .article .boxedText .sec__title {
      font-size: 1rem;
      font-weight: 600;
    }

.article .boxedText .sec {
      margin: 0;
    }

.article .boxedText .avsnitt:last-child {
      margin-bottom: 0.75rem;
    }

/* Part I: Component class names, controlled by react */

@media only screen and (min-width: 1024px) {

.c-newsArticle .c-juridikaInsightHeader {
      width: 42.5rem
  }
    }

@media only screen and (min-width: 1440px) {

.c-newsArticle .c-juridikaInsightHeader {
      width: 50rem
  }
    }

.c-newsArticle .byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    border-top: 0.0625rem solid #c2c0c2;
    border-bottom: 0.0625rem solid #c2c0c2;
    padding: 0.625rem 0;
    color: #5c5b5f;
  }

/* TODO: Delete after updating byline structure for all articles */

.c-newsArticle .byline cite:before {
      content: '\00a0';
    }

.c-newsArticle .byline__contributorInfo {
      margin-right: 0.625rem;
    }

.c-newsArticle .byline__contributorInfo a {
        text-decoration: none;
      }

/* TODO: Delete after updating byline structure for all articles */

.c-newsArticle .byline__contributorInfo cite:before {
        content: '';
      }

.c-newsArticle .byline__contributorInfo cite {
        font-style: normal;
      }

.c-newsArticle .byline__publicationDate .icon-dividerDot {
        margin: 0 0.625rem 0 0;
        vertical-align: middle;
      }

/* TODO: Delete after updating byline structure for all articles */

.c-newsArticle .icon-dividerDot {
    margin: 0 0.625rem;
    vertical-align: middle;
  }

@media only screen and (min-width: 768px) {

.c-newsArticle .bylineContent {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      width: 100%
  }
    }

.c-newsArticle .bylineContent .contributors {
      margin: 0;
      padding: 0;
      list-style: none;
    }

.c-newsArticle .bylineContent .contributor {
      margin: 0;
    }

.c-newsArticle .bylineContent .contributor:not(:last-child) {
        margin-bottom: 5px;
      }

/* TODO: Delete after updating byline structure for all articles */

.c-newsArticle .bylineContent .contributor cite:before {
        content: '';
      }

.c-newsArticle .bylineContent .date {
      margin-top: 5px;
    }

@media only screen and (min-width: 768px) {

.c-newsArticle .bylineContent .date {
        margin-top: 0
    }
      }

.c-newsArticle .content {
    clear: both;
    margin-bottom: 1rem;
  }

@media only screen and (min-width: 1024px) {

.c-newsArticle .content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start
  }
    }

.c-newsArticle .body {
    font-size: 1.125rem;
    letter-spacing: 0.013rem;
    line-height: 1.33;

    flex-grow: 0;
    flex-shrink: 1;

    position: relative;
  }

@media only screen and (min-width: 1024px) {

.c-newsArticle .body {
      margin-right: 2.15rem
  }
    }

/* Part II: Styling for HAST based content, that generally comes without class names: */

.c-newsArticle .newsArticle {
    margin-bottom: 3.125rem;
  }

.c-newsArticle .newsArticle h1,
    .c-newsArticle .newsArticle h2,
    .c-newsArticle .newsArticle h3,
    .c-newsArticle .newsArticle h4,
    .c-newsArticle .newsArticle h5 {
      margin: 0.75rem 0;
      font-family: 'Tuna';
    }

.c-newsArticle .newsArticle h1 {
      display: inline;
      font-size: 35px;
      font-weight: 300;
      color: #d6142b;
      word-wrap: break-word;
    }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle h1 {
        font-size: 40px
    }
      }

.c-newsArticle .newsArticle h2 {
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

.c-newsArticle .newsArticle h3 {
      margin-top: 2.5rem;
      font-family: 'Tuna';
      font-size: 1.375rem;
    }

.c-newsArticle .newsArticle h3 + h4 {
        margin-top: 0.75rem;
      }

.c-newsArticle .newsArticle h4 {
      margin: 2.5rem 0 0.75rem;
      font-family: 'Tuna';
      font-size: 1.125rem;
      font-weight: 400;
    }

.c-newsArticle .newsArticle header {
      margin-bottom: 2.5rem;
    }

@media only screen and (min-width: 1024px) {

.c-newsArticle .newsArticle header {
        width: 42.5rem
    }
      }

@media only screen and (min-width: 1440px) {

.c-newsArticle .newsArticle header {
        width: 50rem
    }
      }

.c-newsArticle .newsArticle img {
      width: 100%;
      height: auto;
    }

.c-newsArticle .newsArticle strong {
      font-weight: 600;
    }

.c-newsArticle .newsArticle figcaption {
      color: #5c5b5f;
      font-size: 0.875rem;
    }

.c-newsArticle .newsArticle .leadParagraph {
      font-size: 1.375rem;
    }

.c-newsArticle .newsArticle figure {
      margin: 0;
    }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .figure--isLeft,
    .c-newsArticle .newsArticle .figure--isRight {
        clear: both;
        width: 200px
    }
      }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .figure--isLeft {
        float: left;
        margin-right: 30px
    }
      }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .figure--isRight {
        float: right;
        margin-left: 30px
    }
      }

/* === List === */

.c-newsArticle .newsArticle .body li, .c-newsArticle .newsArticle .boxedText li {
        margin: 1.25rem 0;
      }

.c-newsArticle .newsArticle .body ol.alpha, .c-newsArticle .newsArticle .boxedText ol.alpha {
        list-style: lower-alpha;
      }

.c-newsArticle .newsArticle .body ul.references, .c-newsArticle .newsArticle .boxedText ul.references {
        list-style: none;
        padding: 0;
      }

.c-newsArticle .newsArticle .body ul.references li, .c-newsArticle .newsArticle .boxedText ul.references li {
          margin-bottom: 0.75rem;
        }

.c-newsArticle .newsArticle .body ul.references li *, .c-newsArticle .newsArticle .boxedText ul.references li * {
            font-size: 0.938rem;
            font-weight: 400;
          }

/* === Quote === */

.c-newsArticle .newsArticle .quote {
      position: relative;
      margin: 40px 0;
      padding: 30px 30px 30px 74px;
      border-left: 4px solid #fbd5da;
      font-family: 'Tuna';
    }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .quote--isLeft,
      .c-newsArticle .newsArticle .quote--isRight {
          width: 50%;
          margin-bottom: 30px
      }
        }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .quote--isLeft {
          float: left;
          margin-right: 30px
      }
        }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .quote--isRight {
          float: right;
          margin-left: 30px
      }
        }

.c-newsArticle .newsArticle .quote p:first-child:before {
        position: absolute;
        left: 30px;
        display: block;
        content: '';
        background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='28' viewBox='0 0 37 28' fill='%23fbd5da'%3E %3Cpath fillRule='evenodd' d='M13.043 25.488c-.944.554-1.97.977-3.076 1.27-1.107.293-2.214.44-3.32.44-1.856 0-3.386-.627-4.59-1.88C.852 24.063.25 22.265.25 19.921c0-1.79.301-3.589.903-5.396.603-1.806 1.49-3.564 2.661-5.273 1.172-1.71 2.62-3.345 4.346-4.907 1.725-1.563 3.695-2.979 5.908-4.248l2.002 2.978c-2.636 2.051-4.646 4.094-6.03 6.128-1.383 2.035-2.075 4.028-2.075 5.982 0 .716.13 1.302.39 1.757.26.456.627.83 1.1 1.123a6.528 6.528 0 0 0 1.635.708c.618.18 1.27.35 1.953.513v6.201zm20.703 0c-.944.554-1.97.977-3.076 1.27-1.107.293-2.214.44-3.32.44-1.856 0-3.386-.627-4.59-1.88-1.205-1.254-1.807-3.052-1.807-5.396 0-1.79.301-3.589.903-5.396.603-1.806 1.49-3.564 2.662-5.273 1.171-1.71 2.62-3.345 4.345-4.907 1.726-1.563 3.695-2.979 5.908-4.248l2.002 2.978c-2.636 2.051-4.646 4.094-6.03 6.128-1.383 2.035-2.075 4.028-2.075 5.982 0 .716.13 1.302.39 1.757.261.456.627.83 1.1 1.123a6.528 6.528 0 0 0 1.635.708c.618.18 1.27.35 1.953.513v6.201z'/%3E %3C/svg%3E") no-repeat;
        height: 27.1px;
        width: 36.5px;
      }

.c-newsArticle .newsArticle .quote .cite {
        font-size: 0.938rem;
        letter-spacing: 0.5px;
      }

.c-newsArticle .newsArticle .dispQuote {
      margin: 0 30px;
      font-family: 'Source Serif Pro', serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: normal;
      line-height: 1.5;
    }

@media only screen and (min-width: 768px) {

.c-newsArticle .newsArticle .dispQuote {
        margin: 0 3.75rem
    }
      }

/* === Table === */

.c-newsArticle .newsArticle table {
      margin: 2.5rem 0;
    }

.c-newsArticle .newsArticle td,
    .c-newsArticle .newsArticle th {
      padding: 1rem;
      border: solid 1px #8f8d90;
    }

.c-newsArticle .newsArticle td .sub,
      .c-newsArticle .newsArticle td .sup,
      .c-newsArticle .newsArticle th .sub,
      .c-newsArticle .newsArticle th .sup {
        font-size: 0.75rem;
      }

.c-newsArticle .newsArticle th {
      vertical-align: middle;
      text-align: left;
      background-color: #f1f2f2;
      font-size: 1rem;
      font-weight: 600;
      text-transform: capitalize;
    }

.c-newsArticle .newsArticle th em {
        font-style: normal;
      }

.c-newsArticle .newsArticle td {
      font-size: 1rem;
      vertical-align: text-top;
    }

/* === Facts === */

.c-newsArticle .newsArticle .boxedText {
      padding: 0.625rem;
      margin: 2.5rem 0;
      margin-top: 0;

      flex: 0 0 18.75rem;
      border-top: 1px solid #c2c0c2;
      border-bottom: 1px solid #c2c0c2;
    }

.c-newsArticle .newsArticle .boxedText .title {
        font-family: 'Tuna';
        font-size: 1.375rem;
        font-weight: 400;
        letter-spacing: 0.0187rem;
      }

.c-newsArticle .newsArticle .boxedText .boxsubtitle {
        font-weight: 600;
      }

.c-newsArticle--isSerialChapter {
    padding-top: 3.875rem;
}

.rcs-custom-scroll .rcs-inner-handle {
    background-color: rgba(194, 197, 199, 0.7);
  }

.rcs-custom-scroll .rcs-custom-scrollbar {
    width: 0.6rem;
  }

.c-brregSearch {
    }

.c-brregSearch__searchFields {
    display: flex;
    margin-bottom: 1.25rem;
}

.c-brregSearch__searchField {
    margin-right: 1.875rem;
}

.c-brregSearch__searchInputField {
    margin-right: 0.3125rem;
    margin-left: 0.3125rem;
}

.c-brregSearch__footNote {
    font-size: 0.875rem;
}

.c-brregSearch__table {
    width: 100%;
}

.c-brregSearch__brRegButton {
    background: #eeeeee;
    border-bottom: 0.125rem solid #ccc;
    color: #000000;
}

.c-brregSearch__tableRow:nth-child(odd) {
      background-color: #f1eef4;
    }


/*# sourceMappingURL=main.c65996d46bf98715e190.css.map*/