/*  ToggleText
 *  Max. Eichen.
 */

#toggle-text {
  display: inline-block;
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
}

#toggle-button-wrapper {
  text-align: right;
}

#toggle-button {
  margin-right: 1em;
  width: 5em;
}

#toggle-button-wrapper .down {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;

  border-top: 10px solid rgb(255,255,255);
}

#toggle-button-wrapper .up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;

  border-bottom: 10px solid rgb(255,255,255);
}

#toggle-overlay {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 60px;
  background: linear-gradient(rgba(58,58,58,0) 0%, rgba(58,58,58,1) 100%);
}
