.editorContainer {
  display: flex;
  flex-direction: column;
  height: 100vh;
  -webkit-font-smoothing: subpixel-antialiased;
}
.editorPanes {
  display: flex;
  flex-grow: 1;
  background-color: #F3F3F3;
}
.leftPane {
  z-index: 0;
  width: 256px;
  border: 1px solid #DFE3E8;
  background-color: #FAFAFA;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  padding: 37px 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contentPane {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  transition: margin-right 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  position: relative;
  overflow: hidden;
}
.editorContent {
  flex-grow: 1;
}
.stepBlock {
  height: 52px;
  width: 235px;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: 0 0 5px 0 rgba(63, 63, 63, 0.25);
  padding: 12px 4px 11px 16px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.stepBlock.active .stepBackground {
  border: 2px solid #00BCD4;
}
.stepBlock:not(:last-child) {
  margin-bottom: 35px;
}
.stepBlock:not(:last-child)::after {
  height: 35px;
  width: 1px;
  background: #DADFE2;
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
}
.stepBackground {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: white;
  transition: background-color 0.15s ease-out;
}
.stepBackground:hover {
  background-color: #F7F7F7;
  transition: none;
}
.stepTitle {
  font-size: 13px;
  position: relative;
  pointer-events: none;
}
.stepSubtitle {
  font-size: 10px;
  color: rgba(52, 61, 79, 0.54);
  position: relative;
  pointer-events: none;
}
.stepBlockIcon {
  height: 29px;
  width: 29px;
  border-radius: 100px;
  margin-right: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  pointer-events: none;
}
.stepBlockIcon.right {
  margin-left: auto;
  margin-right: 0;
  pointer-events: all;
  transition: background-color 0.15s ease-out;
}
.stepBlockIcon.right:not(.uneditable):hover {
  background-color: #DADCDF;
  transition: none;
}
.uneditable {
  pointer-events: none;
}
.uneditable .stepBlockIcon.right {
  display: none;
}
#editorDetailsDrawerContent form {
  width: 100%;
}

html > body {
  background-color: transparent;
}
html > body #__next {
  background-color: transparent;
}
html > body #__next > div {
  background-color: transparent;
}
html > body .registration-page-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  align-items: flex-start;
  overflow-y: hidden;
}

