#container {
    font-size: 10pt;
    line-height: 1;
    width: 100%;
}

#svgs{
  display: flex;
  border: 1px solid #eee;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1) inset;
}

#svgs .hidden {
  visibility: hidden;
}

.edges.hidden {
  display: none;
}

#svg-holder {
  position: relative;
  width: 50%;
  border-right: 1px solid #eee;
  overflow: hidden;
}

text {
    font-family: sans-serif;
    font-size: 10px;
}

.button {
  padding: 7px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  cursor: pointer;
  width: fit-content;
  margin: 6px;
}

.button.disabled {
  pointer-events: none;
  color: white;
}

.button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

#button-holder {
  position: absolute;
  top: 0px;
  padding: 5px;
}

.model-pred-holder {
  position: absolute;
  top: 0px;
  padding: 10px;
  right: 0px;
  text-align: right;
}

#mol-selector {
    display: flex;
    width: 100%;
    overflow: scroll;
}

#mol-selector img {
    height: 100px;
    margin: 5px;
    background: #eee;
}

#mol-selector svg {
    mix-blend-mode: darken;
}

#model-opts {
  padding: 20px 5px;
  display: flex;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  background-color: #f7f7f7;
  filter: grayscale(1);
  justify-content: space-between;
}
.opts-col{
  display: flex;
  flex-direction: column;
  padding: 0px 5px;
  border-left: solid 1px #eee;
}
#opts-col-desc {
  width: 30%;
  border-left: 0;
}
#description {
  display: block;
}

.model-params {
  display: flex;
}

#model-outputs{
  width: 50%;
  overflow: hidden;
  position: relative;
}

.model-param{
  padding: 5px;
  color: #777;
  font-size: 13px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.model-info-title {
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px;
  white-space: nowrap;
}

.simple-title {
  padding: 5px;
  color: #777;
  font-size: 13px;
  font-weight: 300;
}

.output {
  padding: 0px 5px 10px 5px;
  font-size: 16px;
  font-weight: bold;
}

#acc{
  padding: 0px 5px;
  color: #777;
  font-weight: 100;
  font-size: 48px;
  width: 100px;
}

select {
  appearance: menulist;
  display: block;
  background: none;
  border: none;
  border-radius: 0;
  padding: 6px 0;
  width: 100px;
  font-size: 14px;
  border-bottom: solid 1px #ccc;
  color: #333;
  outline: none;
}

select:disabled {
  visibility: hidden;
}

#loader {
  position: absolute;
  top: 50%;
  left: calc(50% - 25px);
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #333;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}

#loader.halfscreen{
  left: calc(75% - 25px);
}

#epoch-slider-holder {
  filter: brightness(1.5) grayscale(1);
  position: absolute;
  bottom: 0;
  padding: 5px;
  width: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  color: #777;
  font-size: 13px;
  font-weight: 300;
}
#epoch-slider {
  flex:1;
}
.legend {
  position: absolute;
  bottom: 5px;
}

#edge-legend {
  left: 15%;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.legend-line {
  display: flex;
  flex-direction: row;;
  padding-bottom: 5px;
  padding-left: 10px;
  color: #777;
  font-size: 13px;
  font-weight: 300;
}

.legend-range-holder {
  display: flex;
  justify-content: flex-end;
}
.legend-range-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 5px;
  font-size: 10px;
  color: #000;
  font-weight: normal;
}
.legend-range {
  width: 15px;
  height: 100px;
}

.legend-circ {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #999;
}
.outline {
  width: 7px;
  height: 7px;
  border: 3px solid #999;
  background: #fff;
}

#warning {
  position: absolute;
  right: 0;
  width: 300px;
  bottom: 0px;
  background: rgb(255, 0, 0, .1);
  color: #F00;
  padding: 5px;
  margin: 10px;
  border: 1px solid;
}
#warning.hidden{
  display: none;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*# sourceMappingURL=gnn-playground.7fda89e6.css.map */