/************ Skandinavisk colors ***********/
/******* Aspect ratios *****/
/****** Transition *******/
.video-component {
  position: relative;
  height: 100%;
}

.video-component__cta {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.video-control__button {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.video-control__button:focus, .video-control__button:active {
  outline: none;
}

.video-control__button-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  min-height: 62px;
  margin: 0 auto;
  z-index: 1;
  border-radius: 100%;
  font-size: 22px;
}
.video-control__button-play-icon::after {
  color: inherit;
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  position: relative;
  vertical-align: middle;
  position: absolute;
  content: "\f10d";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-component__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point-x) var(--focal-point-y);
  object-position: var(--focal-point-x) var(--focal-point-y);
  display: block;
}

.video-component__video,
.video-component__video-mobile {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

iframe {
  display: block;
  width: 100%;
}
.video-component__modal iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #000;
}

.video-component__modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 5;
  display: flex;
  align-items: center;
}

.video-component__modal-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .video-component__modal-content {
    max-width: 70vw;
  }
}

button.video-component__modal-close {
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  text-align: center;
  background-color: #000;
  color: #fff;
}
button.video-component__modal-close span {
  pointer-events: none;
}
/*# sourceMappingURL=video-component.css.map*/