#header {
  width: 100%;
}

.buttons {
  margin-top: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
  display: inline-block;
  max-width: 48%;
}

.textarea {
  width: 48%;
  display: inline-block;
  text-align: right;
}

textarea {
  width: 100%;
  vertical-align: top;
}

canvas {
  border: 1px solid #ccc;
}

/* collapsible */
details {
  user-select: none;
}

details > summary span.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
  margin-left: auto;
}

details[open] summary span.icon {
  transform: rotate(180deg);
}

summary {
  display: flex;
  cursor: pointer;
}

/* end collapsible */
/* navbar */
.fnav {
  z-index: 999999;
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fnav * {
  pointer-events: none;
}
.fnav__user {
  display: flex;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid #eeeeee;
  padding: 20px;
  box-sizing: border-box;
}
.fnav__thumbnail {
  width: 90px;
  height: 120px;
  border: 1px solid #eeeeee;
  border-radius: 1em;
  margin: 0 20px 0 0;
  padding: 2px;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 90px;
  max-width: 180px;
  background-size: 214%;
  background-position: center;
}
.fnav__thumbnail img {
  display: none;
  width: 100%;
  max-width: 100%;
  border-radius: 1em;
}
.fnav__title {
  color: #444444;
  margin: 0 0 2px;
  padding: 0;
  font-size: 14px !important;
}
.fnav__description {
  margin: 0;
  padding: 0;
  color: #999999;
  font-size: 12px;
}
.fnav__description a {
  color: inherit;
  text-decoration: none;
}
.fnav__button {
  pointer-events: auto;
  outline: none;
  background: #e44bff;
  width: 40px;
  height: 40px;
  border: 1px solid #eeeeee;
  border-radius: 100%;
  font-size: 1em;
  font-weight: 900;
  transform-origin: center;
  transition: 200ms ease;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.fnav__menu {
  position: absolute;
  right: 0;
  bottom: 100%;
  background: #ffffff;
  width: 336px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  opacity: 0;
  transition: 200ms ease;
}
.fnav__item {
  display: block;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #444444;
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
}
.fnav__item:last-child {
  border-bottom: 0;
}
.fnav--active * {
  pointer-events: auto;
}
.fnav--active .fnav__button {
  transform: rotate(45deg);
}
.fnav--active .fnav__menu {
  transform: translateY(-10px);
  opacity: 1;
}
.fnav--active .container {
  padding: 0;
}
.fnav--active summary {
  padding: 0;
}
.fnav--active .row .row {
  padding: 0;
  margin-left: 0;
}

.fnav details {
  margin: 0.3em 0.3em;
  border-radius: 0.3em;
  overflow: hidden;
  background-color: #d3d3d380;
  padding: 0.1em;
}

/* end navbar */
button {
  border: 1px outset #ccc;
  border-radius: 0.2em;
}

button:hover {
  border: 1px ridge #fff;
  border-radius: 0.2em;
}