@charset "UTF-8";
/* CSS Document */

/* Loading Block */
#loading {
	width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #000;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0;
    z-index: 9999;
}
/* Hide Loading Block */
.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .inner {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}


.bars {
    position: relative;
    height: 60px;
    width: 90px;
    margin: 0 auto;
}
.bars__bar {
  position: absolute;
  top: 40%;
  bottom: 40%;
  width: 7%;
  background-color: #fefefe;
  animation: bars 1.5s infinite ease-out;
}
.bars__bar--alt {
  background-color: rgba(254, 254, 254, 0.4);
}
.bars__bar--0 {
  left: 0%;
  animation-delay: 0s;
}
.bars__bar--0--alt {
  left: 0%;
  animation-delay: 0.5s;
}
.bars__bar--1 {
  left: 18.6%;
  animation-delay: 0.1s;
}
.bars__bar--1--alt {
  left: 18.6%;
  animation-delay: 0.6s;
}
.bars__bar--2 {
  left: 37.2%;
  animation-delay: 0.2s;
}
.bars__bar--2--alt {
  left: 37.2%;
  animation-delay: 0.7s;
}
.bars__bar--3 {
  left: 55.8%;
  animation-delay: 0.3s;
}
.bars__bar--3--alt {
  left: 55.8%;
  animation-delay: 0.8s;
}
.bars__bar--4 {
  left: 74.4%;
  animation-delay: 0.4s;
}
.bars__bar--4--alt {
  left: 74.4%;
  animation-delay: 0.9s;
}
.bars__bar--5 {
  left: 93%;
  animation-delay: 0.5s;
}
.bars__bar--5--alt {
  left: 93%;
  animation-delay: 1s;
}

.monitor {
  position: relative;
  height: 150px;
  width: 255px;
  overflow: hidden;
  background: rgba(254, 254, 254, 0.4);
}
.monitor:before {
  content: "";
  position: absolute;
  width: 5%;
  top: 0;
  left: -5%;
  bottom: 0;
  background: #fefefe;
  animation: monitor 1.2s infinite linear;
}
.monitor__top, .monitor__bottom {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.monitor__top:before, .monitor__top:after, .monitor__bottom:before, .monitor__bottom:after {
  content: "";
  position: absolute;
  background: #2980b9;
}
.monitor__top:before, .monitor__bottom:before {
  width: 51px;
  height: 72px;
}
.monitor__top:after, .monitor__bottom:after {
  right: 0;
  width: 61px;
  height: 75px;
}
.monitor__top__inner, .monitor__top__inner:before, .monitor__top__inner:after, .monitor__bottom__inner, .monitor__bottom__inner:before, .monitor__bottom__inner:after {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #2980b9 transparent transparent transparent;
}
.monitor__top__inner, .monitor__bottom__inner {
  position: absolute;
  left: 51px;
  border-width: 144px 51px 0 51px;
}
.monitor__top__inner:before, .monitor__bottom__inner:before {
  content: "";
  top: -144px;
  left: -51px;
  border-width: 72px 25.5px 0 0;
}
.monitor__top__inner:after, .monitor__bottom__inner:after {
  content: "";
  left: 51px;
  top: -144px;
  border-width: 108px 38.25px 0 38.25px;
}
.monitor__bottom {
  transform: rotate(180deg);
}

@keyframes bars {
  0%, 60% {
    top: 40%;
    bottom: 40%;
  }
  20% {
    top: 0;
    bottom: 40%;
  }
  40% {
    top: 40%;
    bottom: 0;
  }
}
@keyframes monitor {
  0% {
    left: -5%;
  }
  100% {
    left: 100%;
  }
}