#found-variables {
  padding: 10px;
  position: fixed;
  bottom: 0;
  background-color: #FFFFCC;
  border: #000 1px solid;
  right: 0;
  z-index: 99999;
}
#found-variables:not(.closed) {
  width: 100%;
  border-width: 1px 0 0 0;
}
#found-variables.closed {
  border-width: 1px 0 0 1px;
  width: 25px;
  height: 25px;
}
#found-variables a.toggle-view {
  position: absolute;
  right: 8px;
  top: 0px;
}
#found-variables i.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

#found-variables.closed i.arrow {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
#found-variables:not(.closed) i.arrow {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#found-variables.closed #selector-container,
#found-variables.closed #result-area,
#found-variables.closed #copy-button {
  display: none;
}

#found-variables #selector-container select {
  padding: 0 20px 0 5px;
  background-position: right 0 center;
}

#found-variables #result-area {
  margin-top: 10px;
  width: calc(100% - 85px);
  height: 50px;
  line-height: 50px;
  text-align: center;
}

#found-variables #copy-button {
  width: 75px;
  margin-left: 10px;
  height: 50px;
  line-height: 50px;
  border: #333 1px solid;
  border-radius: 3px;
  color: #333;
  background-color: #DDD;
}

#found-variables .copied-message {
  position: absolute;
  top: 5px;
  right: 35px;
  color: #00AA00;
}

#found-variables:not(.copied) .copied-message {
  display: none;
}

#found-variables.copied #result-area {
  background-color: #CCFFCC;
}