#code-editor {
  width: 100%;
  /* border: 1px solid #ccc; */
  overflow-x: hidden;
}

#editor {
  height: 5000px;
  background-color: transparent;
}

.editor-parent {
  margin: 20px;
  padding: 20px;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}


.editor-outer-theme {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 800px;
  flex-direction: column;
}



/* try for theming */
.container {
  width: 40em;
  height: 20em;
}

.terminal_toolbar {
  display: flex;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #111827;
}

.terminal_toolbar.dark-mode {
  background-color: #1a6b78e6;
  color: #2ed8f7;
}

.butt {
  display: flex;
  align-items: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 12px;
  width: 12px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 1px 0px #41403A, 0px 1px 1px 0px #474642;
}

.red {
  background: #ff605c;
}

.yellow {
  background: #ffbd44;
}

.green {
  background: #00ca4e;
}


.btn:hover {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.butt--exit {
  background: linear-gradient(#f37458 0%, #de4c12 100%);
}

.user {
  color: #2ed8f7;
  margin-left: 6px;
  font-size: 16px;
  font-weight: 700;

  line-height: 15px;
}

.terminal_body {
  background-color: #023252;
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
  font-size: 12px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.terminal_promt {
  display: flex;
}

.terminal_promt span {
  margin-left: 4px;
}

.terminal_user {
  color: #7eda28;
}

.terminal_location {
  color: #4878c0;
}

.terminal_bling {
  color: #dddddd;
}

.CodeMirror-gutters {
  background-color: transparent;

}

.terminal_cursor {
  display: block;
  height: 14px;
  width: 5px;
  margin-left: 10px;
  animation: curbl 1200ms linear infinite;
}

@keyframes curbl {

  0% {
    background: #ffffff;
  }

  49% {
    background: #ffffff;
  }

  60% {
    background: transparent;
  }

  99% {
    background: transparent;
  }

  100% {
    background: #ffffff;
  }
}


/* Responsive design */
@media only screen and (max-width: 768px) {

  /* For mobile phones: */

  .editor-parent {
    margin: 0;
    padding: 0;
  }

  .editor-parent {
    margin: 40px 5px 0 8px;
    padding: 0;
    width: 80%;
    overflow-x: hidden;
    display: flex;
    justify-content: start;
  }

}