@import url(https://fonts.googleapis.com/css?family=Roboto+Mono);

html, body{
  height: 100%;
  /* overflow: hidden; */
}

* {
  box-sizing: border-box;
}

.app{
  display: flex;
  flex-direction: row;
  height: calc(100% - 75px);
}

#inputWrapper, #result{
  width: calc(100% - 10px);
  border: 1px solid #ececec;
  position: relative;
  margin: 15px 5px;
}

#result{
  overflow:auto;
  padding: 10px;
}

#inputWrapper:before, #result:before{
  content: "";
  position: absolute;
  width: 100%;
  box-shadow: 1px 3px 3px 1px #ececec;
  top:100%;
}

.input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: inherit;
  font-size: 1.2em;
  padding: 10px;
}


.heading{
  font-size: 2em;
  text-align: center;
  margin: 10px auto 15px auto;
  font-family: 'Roboto Mono', monospace;
}

.Node{
  font-size: 18px;
}

.KeyValue{
  position: relative;
  margin-left: 20px;
}
.KeyValueWrapper{
  transition: background-color 0.1s;
}

.KeyValueWrapperBG{
  background-color: rgba(0, 255, 0, 0.1);
}

.Key {
  font-size: 16px;
  color: #A0ECBE;
}

.PrimitiveValue{
  color: #3498DB;
}

.Separator{
  font-size: 12px;
  color: #999;
  margin: auto 3px auto 1px;
}

.ToggleButton{
    font-size: 9px;
    width: 13px;
    height: 13px;
    padding: 0;
    transform: translate(0, -2px);
    border: 1px solid paleturquoise;
    border-radius: 5px;
    margin-right: 3px;
    outline: none;
}

.TogglePlaceholder{
  display: none;
}

.article {
  font-family: Roboto Mono;
  padding: 1% 15%;
}