.main-content {
  width: 100vw;
  height: 100vh;
  text-align: center;
   /* This is all background gradient CSS */
  background: #cbb5ee;
  background: -moz-linear-gradient(left, #cbb5ee 0%, #682ae5 50%, #d0beef 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #cbb5ee), color-stop(50%, #682ae5), color-stop(100%, #d0beef));
  background: -webkit-linear-gradient(left, #cbb5ee 0%, #682ae5 50%, #d0beef 100%);
  background: -o-linear-gradient(left, #cbb5ee 0%, #682ae5 50%, #d0beef 100%);
  background: -ms-linear-gradient(left, #cbb5ee 0%, #682ae5 50%, #d0beef 100%);
  background: linear-gradient(to right, #cbb5ee 0%, #682ae5 50%, #d0beef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cbb5ee', endColorstr='#d0beef', GradientType=1);
}
.main-content h1.main-content-title {
  margin: 0;
  padding-top: 30px;
  color: #fff;
}
.main-content .slide-panel-button {
  margin: 45px;
}
.slide-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    transition: visibility 0s 0.6s;
    z-index: 999999;
}
.slide-panel.is-visible {
  visibility: visible;
  transition: visibility 0s 0s;
}
.slide-panel-header {
  position: fixed;
  width: 33%;
  height: 102px;
  background-color: #fff;
  z-index: 2;
  transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.6s;
  transition-delay: 0.6s;
  transform: translate3d(100%, 0, 0);
  padding-left: 33px;
  padding-right: 33px;
  padding-bottom: 23px;
  border-left: solid;
}
.slide-panel-header h2 {
    font-size: 20px;
    font-weight: 500;
    color: #667387;
    padding-top: 40px;
}
.slide-panel-header h1 {
  font-size: 24px;
  color: #667387;
}
.slide-panel-header .slide-panel-close {
  padding-top: 14px;
  font-size: 14px;
  color: #667387;
}
.slide-panel-header .badge {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  margin-right: 10px;
}
.slide-panel-header .scheduled-badge {
  border-radius: 2px;
  background-color: #17b140;
}
.slide-panel-header .edited-style {
  font-size: 12px;
  color: #9b9b9b;
}
.from-right .slide-panel-header {
  right: 0;
}
.is-visible .slide-panel-header {
  top: 0;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.slide-panel-container {
    position: fixed;
    width: 33%;
    height: 100vh;
    top: 100px;
    right: 0;
    padding-left: 33px;
    padding-right: 33px;
    background-color: #fff;
    z-index: 2;
    transition-timing-function: ease-out;
    transition-property: all;
    transition-duration: 0.6s;
    transition-delay: 0.6s;
    transform: translate3d(100%, 0, 0);
	border-left: solid;
}
.slide-panel-container .slide-panel-content {
  font-size: 14px;
  color: #667387;
}
.from-right .slide-panel-container {
  right: 0px;
}
.is-visible .slide-panel-container {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}