/**
 * importer.less
 *
 * By default, new Sails projects are configured to compile this file
 * from LESS to CSS.  Unlike CSS files, LESS files are not compiled and
 * included automatically unless they are imported below.
 *
 * For more information see:
 *   https://sailsjs.com/anatomy/assets/styles/importer-less
 */
/**
 * Color Variables
 */
/**
 * This file is for overriding some default bootstrap styles.
 *
 * > NOTE THAT THIS FILE AFFECTS GLOBAL STYLES.
 */
.dropdown-menu {
  font-size: 0.8rem;
}
.dropdown-menu.show {
  width: 340px;
  height: 320px;
  overflow-y: scroll;
}
.dropdown-item {
  white-space: normal;
  padding: 0.25rem 1rem;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #d4d4d4;
}
@media (max-width: 375px) {
  .dropdown-menu.show {
    width: 315px;
  }
}
[v-cloak] {
  display: none;
}
html,
body {
  height: 100%;
  margin: 0;
}
[purpose='page-wrap'] {
  height: 100%;
  /* lesshint-disable */
  height: auto !important;
  /* lesshint-enable */
  min-height: 100%;
  position: relative;
}
[purpose='page-wrap'].hasFooter {
  padding-bottom: 40px;
}
[purpose='page-footer'] {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
@media (max-width: 800px) {
  [purpose='page-wrap'] {
    padding-bottom: 75px;
  }
  [purpose='page-wrap'] [purpose='page-footer'] {
    height: 75px;
  }
  [purpose='page-wrap'] [purpose='page-footer'] [purpose='footer-copy'],
  [purpose='page-wrap'] [purpose='page-footer'] [purpose='footer-nav'] {
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media (max-width: 575px) {
  [purpose='page-wrap'] {
    padding-bottom: 100px;
  }
  [purpose='page-wrap'] [purpose='page-footer'] {
    height: 100px;
  }
}
#toast-container .toast-message {
  font-size: 12px;
}
.toast-title {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500 !important;
}
.container-fluid .sidepanel-left {
  padding-left: 0;
  background-color: #fff;
  width: 200px;
  height: calc(100vh - 60px);
  border-right: 1px solid #ccc;
}
.container-fluid .sidepanel-left .list-group-item {
  color: #333;
  border-top: rgba(0, 0, 0, 0.125);
  border-bottom: rgba(0, 0, 0, 0.125);
  font-size: 12px;
}
.container-fluid .sidepanel-left .list-group-item:hover {
  color: #333;
  background-color: #eee;
}
.container-fluid .sidepanel-left .list-group-item.active {
  color: #333;
  background-color: #eee;
}
.container-fluid .sidepanel-left .list-group-item.disabled {
  background-color: #fff;
  color: #aaa;
}
.container-fluid .sidepanel-left .divider {
  padding: 0;
  margin: 1px;
}
.container-fluid .sidepanel-left .divider hr {
  padding: 0;
  margin: 0;
}
/**
 * <stripe-card-element>
 */
[parasails-component='stripe-card-element'] .card-element-wrapper {
  position: relative;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .card-element {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 30px;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .card-element.pseudofocused {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
[parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator {
  font-size: 15px;
  position: absolute;
  right: 14px;
  top: 8px;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator.hidden {
  display: none;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator.syncing {
  -webkit-animation: fa-spinner-rotate 1.5s infinite linear;
  animation: fa-spinner-rotate 1.5s infinite linear;
}
@-webkit-keyframes fa-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate-clockwise {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
[parasails-component='stripe-card-element'] .card-element-wrapper.secret-card-element-wrapper {
  opacity: 0;
  height: 1px;
}
@media screen and (max-width: 450px) {
  [parasails-component='stripe-card-element'] .card-element-wrapper .card-element {
    padding-right: 20px;
  }
  [parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator {
    right: 9px;
  }
}
/**
 * <ajax-button>
 *
 * App-wide styles for our ajax buttons.
 */
[parasails-component='ajax-button'] .button-loader,
[parasails-component='ajax-button'] .button-loading {
  display: none;
  margin: auto;
}
[parasails-component='ajax-button'] .button-loader .loading-dot,
[parasails-component='ajax-button'] .button-loading .loading-dot {
  opacity: 0;
  display: inline;
  -moz-animation-name: fade-in;
  -webkit-animation-name: fade-in;
  -ms-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-animation-direction: linear;
  -ms-animation-direction: linear;
  -o-animation-direction: linear;
  animation-direction: linear;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot1,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot1 {
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot2,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot2 {
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot3,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot3 {
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot4,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot4 {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
[parasails-component='ajax-button'].syncing .button-loader,
[parasails-component='ajax-button'].syncing .button-loading {
  display: inline-block;
}
[parasails-component='ajax-button'].syncing .button-text {
  display: none;
}
/**
 * <side-nav>
 *
 * App-wide styles for our side navigation.
 */
[parasails-component='side-nav'] {
  width: 16.666667%;
  margin-bottom: 2.5rem;
}
[parasails-component='side-nav'] .sidenav-container {
  display: flex;
  flex-wrap: wrap;
  overflow-y: visible;
  overflow-x: hidden;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #ffffff;
}
[parasails-component='side-nav'] hr {
  display: block;
}
[parasails-component='side-nav'] .side-nav-link:hover {
  opacity: 75%;
}
[parasails-component='side-nav'] .side-nav-link.active span path {
  fill: #0369a1;
}
[parasails-component='side-nav'] path {
  fill: #212121;
}
@media (max-width: 1024px) {
  [parasails-component='side-nav'] {
    width: 100%;
  }
  [parasails-component='side-nav'] .sidenav-container {
    overflow-y: visible;
    overflow-x: visible;
    justify-content: center;
    flex-wrap: nowrap;
    box-shadow: 0 10px 15px -3px #0000001a 1a, 0 4px 6px -4px #0000001a 1a;
  }
  [parasails-component='side-nav'] hr {
    display: none;
  }
}
@media (max-width: 640px) {
  [parasails-component='side-nav'] {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  [parasails-component='side-nav'] .sidenav-container {
    overflow-x: scroll;
    overflow-y: hidden;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: 0;
  }
}
/**
 * <side-nav>
 *
 * App-wide styles for our side navigation.
 */
[parasails-component='side-nav-link'] {
  width: 100%;
  margin: 0.75rem 0rem;
}
[parasails-component='side-nav-link'] p {
  white-space: normal;
}
@media (max-width: 768px) {
  [parasails-component='side-nav-link'] {
    margin: 0.75rem 0rem;
  }
  [parasails-component='side-nav-link'] p {
    white-space: normal;
  }
}
@media (max-width: 648px) {
  [parasails-component='side-nav-link'] {
    margin: 0.75rem;
  }
  [parasails-component='side-nav-link'] p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/**
 * <modal>
 *
 * App-wide styles for our modals.
 */
[parasails-component='modal'] {
  -webkit-overflow-scrolling: touch;
}
[parasails-component='modal'] [purpose='modal-dialog'] {
  z-index: 100;
  position: relative;
  width: 98%;
  max-width: 700px;
  min-height: 200px;
  max-height: 100vh;
  top: 50%;
  margin: 0;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] {
  max-width: 700px;
  min-height: 200px;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button'] {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.6;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button']:focus {
  border-image: none;
  outline: none;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button']:hover {
  opacity: 1;
}
/**
 * <cloud-error>
 *
 * App-wide styles for our cloud-errors.
 */
#homepage h1 {
  font-family: 'Arvo', serif;
}
#homepage [purpose='cloud-1'] {
  -moz-animation-name: flyfade;
  -webkit-animation-name: flyfade;
  -ms-animation-name: flyfade;
  -o-animation-name: flyfade;
  animation-name: flyfade;
  -moz-animation-duration: 7s;
  -webkit-animation-duration: 7s;
  -ms-animation-duration: 7s;
  -o-animation-duration: 7s;
  animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  opacity: 0;
}
@-webkit-keyframes flyfade {
  0% {
    -webkit-transform: translate(0px, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(110px, 0px);
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-moz-keyframes flyfade {
  0% {
    -moz-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -moz-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-o-keyframes flyfade {
  0% {
    -o-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -o-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -o-transform: translate(220px, 0);
    opacity: 0;
  }
}
@keyframes flyfade {
  0% {
    transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(220px, 0);
    opacity: 0;
  }
}
#homepage [purpose='cloud-2'] {
  -moz-animation-name: flyfade;
  -webkit-animation-name: flyfade;
  -ms-animation-name: flyfade;
  -o-animation-name: flyfade;
  animation-name: flyfade;
  -moz-animation-duration: 7s;
  -webkit-animation-duration: 7s;
  -ms-animation-duration: 7s;
  -o-animation-duration: 7s;
  animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -moz-animation-delay: 3.5s;
  -webkit-animation-delay: 3.5s;
  -ms-animation-delay: 3.5s;
  -o-animation-delay: 3.5s;
  animation-delay: 3.5s;
  opacity: 0;
}
@-webkit-keyframes flyfade {
  0% {
    -webkit-transform: translate(0px, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(110px, 0px);
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-moz-keyframes flyfade {
  0% {
    -moz-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -moz-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-o-keyframes flyfade {
  0% {
    -o-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -o-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -o-transform: translate(220px, 0);
    opacity: 0;
  }
}
@keyframes flyfade {
  0% {
    transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(220px, 0);
    opacity: 0;
  }
}
#homepage [purpose='ship'] {
  -moz-animation-name: skid;
  -webkit-animation-name: skid;
  -ms-animation-name: skid;
  -o-animation-name: skid;
  animation-name: skid;
  -moz-animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  -ms-animation-duration: 2.5s;
  -o-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes skid {
  0% {
    -webkit-transform: translate(0px, 0px);
  }
  10% {
    -webkit-transform: translate(-1px, -1px);
  }
  20% {
    -webkit-transform: translate(-2px, -2px);
  }
  30% {
    -webkit-transform: translate(-3px, -2px);
  }
  40% {
    -webkit-transform: translate(-4px, -1px);
  }
  50% {
    -webkit-transform: translate(-5px, 0px);
  }
  60% {
    -webkit-transform: translate(-4px, 1px);
  }
  70% {
    -webkit-transform: translate(-3px, 2px);
  }
  80% {
    -webkit-transform: translate(-2px, 2px);
  }
  90% {
    -webkit-transform: translate(-1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
  }
}
@-moz-keyframes skid {
  0% {
    -moz-transform: translate(0px, 0px);
  }
  10% {
    -moz-transform: translate(-1px, -1px);
  }
  20% {
    -moz-transform: translate(-2px, -2px);
  }
  30% {
    -moz-transform: translate(-3px, -2px);
  }
  40% {
    -moz-transform: translate(-4px, -1px);
  }
  50% {
    -moz-transform: translate(-5px, 0px);
  }
  60% {
    -moz-transform: translate(-4px, 1px);
  }
  70% {
    -moz-transform: translate(-3px, 2px);
  }
  80% {
    -moz-transform: translate(-2px, 2px);
  }
  90% {
    -moz-transform: translate(-1px, 1px);
  }
  100% {
    -moz-transform: translate(0, 0px);
  }
}
@-o-keyframes skid {
  0% {
    -o-transform: translate(0px, 0px);
  }
  10% {
    -o-transform: translate(-1px, -1px);
  }
  20% {
    -o-transform: translate(-2px, -2px);
  }
  30% {
    -o-transform: translate(-3px, -2px);
  }
  40% {
    -o-transform: translate(-4px, -1px);
  }
  50% {
    -o-transform: translate(-5px, 0px);
  }
  60% {
    -o-transform: translate(-4px, 1px);
  }
  70% {
    -o-transform: translate(-3px, 2px);
  }
  80% {
    -o-transform: translate(-2px, 2px);
  }
  90% {
    -o-transform: translate(-1px, 1px);
  }
  100% {
    -o-transform: translate(0, 0px);
  }
}
@keyframes skid {
  0% {
    transform: translate(0px, 0px);
  }
  10% {
    transform: translate(-1px, -1px);
  }
  20% {
    transform: translate(-2px, -2px);
  }
  30% {
    transform: translate(-3px, -2px);
  }
  40% {
    transform: translate(-4px, -1px);
  }
  50% {
    transform: translate(-5px, 0px);
  }
  60% {
    transform: translate(-4px, 1px);
  }
  70% {
    transform: translate(-3px, 2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
  90% {
    transform: translate(-1px, 1px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
#homepage [purpose='more-info-text'] {
  -moz-animation-name: bob;
  -webkit-animation-name: bob;
  -ms-animation-name: bob;
  -o-animation-name: bob;
  animation-name: bob;
  -moz-animation-duration: 3.2s;
  -webkit-animation-duration: 3.2s;
  -ms-animation-duration: 3.2s;
  -o-animation-duration: 3.2s;
  animation-duration: 3.2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes bob {
  0% {
    -webkit-transform: translate(0px);
  }
  50% {
    -webkit-transform: translatey(-7px);
  }
  100% {
    -webkit-transform: translatey(0px);
  }
}
@-moz-keyframes bob {
  0% {
    -moz-transform: translatey(0px);
  }
  50% {
    -moz-transform: translatey(-7px);
  }
  100% {
    -moz-transform: translatey(0px);
  }
}
@-o-keyframes bob {
  0% {
    -o-transform: translatey(0px);
  }
  50% {
    -o-transform: translatey(-7px);
  }
  100% {
    -o-transform: translatey(0px);
  }
}
@keyframes bob {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-7px);
  }
  100% {
    transform: translatey(0px);
  }
}
#homepage [purpose='setup-step'] {
  padding-left: 240px;
}
@media (max-width: 991px) {
  #homepage [purpose='setup-step'] {
    padding-left: 0px;
  }
}
#welcome .dropdown-menu button,
#welcome .dropdown-menu a {
  font-size: 12px;
  cursor: pointer;
}
#project .filepond--credits {
  display: none;
}
#project .filepond--panel-root {
  background-color: #eee;
}
#project .filepond--item,
#project .filepond--list-scroller {
  display: none;
}
#project .edgedevice-modal .raw-image-container {
  min-height: 400px;
}
#project .edgedevice-modal .raw-image-container img {
  margin: auto;
}
#project .webcam-modal .webcam-container {
  width: 100%;
  min-height: 459px;
}
#data-analysis .a9s-annotation .a9s-inner,
#data-analysis .a9s-selection .a9s-inner {
  stroke-width: 2px !important;
}
#data-analysis .a9s-annotation .a9s-inner,
#data-analysis .a9s-selection .a9s-inner {
  stroke-width: 2px !important;
  fill: transparent !important;
  opacity: 1 !important;
}
#data-analysis .a9s-annotation .a9s-outer,
#data-analysis .a9s-selection .a9s-outer {
  fill: transparent !important;
  opacity: 1 !important;
}
#data-label .filepond--credits {
  display: none;
}
#data-label .filepond--panel-root {
  background-color: #eee;
}
#data-label .r6o-editor-inner {
  border-radius: 0.5rem;
  display: none;
}
#data-label .r6o-editor {
  font-family: 'Noto Sans JP', sans-serif;
  scale: 0.8;
}
#data-label .r6o-editor .r6o-footer .r6o-btn {
  padding-top: 3px;
  padding-bottom: 0;
}
#data-label .r6o-editor .r6o-widget.r6o-tag {
  display: none;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
#data-label .r6o-editor .r6o-widget.r6o-tag input {
  height: 45px;
}
#data-label .r6o-editor .r6o-widget.r6o-tag ul.r6o-taglist {
  margin-top: auto;
  margin-bottom: auto;
}
#data-label .r6o-editor .r6o-widget.r6o-tag ul.r6o-taglist li {
  border-radius: 1rem;
  min-width: 35px;
  font-size: 0.9vw;
  line-height: normal;
}
#data-label .r6o-editor .r6o-widget.r6o-tag ul.r6o-taglist li .r6o-delete-wrapper {
  background-color: transparent;
  color: #b91c1c;
}
#data-label .r6o-editor .r6o-widget.r6o-tag ul.r6o-taglist li .r6o-delete-wrapper svg {
  display: inline-block;
  vertical-align: -2px;
}
#data-label .r6o-editor .r6o-widget.r6o-tag ul.r6o-taglist li .r6o-delete-enter-done {
  position: relative;
}
#data-label .r6o-editor .r6o-widget.r6o-tag ul.r6o-taglist li .r6o-label {
  position: relative;
}
#data-label .lang-ja .btn-outline-dark {
  font-size: 8px;
}
#data-label .r6o-btn {
  border-radius: 0.25rem;
  background-color: #0369a1;
}
#data-label .r6o-btn:hover {
  background-color: #aaa;
  border-color: #aaa;
}
#data-label .r6o-btn.outline {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
#data-label #slide {
  width: 100%;
  height: 100%;
  transition: transform .3s;
}
#data-label svg:focus {
  outline: none;
}
#data-label .annoList:hover,
#data-label .annoList:focus,
#data-label .labelList:hover {
  border-color: #0369a1 !important;
}
#data-label .labelListContainer {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
#data-label .labelListContainer:after {
  content: "";
  flex: auto;
}
#data-label #mainImageContainer {
  width: 100%;
  height: 100%;
  transition: transform .3s;
}
#data-label #mainImageContainer > img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
#data-label div.selectedImageCard {
  outline: 2px solid #0369a1;
  outline-offset: 2px;
}
#data-label .image-container > div.allImageCard:hover {
  outline: 2px solid #cbd5e1;
  outline-offset: 2px;
}
#data-label .a9s-annotation .a9s-inner,
#data-label .a9s-selection .a9s-inner {
  stroke-width: 2px !important;
}
#data-label .anno-image-container.semanticSegmentation .a9s-annotation .a9s-inner,
#data-label .a9s-selection .a9s-inner {
  stroke-width: 2px !important;
  fill: transparent !important;
  opacity: 1 !important;
}
#data-label .anno-image-container.semanticSegmentation .a9s-annotation .a9s-outer,
#data-label .a9s-selection .a9s-outer {
  fill: transparent !important;
  opacity: 1 !important;
}
#data-label .dropdown-menu {
  max-height: 234px;
  overflow-y: scroll;
}
#data-label .dropdown-menu::-webkit-scrollbar-track {
  background-color: white;
}
#data-label #chartjs-legend::-webkit-scrollbar-thumb,
#data-label #chartjs-legend-train::-webkit-scrollbar-thumb,
#data-label #chartjs-legend-test::-webkit-scrollbar-thumb {
  min-height: auto !important;
}
#data-label #chartjs-legend ul,
#data-label #chartjs-legend-train ul,
#data-label #chartjs-legend-test ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#data-label #chartjs-legend ul li,
#data-label #chartjs-legend-train ul li,
#data-label #chartjs-legend-test ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: small;
}
#build-models .starttraining-modal label {
  justify-content: flex-end;
}
#model-deploy pre.token {
  font-size: 12px;
  font-family: monospace;
  background-color: #eee;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  white-space: normal;
}
#model-deploy .start-build-section {
  border: 1px #ccc solid;
  padding: 40px;
  background-color: #ddd;
}
#model-deploy .instruction-section {
  border: 1px #ccc solid;
  padding: 40px;
  background-color: #fafafa;
}
#model-deploy .instruction-section .code-container {
  margin-top: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px #ccc solid;
}
#model-deploy .js-plotly-plot .plotly div {
  margin: 0 auto !important;
}
#model-deploy [purpose='modal-dialog'] {
  max-width: 1033px;
}
#model-deploy [purpose='modal-dialog'] [purpose='modal-content'] {
  max-width: 1033px;
}
#model-observation {
  border-top: 1px solid #ccc;
}
#model-observation h1 {
  font-size: 18px;
  border-bottom: 2px solid #777;
}
#model-observation .container-fluid {
  background-color: #eee;
}
#model-observation .container-fluid .main-content {
  width: calc(100vw - 220px);
  height: calc(100vh - 60px);
  background-color: #fff;
}
#model-observation .container-fluid .main-content .raw-image-container {
  background-color: #777;
  width: 450px;
}
#model-observation .tinyboom-bboxes {
  margin-top: -300px;
  height: 300px;
  width: 410px;
  position: relative;
}
#model-observation .tinyboom-bboxes .bbox {
  border: 2px #ffff00 solid;
  position: absolute;
}
#data-timeseries-audio .filepond--credits {
  display: none;
}
#data-timeseries-audio .filepond--panel-root {
  background-color: #eee;
}
#data-timeseries-audio div.selectedAudioCard {
  outline: 2px solid #0369a1;
  outline-offset: 2px;
}
#data-timeseries-audio .audio-container > div.allAudioCard:hover {
  outline: 2px solid #cbd5e1;
  outline-offset: 2px;
}
#data-timeseries-audio #chartjs-legend::-webkit-scrollbar-thumb,
#data-timeseries-audio #chartjs-legend-train::-webkit-scrollbar-thumb,
#data-timeseries-audio #chartjs-legend-test::-webkit-scrollbar-thumb {
  min-height: auto !important;
}
#data-timeseries-audio #chartjs-legend ul,
#data-timeseries-audio #chartjs-legend-train ul,
#data-timeseries-audio #chartjs-legend-test ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#data-timeseries-audio #chartjs-legend ul li,
#data-timeseries-audio #chartjs-legend-train ul li,
#data-timeseries-audio #chartjs-legend-test ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: small;
}
#data-timeseries-sensor .filepond--credits {
  display: none;
}
#data-timeseries-sensor .filepond--panel-root {
  background-color: #eee;
}
#data-timeseries-sensor div.selectedSensorCard {
  outline: 2px solid #0369a1;
  outline-offset: 2px;
}
#data-timeseries-sensor .sensor-container > div.allSensorCard:hover {
  outline: 2px solid #cbd5e1;
  outline-offset: 2px;
}
#data-timeseries-sensor #chartjs-legend::-webkit-scrollbar-thumb,
#data-timeseries-sensor #chartjs-legend-train::-webkit-scrollbar-thumb,
#data-timeseries-sensor #chartjs-legend-test::-webkit-scrollbar-thumb {
  min-height: auto !important;
}
#data-timeseries-sensor #chartjs-legend ul,
#data-timeseries-sensor #chartjs-legend-train ul,
#data-timeseries-sensor #chartjs-legend-test ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#data-timeseries-sensor #chartjs-legend ul li,
#data-timeseries-sensor #chartjs-legend-train ul li,
#data-timeseries-sensor #chartjs-legend-test ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: small;
}
#project-timeseries-audio .filepond--credits {
  display: none;
}
#project-timeseries-audio .filepond--panel-root {
  background-color: #eee;
}
#project-timeseries-audio .filepond--item,
#project-timeseries-audio .filepond--list-scroller {
  display: none;
}
#project-timeseries-audio .edgedevice-modal .raw-image-container {
  min-height: 400px;
}
#project-timeseries-audio .edgedevice-modal .raw-image-container img {
  margin: auto;
}
#project-timeseries-audio .webcam-modal .webcam-container {
  width: 100%;
  min-height: 459px;
}
#project-timeseries-sensor .filepond--credits {
  display: none;
}
#project-timeseries-sensor .filepond--panel-root {
  background-color: #eee;
}
#project-timeseries-sensor .filepond--item,
#project-timeseries-sensor .filepond--list-scroller {
  display: none;
}
#project-timeseries-sensor .edgedevice-modal .raw-image-container {
  min-height: 400px;
}
#project-timeseries-sensor .edgedevice-modal .raw-image-container img {
  margin: auto;
}
#project-timeseries-sensor .webcam-modal .webcam-container {
  width: 100%;
  min-height: 459px;
}
#account-overview [purpose='remove-button'] {
  color: #14acc2;
}
#account-overview [purpose='remove-button']:hover {
  color: #000;
}
#team .container .team-members table.table {
  font-size: 12px;
}
#team .container .team-members table.table button {
  font-size: 9px;
}
@media (max-width: 500px) {
  #faq code {
    word-break: break-all;
  }
  #faq [purpose='placeholder'] {
    word-break: break-all;
  }
}
