.sidebar-contact {
  position: fixed;
  top: 50%;
  left: -250px;
  transform: translatey(-50%);
  width: 250px;
  height: auto;
  padding: 40px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  box-sizing: border-box;
  transition: 0.5s;
}

.sidebar-contact.active {
  left: 0px;
}

.sidebar-contact input, .sidebar-contact textarea {
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,.5);
  outline: none;
}

.sidebar-contact h2 {
  margin: 0 0 20px;
  padding: 0;
}

.sidebar-contact textarea {
  height: 60px;
  resize: none;
}

.sidebar-contact input[type="submit"] {
  background: #252323;
  color: #fff;
  cursor: pointer;
  border: none;
  font-size: 18px;
}

.toggle {
  position: absolute;
  transform: rotate(180deg);
  top: 35%;
  transform: translatey(-50%);
  right: -48px;
  width: 48px;
  height: 100px;
  line-height: 48px;
  text-align: center;
  transform: rotate(180deg);
  cursor: pointer;
  border-radius: 10px 0px 0px 10px;
  background: #f30021;
  writing-mode: vertical-lr;
  font-size: 18px;
  color: white;
}

.toggle:before {
  content: 'Contact Us';
}

.toggle.active:before {
  content: 'Close';
}

