/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}
html {
  font-size: 1em;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
}
a {
  color: #f1f1f1;
  text-decoration: none;
}
a:hover {
  /*text-decoration: underline;*/
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
.no-select {
  -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 */
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.fullscreen-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
}
.flex-column {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-row {
  -webkit-flex-direction: row;
  flex-direction: row;
}
#app-wrapper {
  position: relative;
  display: block;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  overflow: hidden;
  bottom: 0;
  left: 0;
  background: #f1f1f1;
}
#canvasWrapper,
#character-canvas {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
#canvasWrapper canvas {
  cursor: move;
}
#noWebGL {
  text-align: center;
  position: relative;
  top: 48%;
}
#noWebGL a {
  color: rgba(34, 34, 34, 0.7);
}
#noWebGL a:hover {
  color: rgba(34, 34, 34, 0.9);
}
#msCounter {
  /*display: none;*/
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: #fff;
}
.layout-panel-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.layout-panel {
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 10px;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  overflow: auto;
}
.layout-panel.pinned {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  max-height: 50%;
  background: rgba(0, 0, 0, 0.8);
}
.mirrored {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.centered-img.shrink-fill {
  max-width: 100%;
}
.loadingScreen #app-wrapper {
  min-width: auto;
  min-height: auto;
}
#logo {
  position: absolute;
  margin: 0px;
  top: 0px;
  left: 0px;
  display: block;
  width: 296px;
  height: 0px;
  padding-top: 192px;
  background-image: url(../img/logo.png);
  background-size: 296px 192px;
  overflow: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 900px) {
  #logo {
    width: 222px;
    padding-top: 144px;
    background-size: 222px 144px;
  }
}
@media only screen and (max-width: 768px) {
  #logo {
    width: 148px;
    padding-top: 96px;
    background-size: 148px 96px;
  }
}
@media only screen and (max-height: 500px) {
  #logo {
    width: 74px;
    padding-top: 48px;
    background-size: 74px 48px;
  }
}
.desktop-layout #sections-content {
  width: 517px;
}
.thumbnail-button {
  margin: 0px;
}
.thumbnail-button.w80h80 img {
  width: 80px;
  height: 80px;
}
.thumbnail-button.w120h120 img {
  width: 120px;
  height: 120px;
}
.thumbnail-button.w80h160 img {
  width: 80px;
  height: 160px;
}
.thumbnail-button.w80h240 img {
  width: 80px;
  height: 240px;
}
.thumbnail-button.w160h240 img {
  width: 160px;
  height: 240px;
}
.thumbnail-button.w30h30 img {
  width: 30px;
  height: 30px;
}
.thumbnail-button.w30h30.no-image {
  width: 30px;
  height: 30px;
  cursor: default;
}
.thumbnail-button.w30h30.no-image img {
  display: none!important;
}
.specified-columns {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.specified-columns-1.thumb-width-80 {
  width: 80px;
  margin: 0 auto;
}
.specified-columns-1.thumb-width-80 .thumbnail-button {
  margin: 0px;
}
.specified-columns-1.thumb-width-120 {
  width: 120px;
  margin: 0 auto;
}
.specified-columns-1.thumb-width-120 .thumbnail-button {
  margin: 0px;
}
.specified-columns-2.thumb-width-80 {
  width: 160px;
  margin: 0 auto;
}
.specified-columns-2.thumb-width-80 .thumbnail-button {
  margin: 0px;
}
.specified-columns-2.thumb-width-120 {
  width: 240px;
  margin: 0 auto;
}
.specified-columns-2.thumb-width-120 .thumbnail-button {
  margin: 0px;
}
.specified-columns-3.thumb-width-80 {
  width: 240px;
  margin: 0 auto;
}
.specified-columns-3.thumb-width-80 .thumbnail-button {
  margin: 0px;
}
.specified-columns-3.thumb-width-120 {
  width: 360px;
  margin: 0 auto;
}
.specified-columns-3.thumb-width-120 .thumbnail-button {
  margin: 0px;
}
.specified-columns-4.thumb-width-80 {
  width: 320px;
  margin: 0 auto;
}
.specified-columns-4.thumb-width-80 .thumbnail-button {
  margin: 0px;
}
.specified-columns-4.thumb-width-120 {
  width: 480px;
  margin: 0 auto;
}
.specified-columns-4.thumb-width-120 .thumbnail-button {
  margin: 0px;
}
.specified-columns-5.thumb-width-80 {
  width: 400px;
  margin: 0 auto;
}
.specified-columns-5.thumb-width-80 .thumbnail-button {
  margin: 0px;
}
.specified-columns-5.thumb-width-120 {
  width: 600px;
  margin: 0 auto;
}
.specified-columns-5.thumb-width-120 .thumbnail-button {
  margin: 0px;
}
.specified-columns-6.thumb-width-80 {
  width: 480px;
  margin: 0 auto;
}
.specified-columns-6.thumb-width-80 .thumbnail-button {
  margin: 0px;
}
.specified-columns-6.thumb-width-120 {
  width: 720px;
  margin: 0 auto;
}
.specified-columns-6.thumb-width-120 .thumbnail-button {
  margin: 0px;
}
@media only screen and (max-width: 1680px) {
  .desktop-layout #sections-content {
    width: 437px;
  }
  .thumbnail-button.w80h80 img {
    width: 80px;
    height: 80px;
  }
  .thumbnail-button.w120h120 img {
    width: 100px;
    height: 100px;
  }
  .thumbnail-button.w80h160 img {
    width: 80px;
    height: 160px;
  }
  .thumbnail-button.w80h240 img {
    width: 80px;
    height: 240px;
  }
  .specified-columns-1.thumb-width-80 {
    width: 80px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-1.thumb-width-120 {
    width: 100px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-80 {
    width: 160px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-120 {
    width: 200px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-80 {
    width: 240px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-120 {
    width: 300px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-80 {
    width: 320px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-120 {
    width: 400px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-80 {
    width: 400px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-120 {
    width: 500px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-80 {
    width: 480px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-120 {
    width: 600px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
}
@media only screen and (max-width: 1440px) {
  .desktop-layout #sections-content {
    width: 357px;
  }
  .thumbnail-button.w80h80 img {
    width: 80px;
    height: 80px;
  }
  .thumbnail-button.w120h120 img {
    width: 120px;
    height: 120px;
  }
  .thumbnail-button.w80h160 img {
    width: 80px;
    height: 160px;
  }
  .thumbnail-button.w80h240 img {
    width: 80px;
    height: 240px;
  }
  .thumbnail-button.paint-preconf.w120h120 {
    width: 45px;
    height: 45px;
  }
  .specified-columns-1.thumb-width-80 {
    width: 80px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-1.thumb-width-120 {
    width: 120px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-80 {
    width: 160px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-120 {
    width: 240px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-80 {
    width: 240px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-120 {
    width: 360px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-80 {
    width: 320px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-120 {
    width: 480px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-80 {
    width: 400px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-120 {
    width: 600px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-80 {
    width: 480px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-120 {
    width: 720px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .desktop-layout #sections-content {
    width: 277px;
  }
  .thumbnail-button.w80h80 img {
    width: 60px;
    height: 60px;
  }
  .thumbnail-button.w120h120 img {
    width: 120px;
    height: 120px;
  }
  .thumbnail-button.w160h240 img {
    width: 120px;
    height: 180px;
  }
  .thumbnail-button.w80h160 img {
    width: 60px;
    height: 120px;
  }
  .thumbnail-button.w80h240 img {
    width: 60px;
    height: 180px;
  }
  .specified-columns-1.thumb-width-80 {
    width: 60px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-1.thumb-width-120 {
    width: 120px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-80 {
    width: 120px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-120 {
    width: 240px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-80 {
    width: 180px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-120 {
    width: 360px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-80 {
    width: 240px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-120 {
    width: 480px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-80 {
    width: 300px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-120 {
    width: 600px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-80 {
    width: 360px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-120 {
    width: 720px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
}
@media only screen and (max-width: 900px) {
  .desktop-layout #sections-content {
    width: 217px;
  }
  .thumbnail-button.w80h80 img {
    width: 60px;
    height: 60px;
  }
  .thumbnail-button.w120h120 img {
    width: 90px;
    height: 90px;
  }
  .thumbnail-button.w160h240 img {
    width: 90px;
    height: 135px;
  }
  .thumbnail-button.w80h160 img {
    width: 60px;
    height: 120px;
  }
  .thumbnail-button.w80h240 img {
    width: 60px;
    height: 180px;
  }
  .specified-columns-1.thumb-width-80 {
    width: 60px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-1.thumb-width-120 {
    width: 90px;
    margin: 0 auto;
  }
  .specified-columns-1.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-80 {
    width: 120px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-2.thumb-width-120 {
    width: 180px;
    margin: 0 auto;
  }
  .specified-columns-2.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-80 {
    width: 180px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-3.thumb-width-120 {
    width: 270px;
    margin: 0 auto;
  }
  .specified-columns-3.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-80 {
    width: 240px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-4.thumb-width-120 {
    width: 360px;
    margin: 0 auto;
  }
  .specified-columns-4.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-80 {
    width: 300px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-5.thumb-width-120 {
    width: 450px;
    margin: 0 auto;
  }
  .specified-columns-5.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-80 {
    width: 360px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-80 .thumbnail-button {
    margin: 0px;
  }
  .specified-columns-6.thumb-width-120 {
    width: 540px;
    margin: 0 auto;
  }
  .specified-columns-6.thumb-width-120 .thumbnail-button {
    margin: 0px;
  }
}
.specified-columns-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#editor,
.main-view {
  position: absolute;
  right: 0px;
  top: 0px;
  /*width: 29%;*/
  /*min-width: 295px;*/
  height: 100%;
  color: #ddd;
}
#editor {
  -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 */
  pointer-events: none;
  background: none !important;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#editor .tab-carousel-group {
  max-width: 100%;
}
#editor .tab-carousel-group .tabbed-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: auto;
}
#editor .tab-carousel-group .tabbed-content .layout-panel-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#editor .tab-carousel-group .tabbed-content .layout-panel-wrapper .layout-panel {
  background: none;
  border-radius: 10px;
  background: #8e8e8e;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  overflow: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
#editor .tab-carousel-group .tabbed-content .layout-panel-wrapper .layout-panel.pinned {
  margin-top: 1em;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  max-height: 50%;
}
#editor .tab-carousel-group .tab-carousel-wrapper {
  max-width: 100%;
  margin: 0 auto 1em auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 1.5em;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn {
  height: 40px;
  min-width: 20px;
  width: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn .arrow {
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-left {
  border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
  margin-right: 8px;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-left .arrow-left {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 8px solid #cfcfcf;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-right {
  border-bottom-right-radius: 40px;
  border-top-right-radius: 40px;
  margin-left: 8px;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-right .arrow-right {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 8px solid #cfcfcf;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.disabled .arrow {
  opacity: 0.3;
  cursor: default;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel {
  overflow: hidden;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list {
  white-space: nowrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  left: 0px;
  -webkit-transition: left 0.3s ease;
  -moz-transition: left 0.3s ease;
  -o-transition: left 0.3s ease;
  transition: left 0.3s ease;
  height: 1.5em;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list .tab-carousel-header {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-right: 1px solid black;
  color: black;
  padding: 3px 8px;
  line-height: 1.7em;
  -webkit-box-flex: 1 0 auto;
  -moz-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list .tab-carousel-header:last-child {
  border: none;
}
#editor img {
  -webkit-user-drag: none;
  user-drag: none;
}
#editor ul {
  list-style: none;
  padding: 0;
}
#editor li {
  cursor: pointer;
}
#editor select {
  margin-bottom: 0.8em;
}
#editor select:last-child {
  margin-bottom: 0;
}
#editor .editor-main {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 1em;
}
#editor #sections-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#editor #sections-wrapper #sections-content {
  text-align: center;
  min-height: 160px;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity, 0.1s, ease;
  -moz-transition: opacity, 0.1s, ease;
  -o-transition: opacity, 0.1s, ease;
  transition: opacity, 0.1s, ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
#editor #sections-wrapper #sections-content .single-submenu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#editor #sections-wrapper #sections-content > div {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
#editor #sections-wrapper #sections-content > div.flex-fill {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
#editor #sections-wrapper #print-my-mini {
  text-align: center;
}
#editor #sections-wrapper #print-my-mini .shop-button {
  display: inline-block;
  color: #f1f1f1;
  background: #ab0007;
  cursor: pointer;
  border: none;
  margin: 1em auto;
  padding: 0.5em;
}
#editor #sections-wrapper #print-my-mini .shop-button#add {
  width: 60%;
  min-width: 201px;
  pointer-events: auto;
}
#editor #sections-wrapper #print-my-mini p.error {
  display: block;
  margin: 0;
  font-size: 0.8em;
  position: absolute;
  color: #ab0007;
}
#editor .accordion {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#editor .accordion .accordion-header {
  position: relative;
  display: block;
  margin-top: 0.3em;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#editor .accordion .accordion-header:first-child {
  margin: 0;
}
#editor .accordion .accordion-header h3 {
  cursor: pointer;
  margin: 0;
  -webkit-transition: all, 0.15s, ease;
  -moz-transition: all, 0.15s, ease;
  -o-transition: all, 0.15s, ease;
  transition: all, 0.15s, ease;
}
#editor .accordion .accordion-header .clear-button {
  cursor: pointer;
  position: absolute;
  right: 0.5em;
  top: 0px;
  opacity: 0;
  height: 100%;
  font-size: 0.8em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#editor .accordion .accordion-header .clear-button a:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
#editor .accordion .accordion-header .arrow-wrapper {
  height: 100%;
  position: absolute;
  top: 0;
  left: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#editor .accordion .accordion-header .arrow-wrapper .arrow {
  -webkit-transition: all, 0.3s, ease;
  -moz-transition: all, 0.3s, ease;
  -o-transition: all, 0.3s, ease;
  transition: all, 0.3s, ease;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4.5px solid #ab0007;
}
#editor .accordion .accordion-header:hover {
  background: rgba(0, 0, 0, 0.7);
}
#editor .accordion .accordion-header:hover .clear-button {
  opacity: 1;
}
#editor .accordion .accordion-header.open {
  background: rgba(0, 0, 0, 0.7);
}
#editor .accordion .accordion-header.open h3 {
  font-size: 1.4em;
}
#editor .accordion .accordion-header.open .clear-button {
  opacity: 1;
}
#editor .accordion .accordion-header.open .arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#editor .accordion .accordion-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  overflow-y: auto;
  -webkit-transition: all, 0.3s, ease;
  -moz-transition: all, 0.3s, ease;
  -o-transition: all, 0.3s, ease;
  transition: all, 0.3s, ease;
}
#editor .accordion .accordion-content.open {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
#editor .slider-wrapper {
  padding: 0 12px;
}
#editor .slider-wrapper .rc-slider {
  position: relative;
  height: 14px;
  width: 100%;
  margin: 5px 0px;
  border-radius: 0px;
  background-color: #e9e9e9;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#editor .slider-wrapper .rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#editor .slider-wrapper .rc-slider-track {
  position: absolute;
  left: 0;
  height: 14px;
  border-radius: 0px;
  background-color: #e9e9e9;
}
#editor .slider-wrapper .rc-slider-track-limit {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0px 0px 0;
}
#editor .slider-wrapper .rc-slider-handle {
  position: absolute;
  margin-left: -12px;
  margin-top: -5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 5%;
  border: solid 1px #2a2a2a;
  background-color: #e9e9e9;
}
#editor .slider-wrapper .rc-slider-handle.hidden-handle {
  display: none;
}
#editor .slider-wrapper .rc-slider-handle:hover {
  background-color: #d0d0d0;
}
#editor .slider-wrapper .rc-slider-handle-active:active {
  background-color: #a9a9a9;
}
#editor .slider-wrapper .rc-slider-mark {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
#editor .slider-wrapper .rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
#editor .slider-wrapper .rc-slider-mark-text-active {
  color: #666;
}
#editor .slider-wrapper .rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
#editor .slider-wrapper .rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
#editor .slider-wrapper .rc-slider-dot:first-child {
  margin-left: -4px;
}
#editor .slider-wrapper .rc-slider-dot:last-child {
  margin-left: -4px;
}
#editor .slider-wrapper .rc-slider-dot-active {
  border-color: #d58083;
}
#editor .slider-wrapper .rc-slider-disabled {
  background-color: #e9e9e9;
}
#editor .slider-wrapper .rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
#editor .slider-wrapper .rc-slider-disabled .rc-slider-handle,
#editor .slider-wrapper .rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  background-color: #fff;
  cursor: not-allowed;
}
#editor .slider-wrapper .rc-slider-disabled .rc-slider-mark-text,
#editor .slider-wrapper .rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
#editor .slider-wrapper .rc-slider-vertical {
  width: 4px;
  height: 100%;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-track {
  bottom: 0;
  width: 14px;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-handle {
  position: absolute;
  margin-left: -5px;
  margin-bottom: -12px;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-handle.hidden-handle {
  display: none;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 10px;
  height: 100%;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
#editor .slider-wrapper .rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-enter,
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-appear {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  -webkit-animation-name: rcSliderTooltipZoomDownIn;
  animation-name: rcSliderTooltipZoomDownIn;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  -webkit-animation-name: rcSliderTooltipZoomDownOut;
  animation-name: rcSliderTooltipZoomDownOut;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-enter,
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
#editor .slider-wrapper .rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
#editor .slider-wrapper .rc-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#editor .slider-wrapper .rc-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#editor .slider-wrapper .rc-tooltip-hidden {
  display: none;
}
#editor .slider-wrapper .rc-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
#editor .slider-wrapper .rc-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 0px;
  -webkit-box-shadow: 0 0 4px #d9d9d9;
  -moz-box-shadow: 0 0 4px #d9d9d9;
  box-shadow: 0 0 4px #d9d9d9;
}
#editor .slider-wrapper .rc-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
#editor .slider-wrapper .rc-tooltip-placement-top #editor .slider-wrapper .rc-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}
#editor .linked-part {
  text-align: center;
}
#editor .linked-part > * {
  vertical-align: middle;
}
#editor .linked-part .link-button {
  cursor: pointer;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
#editor .linked-part:hover .link-button {
  opacity: 1;
}
#editor .thumbnail-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#editor .thumbnail-button img {
  display: block;
}
#editor .thumbnail-button.grayedOut img {
  opacity: 0.5;
}
#editor .thumbnail-button.selected img {
  background: rgba(171, 0, 7, 0.5);
}
#editor .thumbnail-button.no-onclick {
  cursor: default;
}
#editor .thumbnail-button.labelType-labelOnly {
  padding: 0.1em 0.4em;
  display: inline-block;
  color: #f1f1f1;
  border: 1px solid rgba(241, 241, 241, 0.5);
  background: rgba(0, 0, 0, 0.7);
  margin: 0.3em 0em 0em 0.3em;
  position: relative;
}
#editor .thumbnail-button.labelType-labelOnly.selected {
  background-color: rgba(171, 0, 7, 0.5);
  border: 1px solid #f1f1f1;
}
#editor .thumbnail-button.labelType-labelOnly.grayedOut {
  color: rgba(241, 241, 241, 0.5);
  border: 1px dotted rgba(241, 241, 241, 0.5);
}
#editor .thumbnail-button.labelType-labelOnly:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
}
#editor .thumbnail-button.paint-preconf {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  border-radius: 5px;
  margin: 1em;
}
#editor .thumbnail-button.paint-preconf span {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
}
#editor .thumbnail-button.paint-preconf img {
  width: 100%;
  height: 100%;
}
#editor .thumbnail-button.paint-preconf.missing-swatches {
  background: url("/static/img/textures/question-mark-gray.png");
  background-size: 32px 32px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
#editor .thumbnail-button.paint-preconf.w120h120 {
  width: 60px;
  height: 60px;
}
#editor .thumbnail-button.paint-preconf.w32h32 {
  width: 32px;
  height: 32px;
}
#editor .thumbnail-button.paint-preconf.paint-swatch {
  margin: 4;
  vertical-align: middle;
}
#editor .thumbnail-button .new-tag {
  position: absolute;
  top: 0px;
  left: 50%;
  line-height: 1em;
  font-size: 0.6em;
  transform: translate(-50%, 0%);
}
#editor .thumbnail-button .new-tag.label-only {
  transform: translate(-50%, -60%);
}
#editor .thumbnail-button .new-tag .tag-text {
  display: block;
  text-align: center;
  background: #6f0b0d;
  line-height: 0.9em;
  padding-top: 2px;
  font-family: 'Roboto', sans-serif;
}
#editor .thumbnail-button .new-tag .arrow-down {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 2px solid #6f0b0d;
  content: "";
  display: block;
}
#editor .button {
  cursor: pointer;
  display: block;
  color: #f1f1f1;
  padding: 0.3em;
  font-size: 1.2em;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
#editor .button.selected {
  background: rgba(171, 0, 7, 0.5);
}
#editor .button:hover {
  color: rgba(244, 244, 244, 0.7);
}
#editor #tabs {
  /*width: 30%;*/
  width: 135px;
  text-align: right;
  font-size: 1em;
  text-transform: capitalize;
  font-weight: 200;
}
#editor #tabs ul {
  margin: 0 0.3em 0 0;
}
#editor #tabs li {
  padding: 0.5em;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.3em;
  pointer-events: auto;
}
#editor #tabs li:hover,
#editor #tabs li.active {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
#editor #tabs li#genresTab {
  white-space: nowrap;
  text-align: right;
  float: right;
  min-width: 100%;
}
#editor #tabs li img {
  float: left;
}
@media only screen and (max-height: 600px), screen and (max-width: 400px) {
  #editor #sections-wrapper {
    font-size: 0.8em;
  }
}
@media only screen and (max-height: 500px), screen and (max-width: 340px) {
  #editor:not(.main-menu-My-Characters) #sections-wrapper,
  #editor #sections-wrapper .nav {
    font-size: 0.6em;
  }
}
@media only screen and (max-height: 360px), screen and (max-width: 300px) {
  #editor:not(.main-menu-My-Characters) #sections-wrapper,
  #editor #sections-wrapper .nav {
    font-size: 0.5em;
  }
}
#loading-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20;
  background: #f1f1f1;
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -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 */
}
#loading-overlay.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s linear, top 0.2s linear;
  -moz-transition: visibility 0s linear 0.2s, opacity 0.2s linear, top 0.2s linear;
  -o-transition: visibility 0s linear 0.2s, opacity 0.2s linear, top 0.2s linear;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear, top 0.2s linear;
}
#loading-overlay #loading-content {
  color: #333;
  text-align: center;
  display: block;
  width: 440px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0%, calc(-50% - 80px));
  -ms-transform: translate(0%, calc(-50% - 80px));
  -o-transform: translate(0%, calc(-50% - 80px));
  transform: translate(0%, calc(-50% - 80px));
}
#loading-overlay #loading-content a {
  color: #ab0007;
}
#loading-overlay #loading-content img {
  max-width: 100%;
}
@media only screen and (max-width: 500px) {
  #loading-overlay #loading-content {
    width: auto;
    margin: 1em;
  }
}
#character-area {
  pointer-events: auto;
}
#character-area a {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color, 0.2s, ease;
  -moz-transition: color, 0.2s, ease;
  -o-transition: color, 0.2s, ease;
  transition: color, 0.2s, ease;
}
#character-area a:hover {
  color: rgba(0, 0, 0, 0.7);
}
#character-area .nav > a,
#character-area .nav > div {
  cursor: pointer;
  margin-right: 1.4em;
}
#character-area .nav > a img,
#character-area .nav > div img,
#character-area .nav > a .icon,
#character-area .nav > div .icon {
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease, transform 0.2s ease;
  -moz-transition: opacity 0.2s ease, transform 0.2s ease;
  -o-transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#character-area .nav > a:hover img,
#character-area .nav > div:hover img,
#character-area .nav > a:hover .icon,
#character-area .nav > div:hover .icon {
  opacity: 0.7;
}
#character-area .nav > a:last-child,
#character-area .nav > div:last-child {
  margin-right: 0;
}
#character-area #saving-icon {
  display: none;
}
#character-area.saving #save-icon {
  display: none;
}
#character-area.saving #saving-icon {
  display: inline;
}
#character-area #namecard {
  font-size: 2.5em;
  font-family: 'Roboto Condensed', sans-serif;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
}
#character-area .no-name-error {
  margin: 0;
  color: #ab0007;
  font-size: 0.8em;
  opacity: 0;
  margin-top: -0.8em;
  -webkit-transition: opacity, 0.5s, ease;
  -moz-transition: opacity, 0.5s, ease;
  -o-transition: opacity, 0.5s, ease;
  transition: opacity, 0.5s, ease;
}
#character-area.no-name .no-name-error {
  opacity: 1;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
#character-area.main-view {
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}
#character-area.main-view input#namecard {
  text-align: center;
  background: white;
}
#character-area.main-view .nav {
  margin: 1em auto;
}
#character-area.main-view .nav a {
  color: #f1f1f1;
}
#character-area.main-view .share-url-wrapper {
  margin: 1em auto 2em auto;
}
.main-menu-My-Characters input#namecard {
  text-align: center;
  background: white;
}
.main-menu-My-Characters .nav {
  margin: 0 auto 1em auto;
}
.main-menu-My-Characters .nav a {
  color: #f1f1f1;
  margin-right: 1.4em;
}
.main-menu-My-Characters .no-name-error {
  font-size: 0.8em;
  opacity: 0;
  margin-top: 0;
  -webkit-transition: opacity, 0.5s, ease;
  -moz-transition: opacity, 0.5s, ease;
  -o-transition: opacity, 0.5s, ease;
  transition: opacity, 0.5s, ease;
}
.main-menu-My-Characters .share-url-wrapper {
  margin: 1em auto 2em auto;
}
.desktop-layout #character-area {
  position: absolute;
  left: 15px;
  bottom: 0em;
}
#character-wrapper {
  color: #f1f1f1;
  text-transform: capitalize;
}
#character-wrapper ul {
  list-style: none;
  padding: 0;
}
#character-wrapper li {
  cursor: pointer;
}
#character-wrapper li:hover {
  color: #fff;
}
#character-wrapper a {
  color: #f1f1f1;
  text-transform: capitalize;
}
#character-wrapper a:hover {
  color: rgba(241, 241, 241, 0.7);
}
#character-wrapper #characterList {
  margin: 10px;
}
#character-wrapper #characterList li {
  text-align: center;
  position: relative;
  display: block;
  max-width: 120px;
  display: inline-block;
  margin-bottom: 2.2em;
  /*every even child*/
}
#character-wrapper #characterList li:nth-child(2n) {
  margin-left: 10px;
}
#character-wrapper #characterList li .deleteCharacter {
  color: #4d4d4d;
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  display: none;
  font-size: 2em;
  line-height: 0.5em;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
#character-wrapper #characterList li img {
  width: 120px;
  display: block;
}
#character-wrapper #characterList li .character-name {
  display: block;
  position: absolute;
  width: 100%;
  font-size: 0.8em;
}
#character-wrapper #characterList li.deleteHover {
  background: #ab0007;
}
#character-wrapper #characterList li.deleteHover .character-name {
  text-decoration: line-through;
}
#character-wrapper #characterList li.deleteHover .loadCharacter {
  opacity: 0.4;
}
#character-wrapper #characterList li.deleteHover .deleteCharacter {
  color: #f1f1f1;
}
#character-wrapper #characterList li:hover .deleteCharacter {
  display: block;
}
#character-wrapper #characterList a {
  margin: 0;
}
#screenshot .icon {
  display: inline-block;
  width: 21px;
  height: 0px;
  padding-top: 16px;
  background: url(../img/icon_screenshot.png);
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
#screenshot:hover .icon {
  opacity: 0.7;
}
#load-icon {
  display: inline-block;
  width: 21px;
  height: 0px;
  padding-top: 16px;
  background: url(../img/icon_screenshot.png);
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  vertical-align: bottom;
  background: url(../img/icon_characters_spritesheet.png);
  width: 26px;
  vertical-align: middle;
}
#share {
  display: inline-block;
  position: relative;
}
#share .share-url-wrapper {
  position: absolute;
  width: 330%;
  background: rgba(0, 0, 0, 0.7);
  color: #f1f1f1;
  left: 50%;
  bottom: 0.5em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  visibility: visible;
  opacity: 1;
  bottom: 2em;
}
#share .share-url-wrapper .share-url-content {
  padding: 1em;
  text-transform: none;
  text-align: center;
}
#share .share-url-wrapper .share-url-content input {
  width: 100%;
}
#share.open a {
  color: rgba(0, 0, 0, 0.7);
}
#share.open a img {
  opacity: 0.7;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#share.open .icon {
  opacity: 0.7;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#share .icon {
  cursor: pointer;
  display: inline-block;
  width: 15px;
  height: 0px;
  padding-top: 16px;
  background: url(../img/icon_share.png);
  overflow: hidden;
  background-repeat: no-repeat;
  opacity: 0.5;
  vertical-align: middle;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: transform, 0.2s, ease;
  -moz-transition: transform, 0.2s, ease;
  -o-transition: transform, 0.2s, ease;
  transition: transform, 0.2s, ease;
}
#share:hover .icon {
  opacity: 0.7;
}
#my-characters {
  display: inline-block;
  position: relative;
}
#my-characters.open > a {
  color: rgba(0, 0, 0, 0.7);
}
#my-characters.open > a #load-icon {
  opacity: 0.7;
  background-position: -26px 0px;
}
.savedConfigThumbnail {
  height: auto;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 2.2em;
  cursor: pointer;
}
.savedConfigThumbnail .thumbnail-button {
  display: block;
  width: 120px;
  -webkit-transition: background-color, 0.3s, ease;
  -moz-transition: background-color, 0.3s, ease;
  -o-transition: background-color, 0.3s, ease;
  transition: background-color, 0.3s, ease;
  background-color: rgba(171, 0, 7, 0);
}
.savedConfigThumbnail .thumbnail-button img {
  width: 120px;
  height: 120px;
  display: block;
  opacity: 0.5;
  -webkit-transition: all, 0.3s, ease;
  -moz-transition: all, 0.3s, ease;
  -o-transition: all, 0.3s, ease;
  transition: all, 0.3s, ease;
}
.savedConfigThumbnail .character-name {
  display: block;
  width: 100%;
  font-size: 0.8em;
  position: absolute;
  color: #f1f1f1;
  text-transform: capitalize;
}
.savedConfigThumbnail .delete-character {
  color: #4d4d4d;
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  display: none;
  font-size: 2em;
  line-height: 0.5em;
}
.savedConfigThumbnail:hover .delete-character {
  display: block;
}
.savedConfigThumbnail:hover .thumbnail-button img {
  opacity: 1;
}
.savedConfigThumbnail.delete-hover .thumbnail-button {
  background-color: #ab0007;
}
.savedConfigThumbnail.delete-hover .thumbnail-button img {
  opacity: 0.4;
}
.savedConfigThumbnail.delete-hover .character-name {
  text-decoration: line-through;
  color: rgba(241, 241, 241, 0.5);
}
.savedConfigThumbnail.delete-hover .delete-character {
  color: #f1f1f1;
}
@media only screen and (max-width: 768px) {
  #character-area {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 650px) {
  #character-area {
    font-size: 0.6em;
  }
}
.overlayModal {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
}
.overlayModal .overlayModal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}
.overlayModal .overlayModal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: #ab0007;
  color: #f1f1f1;
  padding: 0em;
  text-align: center;
  width: 1.4em;
  height: 1.5em;
  cursor: pointer;
  pointer-events: auto;
}
.overlayModal .overlayModal-window-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  pointer-events: none;
}
.overlayModal .overlayModal-window {
  position: relative;
  color: #f1f1f1;
  max-width: 90%;
  max-height: 90%;
  pointer-events: auto;
  overflow: hidden;
}
.overlayModal .overlayModal-window #basket-wrapper {
  width: 900px;
  height: 650px;
  background: #f1f1f1;
  background-image: url(../img/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.overlayModal .overlayModal-window #basket-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
.overlayModal-fade-enter {
  opacity: 0.01;
}
.overlayModal-fade-enter.overlayModal-fade-enter-active {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in;
  -moz-transition: opacity 300ms ease-in;
  -o-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
.overlayModal-fade-leave {
  opacity: 1;
}
.overlayModal-fade-leave.overlayModal-fade-leave-active {
  opacity: 0.01;
  -webkit-transition: opacity 300ms ease-out;
  -moz-transition: opacity 300ms ease-out;
  -o-transition: opacity 300ms ease-out;
  transition: opacity 300ms ease-out;
}
@media screen and (max-width: 910px), screen and (max-height: 700px) {
  .overlayModal .overlayModal-close {
    top: 0;
    right: 0;
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 0.8em;
  line-height: 1.5;
  opacity: 1;
  pointer-events: none;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-placement-top,
.rc-tooltip-placement-topLeft,
.rc-tooltip-placement-topRight {
  padding: 5px 0 9px 0;
}
.rc-tooltip-placement-right,
.rc-tooltip-placement-rightTop,
.rc-tooltip-placement-rightBottom {
  padding: 0 5px 0 9px;
}
.rc-tooltip-placement-bottom,
.rc-tooltip-placement-bottomLeft,
.rc-tooltip-placement-bottomRight {
  padding: 9px 0 5px 0;
}
.rc-tooltip-placement-left,
.rc-tooltip-placement-leftTop,
.rc-tooltip-placement-leftBottom {
  padding: 0 9px 0 5px;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #f1f1f1;
  text-align: left;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
  min-height: 34px;
}
.rc-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: 4px;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(0, 0, 0, 0.9);
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: 4px;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: rgba(0, 0, 0, 0.9);
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: 4px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: rgba(0, 0, 0, 0.9);
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: 4px;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  -webkit-animation-name: rcToolTipZoomIn;
  animation-name: rcToolTipZoomIn;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  -webkit-animation-name: rcToolTipZoomOut;
  animation-name: rcToolTipZoomOut;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
/* Position and sizing of burger button */
.bm-burger-button {
  position: relative;
  width: 28px;
  height: 20px;
  z-index: 2 !important;
}
/* Color/shape of burger icon bars */
.bm-burger-bars {
  background: #f1f1f1;
}
/* Position and sizing of clickable cross button */
.bm-cross-button {
  height: 24px;
  width: 24px;
}
/* Color/shape of close button cross */
.bm-cross {
  background: #bdc3c7;
}
/* General sidebar styles */
.bm-menu {
  background: #333;
  padding: 2.5em 1.5em 0;
  font-size: 1.15em;
}
.bm-menu #nav {
  margin-top: 0;
  margin-bottom: 2em;
}
.bm-menu #nav li {
  margin: 1em auto;
}
.bm-menu #nav li:first-child {
  margin-top: 0;
}
.bm-menu #social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  text-align: center;
  margin: 2em auto 1em auto;
  width: 150px;
}
.bm-menu #social a {
  margin: 0 0.6em;
}
.bm-menu #voucher {
  background: #6f0b0d;
  padding: 0.4em;
}
/* Morph shape necessary with bubble or elastic */
.bm-morph-shape {
  fill: #373a47;
}
/* Wrapper for item list */
.bm-item-list {
  color: #b8b7ad;
  padding: 0em;
}
.bm-item-list ul {
  padding: 0;
}
/* Styling of overlay */
.bm-overlay {
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.bm-menu-wrap {
  width: 60%;
  top: 0px;
  left: 0px;
  max-width: 200px;
}
.no-burger-menu #burger-menu-root {
  display: none;
}
.compact-layout #ui {
  top: 0px;
  height: 100%;
}
.compact-layout #editor .editor-main {
  margin: 0;
  width: 100%;
}
.compact-layout #editor #sections-wrapper {
  width: 0%;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.compact-layout #editor #sections-wrapper #sections-content {
  min-height: 0px;
}
.compact-layout #editor .slider-wrapper {
  padding: 0px 50px 15px 50px;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 34px;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-left {
  left: 0px;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-right {
  right: 0px;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.disabled {
  display: none;
}
.compact-layout #editor .tab-carousel-group .tabbed-content .layout-panel {
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.compact-layout #editor .tab-carousel-group.no-overflow .tab-carousel-wrapper {
  width: 100%;
}
.compact-layout #editor .tab-carousel-group.no-overflow .tab-carousel-wrapper .tab-carousel {
  margin: 0 auto;
}
.compact-layout.landscape-layout #canvasWrapper,
.compact-layout.landscape-layout #character-canvas {
  width: 50%;
  height: 100%;
}
.compact-layout.landscape-layout #editor,
.compact-layout.landscape-layout .main-view {
  width: 50%;
  height: 100%;
  right: 0;
}
.compact-layout.landscape-layout #editor #tabs ul,
.compact-layout.landscape-layout .main-view #tabs ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.compact-layout.landscape-layout #editor #tabs ul li,
.compact-layout.landscape-layout .main-view #tabs ul li {
  margin: 1em auto;
}
.compact-layout.portrait-layout #canvasWrapper,
.compact-layout.portrait-layout #character-canvas {
  width: 100%;
  height: 50%;
}
.compact-layout.portrait-layout #editor,
.compact-layout.portrait-layout .main-view {
  width: 100%;
  height: 50%;
  top: auto;
  bottom: 0;
}
.compact-layout.portrait-layout #editor #tabs,
.compact-layout.portrait-layout .main-view #tabs {
  margin: auto;
}
.compact-layout.portrait-layout #editor #tabs ul li,
.compact-layout.portrait-layout .main-view #tabs ul li {
  margin: auto;
}
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs #canvasWrapper,
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs #character-canvas {
  width: calc(100% - 10em);
  height: 100%;
}
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs #editor {
  width: 10em;
  height: 100%;
  right: 0;
}
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs #canvasWrapper,
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs #character-canvas {
  width: 100%;
  height: calc(100% - 8em);
}
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs #editor {
  width: 100%;
  height: 8em;
  top: auto;
}
.desktop-layout #canvasWrapper,
.desktop-layout #character-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sprite-creationkit-ui-sprites {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('/static/img/creationkit-ui-sprites.png');
  background-size: 77px 12px;
}
.creationkit-ui-sprites-icon-linkedpart-linked {
  width: 39px;
  height: 12px;
  background-position: 0px 0px;
}
.creationkit-ui-sprites-icon-linkedpart-unlinked {
  width: 39px;
  height: 12px;
  background-position: -38px 0px;
}
#header {
  background: #6f0b0d;
  color: #f1f1f1;
  font-size: 0.8em;
}
#header .content {
  padding: 0.5em 20px 0.5em 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
#header .content #user a {
  margin-left: 1em;
  cursor: pointer;
  text-decoration: none;
}
#header .content #user #open-cart img {
  vertical-align: top;
}
#editor .tab-carousel-group .tab-carousel-wrapper {
  min-height: 2em;
  background: #1a1a1a;
}
#editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list {
  height: 2em;
}
#editor .tab-carousel-group .tab-carousel .tabs-list .tab-carousel-header.open {
  background-color: #6f0b0d;
}
#editor .tab-carousel-group .tab-carousel .tabs-list .tab-carousel-header span {
  color: #f1f1f1;
}
#editor .tab-carousel-group .tabbed-content .layout-panel-wrapper {
  -webkit-flex-direction: column;
  flex-direction: column;
}
footer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  color: #444;
  background: rgba(0, 0, 0, 0.3);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 99%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(99%, rgba(0, 0, 0, 0.4)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 99%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 99%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 99%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 99%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
  /* IE6-9 */
  text-transform: uppercase;
  font-size: 0.7em;
}
footer .float-left {
  padding: 1.7em 1em 0.7em 0.7em;
}
footer .float-right {
  position: absolute;
  right: 0.7em;
  bottom: 0.7em;
}
#editor #sections-wrapper #print-my-mini {
  margin-bottom: 0em;
}
#my-characters-wrapper {
  position: relative;
  margin-top: 164px;
  margin-bottom: 170px;
  width: 291px;
  margin-left: 15px;
  pointer-events: none;
}
#my-characters-wrapper #my-characters-content {
  position: absolute;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  overflow: auto;
  max-height: 100%;
  pointer-events: auto;
  color: #f1f1f1;
}
#my-characters-wrapper #my-characters-content.my-saves-enter {
  opacity: 0.01;
  bottom: -2em;
}
#my-characters-wrapper #my-characters-content.my-saves-enter.my-saves-enter-active {
  opacity: 1;
  bottom: 0em;
  -webkit-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  -moz-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  -o-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  transition: opacity 200ms ease-out, bottom 0.2s ease-out;
}
#my-characters-wrapper #my-characters-content.my-saves-leave {
  opacity: 1;
  bottom: 0em;
}
#my-characters-wrapper #my-characters-content.my-saves-leave.my-saves-leave-active {
  opacity: 0.01;
  bottom: -2em;
  -webkit-transition: opacity 200ms ease, bottom 0.2s ease;
  -moz-transition: opacity 200ms ease, bottom 0.2s ease;
  -o-transition: opacity 200ms ease, bottom 0.2s ease;
  transition: opacity 200ms ease, bottom 0.2s ease;
}
#my-characters-wrapper #my-characters-content .presets {
  width: 250px;
  margin: 10px auto;
}
#my-characters-wrapper #my-characters-content .presets .savedConfigThumbnail:nth-child(2n) {
  margin-left: 10px;
}
.main-menu-Material .layout-panel {
  background: rgba(0, 0, 0, 0.7);
  border: 0.3em solid rgba(255, 255, 255, 0.2);
  padding: 0em;
  text-align: left;
}
.main-menu-Material .layout-panel h4 {
  display: inline-block;
  margin: 0.3em 0em 0em 0.3em;
}
.main-menu-Material .layout-panel .parts {
  padding-right: 0.3em;
}
.main-menu-Material .layout-panel p {
  font-size: 0.8em;
  margin-right: 0.5em;
  margin-left: 0.5em;
  line-height: 1.4em;
}
.main-menu-Material .layout-panel img {
  max-width: 100%;
}
.main-menu-Material .layout-panel #product-preview {
  text-align: center;
  cursor: pointer;
}
.componentGroup {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.componentGroup .toggle-ui {
  border-radius: 2px;
  overflow: hidden;
  background: #1a1a1a;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
  margin: 0 auto 0.5em auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.componentGroup .toggle-ui a {
  color: white;
  padding: 0.2em 1em;
  display: inline-block;
}
.componentGroup .toggle-ui a.selected {
  background-color: #ab0007;
}
.componentGroup .group-contents {
  overflow: auto;
  width: 100%;
}
.componentGroup .group-contents div {
  margin-bottom: 1em;
}
.componentGroup .group-contents div:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 900px) {
  #header .content {
    padding: 0.5em 20px 0.5em 12px;
  }
  #my-characters-wrapper {
    margin-top: 124px;
  }
}
@media only screen and (max-width: 768px) {
  #header .content {
    padding: 0.5em 20px 0.5em 8px;
  }
  #my-characters-wrapper {
    margin-top: 84px;
    margin-bottom: 140px;
  }
}
@media only screen and (max-width: 650px) {
  #my-characters-wrapper {
    margin-bottom: 135px;
    width: 211px;
    font-size: 0.8em;
  }
  #my-characters-wrapper #my-characters-content .presets {
    width: 170px;
  }
}
@media only screen and (max-height: 500px) {
  #header {
    font-size: 0.5em;
  }
  #header .content {
    padding: 0.5em 20px 0.5em 4px;
  }
  #my-characters-wrapper {
    margin-top: 44px;
    margin-bottom: 105px;
    width: 211px;
    font-size: 0.8em;
  }
  #my-characters-wrapper #my-characters-content .presets {
    width: 170px;
  }
}
@media only screen and (max-width: 850px) {
  footer {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 740px) {
  footer {
    font-size: 0.5em;
  }
}
.open-voucher {
  cursor: pointer;
}
.open-voucher img {
  vertical-align: top;
}
#voucher-wrapper {
  background: rgba(0, 0, 0, 0.7);
  max-width: 100%;
  max-height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
#voucher-wrapper #voucher-content {
  margin: 1em 0 4em 0;
  text-align: center;
}
#voucher-wrapper #voucher-content h2 {
  margin-top: 0;
}
#voucher-wrapper #voucher-content img {
  margin-bottom: 1em;
  max-width: 100%;
}
#voucher-wrapper #voucher-content select {
  max-width: 90%;
  margin-bottom: 0.4em;
}
#voucher-wrapper #voucher-content select:first-of-type {
  margin-right: 0.5em;
}
#voucher-wrapper #voucher-content #id_quantity {
  width: 30px;
}
#voucher-wrapper #voucher-content .voucher-button {
  color: #f1f1f1;
  background: #ab0007;
  cursor: pointer;
  border: none;
  margin: 1em;
  padding: 0.5em;
  transition: color 0.2s;
  transition: background 0.2s;
}
#voucher-wrapper #voucher-content .voucher-button[disabled] {
  background: #888888;
  color: #ccc;
  cursor: auto;
}
#voucher-wrapper #card-image-wrapper {
  position: relative;
}
#voucher-wrapper #gift-card-text {
  position: absolute;
  bottom: 11%;
  left: 50%;
  width: 70%;
  text-align: center;
  color: #333333;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  font-size: 0.8em;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#voucher-wrapper #gift-card-text p {
  margin: 0;
}
#voucher-wrapper #gift-card-text a {
  color: #333333;
}
body.isPhone #voucher-wrapper {
  height: 100%;
}
body.isPhone #voucher-wrapper input,
body.isPhone #voucher-wrapper select,
body.isPhone #voucher-wrapper #voucher-content .voucher-button {
  display: block;
  margin: 1em auto;
  text-align: center;
}
@media only screen and (max-width: 1469px) {
  #voucher-wrapper #voucher-content select:first-of-type {
    margin-right: 0;
  }
}
@media only screen and (max-width: 440px) {
  .loadingScreen #loading-overlay #loading-content {
    width: auto;
    top: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .loadingScreen #loading-overlay #loading-content .centered-img {
    width: 100%;
  }
  #voucher-wrapper #gift-card-text {
    font-size: 0.6em;
  }
  #voucher-wrapper select {
    font-size: 0.8em;
  }
}
.rc-tooltip-inner {
  color: #f1f1f1;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 0;
  min-height: 0px;
}
.thumbnail-button-info {
  max-width: 300px;
  color: #ddd;
  padding: 0.5em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.thumbnail-button-info .right {
  margin-left: 1em;
}
.thumbnail-button-info h3 {
  margin: 0;
}
.thumbnail-button-info p {
  margin-bottom: 0;
}
.compact-layout #ui input[type="text"] {
  margin-left: 1em;
  margin-right: 1em;
}
.compact-layout footer,
.compact-layout #character-area,
.compact-layout .open-voucher {
  display: none;
}
.compact-layout #header {
  font-size: 0.8em;
}
.compact-layout #header .content {
  padding: 0.5em 0.6em 0.5em 8px;
}
.compact-layout #canvasWrapper,
.compact-layout #character-canvas {
  position: absolute;
}
.compact-layout #editor select {
  background: #f1f1f1;
  margin-left: 1em;
  margin-right: 1em;
}
.compact-layout #editor select:last-child {
  margin-bottom: 1em;
}
.compact-layout #editor #sections-wrapper {
  background: #484848;
}
.compact-layout #editor #sections-wrapper #print-my-mini {
  margin: 0;
  font-size: 1.4em;
}
.compact-layout #editor #sections-wrapper #print-my-mini .shop-button#add {
  margin: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  min-width: 0;
}
.compact-layout #editor .layout-panel {
  background: none;
}
.compact-layout #editor .layout-panel.pinned .thumbnail-button img {
  height: 32px;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list {
  max-width: 100%;
  overflow-x: auto;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list > div:last-child {
  border-right: 30px solid #1A1A1A;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel .tabs-list > div:first-child {
  border-left: 30px solid #1A1A1A;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 34px;
  border-radius: 0;
  pointer-events: none;
  box-shadow: none;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn div.arrow {
  display: none;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-left {
  background-image: linear-gradient(270deg, rgba(26, 26, 26, 0), #1A1A1A 70%);
  background-color: transparent;
  min-width: 30px;
  width: 30px;
  left: 0px;
  display: unset;
}
.compact-layout #editor .tab-carousel-group .tab-carousel-wrapper .tab-carousel-btn.btn-right {
  background-image: linear-gradient(90deg, rgba(26, 26, 26, 0), #1A1A1A 70%);
  background-color: transparent;
  min-width: 30px;
  width: 30px;
  right: 0px;
  display: unset;
}
.compact-layout #editor .tab-carousel-group .tabbed-content .layout-panel {
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.compact-layout #editor .tab-carousel-group .tabbed-content .layout-panel.pinned {
  margin-top: 0;
}
.compact-layout #editor .tab-carousel-group.no-overflow .tab-carousel-wrapper {
  width: 100%;
}
.compact-layout #editor .tab-carousel-group.no-overflow .tab-carousel-wrapper .tab-carousel {
  margin: 0 auto;
}
.compact-layout #editor #tabs ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.compact-layout #editor #tabs ul li {
  -webkit-box-flex: 1 0 30px;
  -moz-box-flex: 1 0 30px;
  -webkit-flex: 1 0 30px;
  -ms-flex: 1 0 30px;
  flex: 1 0 30px;
}
.compact-layout #editor #tabs ul li img {
  float: none;
}
.compact-layout #editor .linked-part .link-button {
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.compact-layout #character-area .nav a img,
.compact-layout .main-menu-My-Characters .nav a img,
.compact-layout #character-area .nav a .icon,
.compact-layout .main-menu-My-Characters .nav a .icon,
.compact-layout #character-area .nav #share .icon,
.compact-layout .main-menu-My-Characters .nav #share .icon {
  opacity: 1;
  margin-right: 0.3em;
}
.compact-layout #character-area .nav #share .icon,
.compact-layout .main-menu-My-Characters .nav #share .icon {
  background: url(../img/icon_share_white.png);
}
.compact-layout #character-area input#namecard,
.compact-layout .main-menu-My-Characters input#namecard {
  max-width: 100%;
  font-size: 2.5em;
  text-transform: capitalize;
  font-family: 'Roboto Condensed', sans-serif;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
}
.compact-layout #character-area .savedConfigThumbnail .delete-character,
.compact-layout .main-menu-My-Characters .savedConfigThumbnail .delete-character {
  display: block;
  color: #f1f1f1;
  margin: 0;
  font-size: 3em;
}
.compact-layout .compact-editor-tab {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.1em 0.5em;
  pointer-events: auto;
}
.compact-layout .compact-editor-tab#tabsTab:after {
  content: "back";
}
.compact-layout .compact-editor-tab #close {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid white;
  overflow: hidden;
  display: inline-block;
  margin-right: 0.4em;
}
.compact-layout.landscape-layout #editor #tabs ul {
  margin: 0;
}
.compact-layout.landscape-layout #editor #tabs ul li {
  width: 45%;
  text-align: right;
}
.compact-layout.landscape-layout #editor #tabs ul li span {
  line-height: 2.1em;
  font-size: 1.2em;
}
.compact-layout.landscape-layout #editor #tabs ul li img {
  float: left;
}
.compact-layout.landscape-layout .compact-editor-tab {
  right: 100%;
  left: auto;
  top: 0;
  bottom: auto;
}
.compact-layout.landscape-layout .compact-editor-tab#character-tab {
  bottom: 0;
  top: auto;
  white-space: nowrap;
}
.compact-layout.landscape-layout #tabsTab {
  top: 0;
  bottom: auto;
  right: 100%;
  left: auto;
}
.compact-layout.landscape-layout #tabsTab #close {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid white;
  border-right: none;
  margin: 0.2em 0 0 0;
}
.compact-layout.portrait-layout #editor #tabs {
  font-size: 0.75em;
}
.compact-layout.portrait-layout #editor #tabs ul li {
  text-align: center;
  margin: 0 0.6em;
  padding: 0.6em 1em;
}
.compact-layout.portrait-layout #editor #tabs ul li img {
  float: none;
}
.compact-layout.portrait-layout #tabsTab #close {
  vertical-align: middle;
  margin-top: -3px;
}
.compact-layout.portrait-layout .compact-editor-tab#character-tab {
  right: 0;
  left: auto;
}
.compact-layout.portrait-layout .compact-editor-tab#character-tab,
.compact-layout.portrait-layout .compact-editor-tab#character-close {
  bottom: 100%;
}
.compact-layout.main-menu-Tabs #sections-content {
  overflow: auto;
}
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs #canvasWrapper,
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs #character-canvas {
  width: calc(100% - 10em);
  height: 100%;
}
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs #editor {
  width: 10em;
  height: 100%;
  right: 0;
}
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs .compact-editor-tab,
.compact-layout.landscape-layout.compact-layout.main-menu-Tabs .compact-editor-tab#character-tab {
  right: 10em;
  bottom: 0;
}
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs #canvasWrapper,
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs #character-canvas {
  width: 100%;
  height: calc(100% - 8em);
}
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs #editor {
  width: 100%;
  height: 8em;
  top: auto;
}
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs .compact-editor-tab,
.compact-layout.portrait-layout.compact-layout.main-menu-Tabs .compact-editor-tab#character-tab {
  bottom: 8em;
}
#my-characters-wrapper #my-characters-content.character-meta-popout-enter {
  opacity: 0.01;
  bottom: -2em;
}
#my-characters-wrapper #my-characters-content.character-meta-popout-enter.character-meta-popout-enter-active {
  opacity: 1;
  bottom: 0em;
  -webkit-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  -moz-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  -o-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  transition: opacity 200ms ease-out, bottom 0.2s ease-out;
}
#my-characters-wrapper #my-characters-content.character-meta-popout-leave {
  opacity: 1;
  bottom: 0em;
}
#my-characters-wrapper #my-characters-content.character-meta-popout-leave.character-meta-popout-leave-active {
  opacity: 0.01;
  bottom: -2em;
  -webkit-transition: opacity 200ms ease, bottom 0.2s ease;
  -moz-transition: opacity 200ms ease, bottom 0.2s ease;
  -o-transition: opacity 200ms ease, bottom 0.2s ease;
  transition: opacity 200ms ease, bottom 0.2s ease;
}
#share .share-url-wrapper.character-meta-popout-enter {
  opacity: 0.01;
  bottom: 0em;
}
#share .share-url-wrapper.character-meta-popout-enter.character-meta-popout-enter-active {
  opacity: 1;
  bottom: 2em;
  -webkit-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  -moz-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  -o-transition: opacity 200ms ease-out, bottom 0.2s ease-out;
  transition: opacity 200ms ease-out, bottom 0.2s ease-out;
}
#share .share-url-wrapper.character-meta-popout-leave {
  opacity: 1;
  bottom: 2em;
}
#share .share-url-wrapper.character-meta-popout-leave.character-meta-popout-leave-active {
  opacity: 0.01;
  bottom: 0em;
  -webkit-transition: opacity 200ms ease, bottom 0.2s ease;
  -moz-transition: opacity 200ms ease, bottom 0.2s ease;
  -o-transition: opacity 200ms ease, bottom 0.2s ease;
  transition: opacity 200ms ease, bottom 0.2s ease;
}

/*# sourceMappingURL=styles.css.map */
