body {
  background: #121119;
}

#editor-wrapper {
  height: calc(100vh - 136px);
}
#editor-wrapper .menu-container {
  width: 100%;
  height: 48px;
  background: #22212e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 4px 4px;
  box-sizing: border-box;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 2px solid #282A36;
}
#editor-wrapper .menu-container .icon-container {
  margin: 4px;
}
#editor-wrapper .menu-container .icon-container img {
  border-radius: 50%;
  cursor: pointer;
  width: 20px;
  padding: 8px;
  opacity: 0.5;
  transition: 0.25s ease;
}
#editor-wrapper .menu-container .icon-container img:hover {
  opacity: 1;
  background: #3b3948;
}
#editor-wrapper .menu-container .l {
  display: flex;
}
#editor-wrapper .body {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: calc(100% - 48px);
  background: #282A36;
  flex-wrap: wrap;
}
#editor-wrapper .body .code-area {
  width: 80%;
  height: 100%;
}
#editor-wrapper .body .code-area .editor-container {
  width: 100%;
  height: calc(100% - 16px);
}
#editor-wrapper .body .code-area .editor-container .CodeMirror {
  box-sizing: border-box;
  padding-top: 12px;
  font-size: 16px;
  height: 100%;
  scrollbar-color: #3b3948 #282A36;
  scrollbar-width: thin;
}
#editor-wrapper .body .code-area .editor-container .CodeMirror-code {
  padding-left: 4px;
  box-sizing: border-box;
}
#editor-wrapper .body .code-area .editor-container .CodeMirror-line {
  padding-left: 16px;
  box-sizing: border-box;
}
#editor-wrapper .body .action-area {
  padding-top: 8px;
  box-sizing: border-box;
  width: 20%;
  background-color: #22212e;
}
#editor-wrapper .body .action-area select {
  outline: none;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: #3b3948;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}
#editor-wrapper .body .action-area .box-container {
  width: 100%;
}
#editor-wrapper .body .action-area .box-container .line-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  box-sizing: border-box;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
}

@media screen and (max-width: 768px) {
  #editor-wrapper.container-full {
    padding-top: 72px;
  }

  #editor-wrapper .body .code-area {
    width: 100%;
    height: 70%;
  }
  #editor-wrapper .body .action-area {
    width: 100%;
    height: 30%;
  }
}