body {
  margin: 0;
  padding: 0;
  font-family: sans-serif; }

* {
  box-sizing: border-box; }

#container {
  position: relative;
  overflow: hidden; }

#seekbar {
  width: 100%;
  display: block;
  margin: auto; }

.ui {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 40px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  transition: .4s ease-in-out; }

.range {
  position: absolute; }

.range {
  -webkit-appearance: none;
  background: linear-gradient(to right, #00AA9C 0%, #00AA9C 50%, #777 50%, #777 62.5%, #444 62.5%, #444 100%);
  cursor: pointer;
  height: 3px;
  margin: 0px;
    margin-top: 0;
  transitionx: 0.1s ease-in;
  vertical-align: bottom;
  width: 100%; }
  .range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #00AA9C;
    border-radius: 100%;
    height: 0;
    transitionx: 0.1s ease-in;
    width: 0; }

.wrap:hover .range, .wrap.hover .range {
  height: 6px; }

.wrap:hover .range::-webkit-slider-thumb, .wrap.hover .range::-webkit-slider-thumb {
  width: 18px;
  height: 18px; }

.loaded .range, .loaded .range::-webkit-slider-thumb {
  transition: 0.1s ease-in; }

*:focus {
  outline: none; }

.rest-of-ui {
  padding: 10px 7px 0px 7px;
  height: 37px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box; }

.time {
  color: #ddd;
  margin-left: 10px;
  font-size: 11px;
  position: relative;
  top: 1px; }

.overlay {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.showbox {
  transition: .4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.loader {
  position: relative;
  margin: 0 auto;
  width: 120px; }
  .loader:before {
    content: '';
    display: block;
    padding-top: 100%; }

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round; }

@keyframes rotate {
  100% {
    transform: rotate(360deg); } }

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px; } }

@keyframes color {
  100%,
  0% {
    stroke: #eee; }
  40% {
    stroke: #00AA9C; }
  66% {
    stroke: #eee; }
  80%,
  90% {
    stroke: #00AA9C; } }

body {
  background-color: #eee; }

.showbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5%; }

.starter {
  z-index: 3;
  background: #e9e7e9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 100;
  padding-bottom: 120px; }

#bg-video {
  transition: 0.1s ease-in; }

.fullscreen-bg__video {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  top: 0; }

.start-video {
  transition: 0.1s ease-in; }

.start-video {
  position: absolute;
  width: 100px;
  height: 100px;
  left: calc(50% - 50px);
  right: 10%;
  z-index: 4;
  transform: scale(0.8);
  bottom: 20px;
  cursor: pointer; }

.stroke-dotted {
  opacity: 0;
  stroke-dasharray: 4,5;
  stroke-width: 1px;
  transform-origin: 50% 50%;
  transition: opacity 1s ease, stroke-width 1s ease; }

.stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 4px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease; }

.icon {
  transform-origin: 50% 50%;
  transition: transform 200ms ease-out; }

.message {
  color: #00AA9C;
  opacity: 0;
  position: absolute;
  bottom: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  padding: 0 10%;
}


.quality-selector-box {
  float: right;
  position: absolute;
  right: 5px;
  display: none;
}
.quality-selector-box .select-quality {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 50px;
  padding: 15px 20px;
  right: 5px;
    transition: opacity 200ms ease-out;
}
.hidden {
  opacity: 0;
}

.quality-selector-box .select-quality a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  line-height: 1.6;
  font-size: 13px;
}

.gear {
  background: url(../images/cog.png);
  height: 37px;
  display: block;
  width: 37px;
  background-size: cover;
  transform: scale(0.5);
  transition: all 400ms linear;
  position: relative;
}

.rotated {
    transform:scale(0.5) rotate(90deg)
}


h1 {
  padding: 100px 50px ;
  display: block;
  margin: auto;
  font-size: 14px;
  color: #111;
  font-weight: 400;
  width: 100%;
  line-height: 1.4;
  text-align: center
}
h1 a img {
  width: 30px;
  height: 30px;
  position: relative;
  left: 3px;
  margin-right:10px;
  top: 10px;
}
h1 span {
  display: block;
  margin-bottom: 10px;
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 900
}
