.CodeMirror {
    width: 100%;
}

.switch__thumb {
  width: 60px;
  height: 30px;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}

.switch__thumb input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.switch__thumb input:checked ~ .toggle {
  background: #4fb845;
}

.switch__thumb input:checked ~ .toggle:after {
  left: 31px;
}

.switch__thumb .toggle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ed6f6f;
  border-radius: 4px;
}

.switch__thumb .toggle::after {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 20px;
  width: 24px;
  background: #fff;
  content: "";
  transition: all 0.3s;
  border-radius: 4px;
}

#code_snippet .inside {
  padding: 0;
  margin: 0
}

.post-type-swiss_generate_url #post-body {
  margin-right: 0px !important;
  overflow: hidden;
}

.post-type-swiss_generate_url .handle-actions {
  display: none !important;
}

.post-type-swiss_generate_url #postbox-container-1 {
  display: none !important;
}

.code-mirror-before, .code-mirror-after {
  border: 1px solid #ddd;
  border-bottom: none;
  background-color: #f7f7f7;

  & > div {
    color: #8F8F8F;
    margin-left: 28px;
    border-left: 1px solid #ddd;
    padding: 3px 8px;
    background-color: #fff;
  }
}