@import url('https://fonts.googleapis.com/css?family=Roboto');

html, body {
    margin: 0;
    padding: 0;
    background: #394048;
    color: #eee;
    font-family: 'Roboto', sans-serif;
}

#ghost1, #ghost2 {
    width: 40%;
    float: left;
    margin-left: 10px;
}

.plot {
	width: 100%;
}

@media(max-width: 768px) {
    .plot {
        max-width: 100%;
    }
}

.title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

textarea {
    margin-top: 10px;
    width: 100%;
    height: 600px;
    font-size: .9em;
}

.ghostheader {
  display: flex;
  justify-content: center;
}

.ghostheader > div {
  padding: 5px;
}

.hidden {
  display: none !important;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: #fff transparent #fff transparent;
  border-radius: 50%;
  animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-container {
  width: 100px;
  justify-content: center;
  position: absolute;
  align-items: center;
  z-index: 1;
  padding: 50px;
}