.switcher{
  /*background: white;*/
  position: fixed;
  z-index: 9999;
  bottom: 45px;
  left: 25px;
  padding: 15px;
  font-family: 'Arial Black', Arial, sans-serif;
}

.switcher__button{
  font-family: 'Work Sans', 'Arial Black', Arial, sans-serif;
  padding: 0.25em 1em;
  font-size: 1.33em;
  background: white;
  border: none;
  border-radius: 4px;
  box-shadow: 1px 2px 5px rgba(0,0,0,0.25);
  transition: all 0.2s;
  margin: 0.25em;
  opacity: 0.8;
}

.switcher__button.this--active{
  opacity: 1;
  background: #ff3300;
  color: white;
  font-style: italic;
  box-shadow: 1px 2px 15px rgba(0,0,0,0.25), inset 1px 2px 5px rgba(0,0,0,0.25);
}

body{
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.switcher__headline{
  display: inline-block;
  padding: 5px 0;
  min-width: 100px;
}

.copyright-information{
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 0;
  color: white;
  background-color: rgba(0,0,0,0.15);
  padding: 1px 3px;
  font-size: 9px;
}



@media(max-width: 640px){

  .switcher{
    bottom: 5px;
    left: 0;
  }

  .switcher__container{
    margin-top: 10px;
  }

  .switcher__headline{
    text-align: center;
    display: none;
  }

  .switcher__button{
    font-size: 12px;
    padding: 10px;
  }

  .switcher{
    display: flex;
    flex-direction: column;
  }

  .switcher__container:first-child{
    order: 2;
  }
  .switcher__container:last-child{
    order: 1;
  }
}