﻿html {
  font-size: 14px;
}
.properties {
  margin-bottom: 20px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 350px;
  z-index: 1000;
  overflow-y: auto;
}
.properties .button {
  margin-bottom: 10px;
}
.properties .control {
  margin-bottom: 10px;
}
.globals .field-body {
  flex-direction: column;
}
.gospin-player {
  position: relative;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #fff;
  max-width: 100%;
  max-height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.gospin-player img.placeholder {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.gospin-player .flipbook {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gospin-player .flipbook .overlay {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.gospin-player .flipbook img.thumbnail,
.gospin-player .flipbook canvas.thumbnail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transition: all linear 0.2s;
  opacity: 0;
  z-index: 1;
}
.gospin-player .flipbook img.thumbnail.blurred,
.gospin-player .flipbook canvas.thumbnail.blurred {
  filter: blur(10px);
}
.gospin-player .flipbook img.thumbnail.show,
.gospin-player .flipbook canvas.thumbnail.show {
  opacity: 1;
}
.gospin-player .flipbook .loaderprogress {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 4px;
  transition: all linear 0.2s;
  z-index: 5;
  background-color: rgba(241, 241, 241, 0.6);
}
.gospin-player .flipbook .loaderprogress.complete {
  opacity: 0;
  height: 0;
}
.gospin-player .flipbook .loaderprogress .loaderprogress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #275846;
  transition: all linear 0.1s;
}
.gospin-player .flipbook .framestack-container {
  display: inline-block;
  position: relative;
}
.gospin-player .flipbook .framestack-container .framestack {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gospin-player .flipbook .framestack-container .framestack img.frame {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.0001;
}
.gospin-player .flipbook .framestack-container .framestack img.frame.show,
.gospin-player .flipbook .framestack-container .framestack img.frame[data-spin-frame='0'] {
  opacity: 1;
}
.gospin-player .magnifier {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
  z-index: 10;
  display: none;
}
.gospin-player .magnifier canvas.paintcanvas {
  position: absolute;
  left: 0;
  top: 0;
}
.gospin-player.is-magnifier-mode .magnifier {
  display: block;
}