@media only screen and (max-width: 800px) {
  .toggle-button-cover {
    display: none!important;
  }
}

.toggle-button-cover {
  display: table-cell;
  position: absolute;
  width: 350px;
  height: 140px;
  box-sizing: border-box;
  right: 5px;
  top:-37px;
  scale: 0.5;
}

.button-cover {
  height: 100px;
  margin: 20px;
  background-color: transparent;
  /*box-shadow: 0 10px 20px -8px #c5d6d6;*/
  border-radius: 4px;
}

.button-cover,
.knobs,
.layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button {
  position: relative;
  top: 50%;
  width: 300px;
  height: 48px;
  margin: -20px auto 0 auto;
  overflow: hidden;
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease all;
  z-index: 1;
}


/* Button 3 */
#button-3 .knobs:before {
  content: "FILM STUDIO";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 200px;
  height: 40px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 9px 4px;
  /*
  background-color: #fff;
  border: 1px solid red;
  color: red;
  */
  background-color: #f44336;
  color: #fff;
  border-radius: 20px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active + .knobs:before {
  width: 240px;
  border-radius: 100px;
}

#button-3 .checkbox:checked:active + .knobs:before {
  margin-left: -42px;
}

#button-3 .checkbox:checked + .knobs:before {
  content: "DESIGN LAB";
  left: 95px;
  /*background-color: #f44336;*/
}

#button-3 .checkbox:checked ~ .layer {
  /*background-color: #fcd2d2;*/
}
.layer:before{
  content: "";
  font-size: 25px;
  color: red;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 25px;
}
#button-3 .checkbox:checked ~ .layer:before {
  left: 25px;
}
