@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  user-select: none;
}

body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

#canvas {
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.1254901961);
  width: 50%;
  height: 100vh;
  overflow: hidden;
  border-right: 1px solid #ddd;
}
#canvas.full {
  width: auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
}

#details {
  width: 50%;
  height: 100vh;
  background: #ddd;
}
#details .basic {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#details .wrapper {
  flex: 1;
  overflow: auto;
  border-top: 1px solid #ddd;
  padding: 5px;
}
#details .wrapper img {
  width: 100%;
}
#details .table-responsive {
  margin: 0;
  padding: 0;
}
#details .table-responsive table {
  margin: 0;
  padding: 0;
}

.basic {
  width: 100%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1254901961);
  min-height: 100vh;
}

#edges {
  width: 100%;
}
#edges .edge {
  display: flex;
  padding: 0;
  overflow: hidden;
  border-radius: 2px;
}
#edges .edge:hover {
  text-decoration: line-through;
  color: #666;
  cursor: pointer;
}
#edges .edge div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#edges .edge div + span {
  border-left: 1px solid #ddd;
  border-right: none;
}
#edges .edge span {
  background: #fdfdfd;
  color: #000;
  padding: 5px 20px;
  border-right: 1px solid #ddd;
}

@media (max-width: 740px) {
  #canvas {
    width: 100%;
  }
  #details {
    width: 100%;
    height: auto;
    overflow: unset;
  }
}

/*# sourceMappingURL=styles.css.map */
