/* COLORS */
/*Top level variables*/
.avatar-screen {
  overflow: hidden;
  transition: opacity 0.2s;
  margin: 0px !important;
  overflow: auto;
  overflow-y: scroll;
  text-align: center;
}
.avatar-screen .stl-viewer-container-outer {
  text-align: center;
}
.avatar-screen .stl-viewer-container-outer .stlViewer {
  display: block;
}
.avatar-screen .stl-viewer-container-outer canvas {
  display: block;
  margin: 0 auto;
}
.avatar-screen .avatar-controls {
  margin: 0 auto;
  background-color: white;
  overflow-y: hidden;
  width: 100%;
}

.avatar-editor-root {
  direction: ltr !important;
}
@media only screen and (max-width: 767px) {
  .avatar-editor-root {
    height: calc(100vh - 38px);
  }
}
.avatar-editor-root .canvas-screen {
  overflow: hidden;
}
.avatar-editor-root .canvas-block {
  padding: 0px;
  vertical-align: top;
}
.avatar-editor-root .bottom-avatar-actions {
  position: fixed;
  display: flex;
  cursor: pointer;
  bottom: 0px;
  right: 0px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  color: #4c4948;
  animation-name: slide-up;
  animation-duration: 0.5s;
}
@media only screen and (min-width: 992px) {
  .avatar-editor-root .bottom-avatar-actions {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .avatar-editor-root .bottom-avatar-actions {
    position: fixed;
    bottom: 10px;
    left: 0px;
  }
}
@keyframes slide-up {
  0% {
    bottom: -50px;
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
.avatar-editor-root .bottom-avatar-actions .bottom-avatar-btn {
  flex-basis: 1;
  width: 100%;
}
.avatar-editor-root .tab-bar {
  height: 40px;
  width: 100%;
  border: none;
  flex-direction: row;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .avatar-editor-root .tab-bar {
    width: 100vw;
  }
}
.avatar-editor-root .tab-bar .selected {
  color: #16b5aa !important;
}
.avatar-editor-root .tab-bar .selected::after {
  background: #16b5aa !important;
  width: 100% !important;
}
.avatar-editor-root .tab-bar .tab:after {
  height: 3px;
  width: 0px;
  margin: auto;
  margin-top: -3px;
  content: "";
  display: block;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}
.avatar-editor-root .tab-bar .tab {
  cursor: pointer;
  margin-bottom: 3px;
  flex-basis: 50%;
  flex-grow: 1;
  color: #a6a6a6;
  line-height: 40px;
  background-color: white;
}

.avatar-prompt-root {
  overflow: hidden;
  padding: 0px !important;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.avatar-prompt-root .avatar-prompt-content {
  overflow: hidden;
  background-color: white;
}
@media only screen and (max-width: 991px) {
  .avatar-prompt-root .avatar-prompt-content {
    position: absolute;
    top: 0px;
    bottom: 0px;
    padding: 0px;
    text-align: center;
    max-height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .avatar-prompt-root .avatar-prompt-content {
    padding: 0px;
    text-align: center;
  }
}

.ensure-avatar-height {
  min-height: calc(60vh - 64px);
}

.avatar-screen {
  display: relative;
  max-height: 100%;
  width: unset !important;
}
.avatar-screen .stl-viewer-container {
  max-width: 50vw;
}
.avatar-screen .avatar-controls {
  position: relative;
  height: 100%;
  transition: margin 0.5s ease, height 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .avatar-screen .avatar-controls {
    -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px -2x 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.15);
    margin: 0px;
    justify-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .avatar-screen .avatar-controls {
    box-shadow: unset;
    -moz-box-shadow: unset;
    -webkit-box-shadow: unset;
    overflow-y: hidden;
  }
}
.avatar-screen .avatar-controls .expand-btn {
  position: absolute;
  top: -20px;
  left: 0px;
  font-weight: bold;
  color: #747474;
  background-color: white;
  border-radius: 20px;
  height: 30px;
  width: 100%;
  -webkit-box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
}

.avatar-canvas-block {
  width: 100%;
  height: 100%;
  overflow: none;
}

.avatar-editor-root.wide-canvas {
  direction: rtl;
  padding: 0px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
}
.avatar-editor-root.wide-canvas .canvas-screen {
  display: flex;
  flex-direction: column;
}
.avatar-editor-root.wide-canvas .avatar-canvas-block {
  flex-basis: 0px;
  flex-grow: 1;
  height: 0px;
}
.avatar-editor-root.wide-canvas .flex-adjusting {
  overflow-y: auto;
}

.avatar-editor-root {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .avatar-editor-root .canvas-screen {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .avatar-editor-root .canvas-screen {
    height: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  .avatar-editor-root {
    width: 80vw;
    max-width: 80vw;
  }
}
@media only screen and (min-width: 1200px) {
  .avatar-editor-root {
    width: 80vw;
    max-width: 80vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .avatar-editor-root {
    width: 90vw;
  }
}
@media only screen and (min-width: 992px) {
  .avatar-editor-root .avatar-screen {
    width: calc(50% - 3px) !important;
  }
}
@media only screen and (min-width: 992px) {
  .avatar-editor-root .canvas-block {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .avatar-editor-root .canvas-block {
    width: 100%;
  }
}

.avatar-prompt-root {
  position: relative;
  max-width: 100vw !important;
  overflow: hidden !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .avatar-prompt-root {
    width: 100% !important;
  }
}
@media only screen and (min-width: 992px) {
  .avatar-prompt-root {
    margin: 0px !important;
    width: 80vw !important;
    max-width: 100vh;
    max-width: 1080px !important;
  }
}
@media only screen and (max-width: 991px) {
  .avatar-prompt-root {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    height: 100%;
  }
  @supports (-webkit-overflow-scrolling: touch) {
    .avatar-prompt-root {
      overflow-y: hidden;
    }
  }
}
@media only screen and (max-width: 991px) {
  .avatar-prompt-root .nav-padding {
    padding-top: 64px;
  }
}
.avatar-prompt-root .avatar-prompt-content {
  max-width: 100vw;
  max-width: 100vw;
}
@media only screen and (max-width: 991px) {
  .avatar-prompt-root .avatar-prompt-content {
    width: 100%;
    height: 100vh;
  }
}
@media only screen and (min-width: 992px) {
  .avatar-prompt-root .avatar-prompt-content {
    max-height: 540px !important;
  }
}

/* COLORS */
/*Top level variables*/
.slice-progress-bar-background {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.progress-parent {
  height: 252px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  width: 252px;
  padding: 0px;
  border: 1px solid #bdf5e2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  position: absolute;
}
.progress-parent .play-svg {
  width: 250px;
  height: 250px;
}

.progress-bar-toyify {
  background-color: transparent;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  height: 100%;
  clip: rect(252px, 252px, 252px, 0px);
  transition: clip 5s;
  animation: clip 5s;
  -webkit-animation: clip 5s;
  border-radius: 50%;
  overflow: hidden;
}

.toyification-prompt.root {
  position: absolute;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  .toyification-prompt.root {
    overflow-x: auto;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .toyification-prompt.root {
    width: 100%;
    height: 100%;
    margin-top: 0px;
    border-radius: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .toyification-prompt.root {
    overflow: hidden;
    border-radius: 4px;
    max-height: calc(100% - 20px);
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}
@media only screen and (max-width: 991px) {
  .toyification-prompt.root {
    margin-top: unset !important;
    max-height: unset !important;
    height: 100%;
    margin-top: 0px;
    border-radius: 0px;
  }
}

.hide-while-running {
  opacity: 0 !important;
}

.toyification-prompt {
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome and Opera */
  text-align: center;
  overflow: auto;
  background-color: white;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .toyification-prompt {
    overflow: none;
  }
}
.toyification-prompt .canvas-screen {
  transition: width 0.5s ease, height 0.5s ease, min-width 0.5s ease, min-height 0.5s ease;
}
@media only screen and (min-width: 767px) {
  .toyification-prompt .canvas-screen {
    display: inline-block;
    padding-top: 0px;
    top: 0px;
    margin-left: 5px;
    margin-right: 5px;
    vertical-align: top;
  }
}
.toyification-prompt .prompt-content {
  min-width: 350px;
}
@media only screen and (max-width: 767px) {
  .toyification-prompt .prompt-content {
    min-width: 0px;
  }
}