html {
  -webkit-text-size-adjust: none;
  touch-action: manipulation;
}
@media (max-width: 700px) {
  html {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
}

* {
  box-sizing: border-box;
}

input,
select {
  display: inline-block;
  vertical-align: middle;
}

input,
textarea {
  padding: 0 0.25% 0 3px;
  text-indent: 0;
}

input {
  width: 100%;
}

.selectize-input {
  padding: 1%;
}

@media (min-width: 701px) {
  .clicable:hover {
    cursor: pointer;
  }
}
.btn {
  color: #fff;
  text-align: center;
  background-color: #999999;
  border-color: #999999;
  font-size: inherit;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 30px;
  font-size: 0.8rem;
  line-height: 1.42857;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 0;
  border-radius: 0.2rem;
}
@media (max-width: 700px) {
  .btn {
    padding: 12px 15px;
    font-size: 85%;
  }
}
.btn:hover {
  cursor: pointer;
  background-color: #919191;
  border-color: #7a7a7a;
  box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2);
}
.btn.disabled {
  pointer-events: none !important;
}

#mvSequencer {
  width: 98vw;
  height: 73.5vw;
  font-size: clamp(0px, 0.8rem, 20px);
}
@media (max-width: 700px) {
  #mvSequencer {
    width: 100vw;
    height: 432.8205128205vw;
  }
}
#mvSequencer .selectize-dropdown,
#mvSequencer .selectize-input,
#mvSequencer .selectize-input input,
#mvSequencer input,
#mvSequencer textarea,
#mvSequencer select,
#mvSequencer a {
  font-size: clamp(0px, 0.8rem, 20px);
}
#mvSequencer .tagging-panel {
  height: 60%;
}
@media (max-width: 700px) {
  #mvSequencer .tagging-panel {
    height: 100%;
  }
}
#mvSequencer.mvSequencer-landscape, #mvSequencer.mvSequencer-portrait {
  border: 1px solid #ccc;
}
#mvSequencer.mvSequencer-landscape {
  width: 98vw;
  height: 73.5vw;
}
#mvSequencer.mvSequencer-portrait {
  width: 390px;
  height: 1688px;
}
#mvSequencer.mvSequencer-portrait .tagging-panel {
  height: 100%;
}

#mvSequencer,
.playgroundEditor {
  text-align: center;
  line-height: normal;
}
#mvSequencer select,
.playgroundEditor select {
  background-color: #fff;
  background-position: 100%;
  border: 1px solid #c0c0c0;
}
#mvSequencer select.selectWithBg,
.playgroundEditor select.selectWithBg {
  color: transparent !important;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}
#mvSequencer select.selectWithBg:hover,
.playgroundEditor select.selectWithBg:hover {
  color: #777 !important;
}
#mvSequencer .icon-touch,
.playgroundEditor .icon-touch {
  transform: scale(1.25, 1.25);
}

.saving-offline-data-msg {
  color: red;
  font-weight: bold;
}
.saving-offline-data-msg .css-loader::before {
  background-color: red !important;
}

#endButton {
  width: 10em;
  justify-content: center;
}
#endButton.disabled {
  opacity: 0.5;
}
#endButton.disabled .material-icons {
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#endButton.save-successful {
  background: linear-gradient(60deg, #06a506, #008000);
}
#endButton.save-failed {
  background: linear-gradient(60deg, #f9b331, #ffa500);
}