.survey-name {
  color:black;
  text-decoration: none;
}

.logo {
  height: 53px;
}

.tabs {
  -webkit-overflow-scrolling: touch;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  overflow-x:auto;
  white-space: nowrap;
}

.tabs ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.tabs li {
  display: block;
}

.tabs a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  color: #4a4a4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: -1px;
  padding: .5em 1em;
  vertical-align: top;
}

.tabs li.is-active a {
  border-bottom-color: #00d1b2;
  color: #00d1b2;
}

.new-notespace {
  text-decoration: bold;
}

/* Notes */
.notespace-header {
  margin-bottom: 5px;
}

.notespace-body {
  position: relative;
  border: 1px solid blue;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
}

.notespace-textarea {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  resize: none;
  overflow: hidden;
  min-height: 100px;
}

.notecanvas {
  position: absolute;
  z-index: -1;
}
.note {
  position: absolute;
  width: 150px;
  border: 1px dashed black;
  height: fit-content;
}
.note-textarea {
  outline: none;
  border: none;
  resize: none;
  overflow: hidden;
  min-height: 100px;
}

.note-quill {
  outline: none;
  border: none;
  resize: none;
  width: inherit;
  overflow: hidden;
  min-height: 100px;
}

.note-quill p {
  margin: 0px;
}

.note-quill div {
  outline: none;
  padding: 0px;
}

.note-quill .ql-clipboard {
  display: none;
}

#qr {
  min-height: 150px;
}

.fabric {
  position: absolute;
  top: 0;
  left: 0;
}