* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  position: absolute;
  overflow: hidden;
}

body > section, body > footer {
  width: calc(100vw - 360px);
  padding-left: 360px;
}

.button {
  border-radius: 10px;
  padding: 5px 5px 5px 5px;
  -webkit-box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  display: block;
  text-decoration: none;
}

.notification {
  position: fixed;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 540px;
  height: 60px;
  background-color: #DF4949;
  -webkit-box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px 10px 0px 0px;
  z-index: 100;
  line-height: 60px;
  text-align: center;
  color: #FFF;
  font-size: 1.5em;
  cursor: pointer;
}

iframe {
  border: 0;
}

.button-icon {
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.button-icon:hover {
  background-color: #ccc;
}

.button-icon:active {
  background-color: #aaa;
}

.button-icon.button-icon--close {
  -webkit-mask-image: url("../assets/close.svg");
}

.button-icon.button-icon--play {
  -webkit-mask-image: url("../assets/play.svg");
}

.button-icon.button-icon--close-fullscreen {
  -webkit-mask-image: url("../assets/close_fullscreen.svg");
}

.button-icon.button-icon--open-fullscreen {
  -webkit-mask-image: url("../assets/open_in_full.svg");
}
/*# sourceMappingURL=main.css.map */