@import url("https://fonts.googleapis.com/css?family=Roboto:400,900");
body {
  background-color: gray;
  font-size: 16px;
}
body * {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

#app > #info-box {
  left: 250px;
  transform: translateX(-100%);
  opacity: 0;
}
#app > #info-box.show {
  transform: translateX(0);
  opacity: 1;
}
#app > #info-box h1::after {
  content: "Info";
  transform: translate(-15%, -25%);
  top: 0;
  left: 0;
}
#app > #info-box h3 {
  font-weight: bold;
  color: #b4b4b4;
}
#app > #info-box .text {
  color: #b4b4b4;
  line-height: 1.5em;
}
#app > #info-box .text li {
  padding: 10px;
  list-style: none;
}
#app > #info-box .text li a {
  font-weight: bold;
  color: #b4b4b4;
}

#controls, #info-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 150px;
  padding: 0 10px;
  box-shadow: 2px 0 2px 0 rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  background-color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: all 0.2s ease-in;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  -khtml-user-select: none;
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
}
#controls:hover, #info-box:hover {
  opacity: 1;
}
#controls.transparent:not(:hover):not(.info), #info-box.transparent:not(:hover):not(.info) {
  opacity: 0.05;
}
#controls #reset, #info-box #reset {
  position: absolute;
  top: 1%;
  left: 5%;
  padding: 5px 10px;
  font-size: 0.7em;
  color: #e74c3c;
  border: 1px solid #e43725;
  border-radius: 5px;
  z-index: 5;
  cursor: pointer;
  transition: all 0.2s;
}
#controls #reset:hover, #info-box #reset:hover {
  background-color: #e74c3c;
  color: white;
}
#controls #info, #info-box #info {
  position: absolute;
  top: 1%;
  right: 5%;
  padding: 5px 10px;
  font-size: 0.7em;
  background-color: #3498DB;
  color: white;
  border: 1px solid #258cd1;
  border-radius: 5px;
  z-index: 5;
  cursor: pointer;
  transition: all 0.2s;
}
#controls #info:hover, #info-box #info:hover {
  background-color: #5faee3;
}
#controls h1, #info-box h1 {
  position: relative;
  margin: 40px 0 60px 0;
  color: #16527a;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.2em;
}
#controls h1::after, #info-box h1::after {
  content: "Filter Playground";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.7em;
  line-height: 1em;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  font-weight: bold;
  color: rgba(52, 152, 219, 0.9);
}
#controls h3, #info-box h3 {
  width: 100%;
  text-align: left;
  text-transform: capitalize;
  font-size: 1em;
  color: rgba(180, 180, 180, 0.5);
  text-indent: 5%;
  margin-top: 15px;
  margin-bottom: 10px;
}
#controls .control, #info-box .control {
  padding: 15px 0;
  width: 100%;
  position: relative;
  display: flex;
  height: 30px;
  font-size: 0.85rem;
}
#controls .control .title, #info-box .control .title {
  width: 100%;
  text-align: left;
  text-transform: capitalize;
  display: inline-block;
  font-size: 0.85rem;
  position: absolute;
  top: 0%;
  color: rgba(180, 180, 180, 0.5);
  text-indent: 10%;
  pointer-events: none;
  transition: all 0.2s;
  z-index: -1;
  line-height: 1;
  padding: 0;
  margin: 0;
  transition: 1s color;
}
#controls .control .title {
  margin-top: -7px;
  font-size: 0.7rem;
}
#controls .control:hover .title,
span.title:hover {
  color:#444;
  transition: 1s color;
}
#controls .control .amount, #info-box .control .amount {
  width: 20%;
  display: inline-flex;
  font-size: 0.5em;
  justify-content: flex-end;
  align-items: center;
}
#controls .control .range, #info-box .control .range {
  width: 75%;
  display: inline-flex;
  align-items: center;
}
.none {
  display: none;
}
#show_fx {
  background: #000;
  margin: 0;
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  object-fit: contain;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 0;
  outline: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
#show_fx_img {
  display:flex;
  position:fixed;
  top:15%;
  left:15%;
  width: 75vw;
  height: 30px;
  font-size: 0.85rem;
}
#load_img {
  display:flex;
  position:fixed;
  top:15%;
  right:5%;
  width: 10vw;
  height: 30px;
  background: #555;
  color:#ccc;
  font-size: 0.85rem;
  transition:0.5s color;
  border-radius:10px;
}
#load_img:hover {
  background: #222;
  color:#fff;
  transition:1s color;
}
.textbox {
  font-size: 1rem;
}
.show-effects {
  position: fixed;
  left: 50%;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s;
}
.show-effects img {
  max-width: 100%;
}

#css {
  position: fixed;
  bottom: 1vh;
  width: calc(90vw - 235px);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1vw/2vh;
  right: 5vw;
  display: flex;
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1em;
  color: black;
  z-index: 1;
  line-height: 1.5em;
  opacity: 0.3;
  transition: all 0.2s;
}
#css:hover {
  opacity: 1;
}

/* Range element */
input[type=range] {
  /* fix for FF unable to apply focus style bug  */
  border: 1px solid transparent;
  /*required for proper track sizing in FF*/
  width: 100%;
  /* Webkit */
  -webkit-appearance: none;
  /* FF */
  /*hide the outline behind the border*/
  /* IE*/
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  background: #ddd;
  border: none;
  border-radius: 3px;
  transition: all 0.2s;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #3498db;
  margin-top: -4px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]:focus::-moz-range-track {
  background: #75b9e7;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #75b9e7;
}
input[type=range]:focus::-ms-fill-lower {
  background: #75b9e7;
}
input[type=range]:focus::-ms-fill-upper {
  background: #75b9e7;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 3px;
  background: #ddd;
  border: none;
  border-radius: 3px;
  transition: all 0.2s;
  z-index: 2;
}
input[type=range]::-moz-range-thumb {
  border: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #3498db;
  z-index: 2;
}
input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 3px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ddd;
  border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}
input[type=range]::-ms-thumb {
  border: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #3498db;
  transform: translateY(20%);
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}