/* LOADING SCREEN
========================================================================== */
@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

#loadingScreen {
  font-family: "Share Tech Mono", monospace;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease; }
  #loadingScreen.fadeOut {
    opacity: 0; }
  #loadingScreen .error-msg {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease; }
  #loadingScreen .error-msg.fadeIn {
    opacity: 1; }
  #loadingScreen .resources {
    display: none; }
  #loadingScreen .loadingProgressbar {
    width: 0%;
    height: 5px;
    background-color: #6a1b9a;
    -webkit-box-shadow: 0 1px 25px 0 black;
    -moz-box-shadow: 0 1px 25px 0 black;
    box-shadow: 0 1px 25px 0 black;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px; }
  #loadingScreen .information {
    position: absolute;
    width: 40%;
    margin-left: -20%;
    left: 50%;
    top: 50%; }
    #loadingScreen .information .loading_circle {
      margin: 64px auto 0;
      width: 24px;
      height: 24px;
      border: 4px solid darkgrey;
      border-top: 4px solid darkslategrey;
      border-radius: 50%;
      animation: rotate 1s infinite linear;
      opacity: 1;
      -webkit-transition: opacity 0.5s ease;
      -moz-transition: opacity 0.5s ease;
      -ms-transition: opacity 0.5s ease;
      -o-transition: opacity 0.5s ease;
      transition: opacity 0.5s ease; }
      #loadingScreen .information .loading_circle.fadeOut {
        opacity: 0; }
    #loadingScreen .information .error-msg {
      margin-top: 16px;
      text-align: center; }
    #loadingScreen .information .phrases {
      font-size: 26px;
      text-align: center;
      height: 29px;
      overflow: hidden; }
      #loadingScreen .information .phrases .view {
        transform: translateY(0px);
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -ms-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease; }
      #loadingScreen .information .phrases div {
        height: 29px;
        width: 100%; }
  #loadingScreen .loading_cube {
    width: 128px;
    height: 128px;
    line-height: 128px;
    text-align: center;
    font-size: 50px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.5s 0.1s;
    transition: transform 0.5s 0.1s;
    perspective: 9999px;
    color: #333;
    margin: -64px 0 -64px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -64px;
    top: 20%;
    opacity: 1; }
    #loadingScreen .loading_cube div {
      width: inherit;
      height: inherit;
      position: absolute;
      background: white;
      box-shadow: inset 0 0 0 1px #333, 0 0 1px 1px #333;
      opacity: 1; }
    #loadingScreen .loading_cube div .bkg {
      background: red;
      z-index: -1;
      bottom: 0;
      height: 0;
      border: none;
      box-shadow: none;
      margin-left: 1px;
      max-height: 98%;
      width: 126px;
      margin-bottom: 1px;
      opacity: 0.4;
      -webkit-transition: height 0.1s ease;
      -moz-transition: height 0.1s ease;
      -ms-transition: height 0.1s ease;
      -o-transition: height 0.1s ease;
      transition: height 0.1s ease; }
    #loadingScreen .loading_cube .face {
      font-size: 35px; }
    #loadingScreen .loading_cube .front {
      transform: translate3d(0, 0, 64px);
      -webkit-transform: translate3d(0, 0, 64px);
      font-size: 57px; }
    #loadingScreen .loading_cube .back {
      -webkit-transform: rotateY(180deg) translate3d(0, 0, 64px);
      transform: rotateY(180deg) translate3d(0, 0, 64px); }
    #loadingScreen .loading_cube .left {
      -webkit-transform: rotateY(-90deg) translate3d(0, 0, 64px);
      transform: rotateY(-90deg) translate3d(0, 0, 64px); }
    #loadingScreen .loading_cube .right {
      -webkit-transform: rotateY(90deg) translate3d(0, 0, 64px);
      transform: rotateY(90deg) translate3d(0, 0, 64px); }
    #loadingScreen .loading_cube .top {
      -webkit-transform: rotateX(90deg) translate3d(0, 0, 64px);
      transform: rotateX(90deg) translate3d(0, 0, 64px); }
    #loadingScreen .loading_cube .bottom {
      -webkit-transform: rotateX(-90deg) translate3d(0, 0, 64px);
      transform: rotateX(-90deg) translate3d(0, 0, 64px); }
    #loadingScreen .loading_cube.state_1 {
      -webkit-transform: rotateX(0deg) rotateY(0deg) rotateX(0deg);
      transform: rotateX(0deg) rotateY(0deg) rotateX(0deg); }
    #loadingScreen .loading_cube.state_2 {
      -webkit-transform: rotateY(180deg) rotateZ(0deg);
      transform: rotateY(180deg) rotateZ(0deg); }
    #loadingScreen .loading_cube.state_3 {
      -webkit-transform: rotateY(270deg) rotateZ(0deg);
      transform: rotateY(270deg) rotateZ(0deg); }
    #loadingScreen .loading_cube.state_4 {
      -webkit-transform: rotateY(90deg) rotateZ(0deg);
      transform: rotateY(90deg) rotateZ(0deg); }
    #loadingScreen .loading_cube.state_5 {
      -webkit-transform: rotateX(-90deg);
      transform: rotateX(-90deg); }
    #loadingScreen .loading_cube.state_6 {
      -webkit-transform: rotateX(-270deg);
      transform: rotateX(-270deg); }

/* VENDOR - Default fall-backs and external files.
========================================================================== */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem; }

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem; }

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse; }

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse; }

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem; }

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%; }

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%; }

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%; }

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%; }

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%; }

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%; }

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%; }

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%; }

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%; }

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-1 {
  margin-left: 8.333%; }

.col-xs-offset-2 {
  margin-left: 16.667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.333%; }

.col-xs-offset-5 {
  margin-left: 41.667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.333%; }

.col-xs-offset-8 {
  margin-left: 66.667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.333%; }

.col-xs-offset-11 {
  margin-left: 91.667%; }

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start; }

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center; }

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end; }

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start; }

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end; }

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between; }

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1; }

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1; }

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem; }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem; }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%; }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%; }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%; }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%; }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-1 {
    margin-left: 8.333%; }
  .col-sm-offset-2 {
    margin-left: 16.667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.333%; }
  .col-sm-offset-5 {
    margin-left: 41.667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.333%; }
  .col-sm-offset-8 {
    margin-left: 66.667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.333%; }
  .col-sm-offset-11 {
    margin-left: 91.667%; }
  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center; }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; } }

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem; }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem; }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }
  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%; }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }
  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%; }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }
  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%; }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }
  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%; }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-1 {
    margin-left: 8.333%; }
  .col-md-offset-2 {
    margin-left: 16.667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.333%; }
  .col-md-offset-5 {
    margin-left: 41.667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.333%; }
  .col-md-offset-8 {
    margin-left: 66.667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.333%; }
  .col-md-offset-11 {
    margin-left: 91.667%; }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center; }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; } }

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem; }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem; }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%; }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%; }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%; }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%; }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-1 {
    margin-left: 8.333%; }
  .col-lg-offset-2 {
    margin-left: 16.667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.333%; }
  .col-lg-offset-5 {
    margin-left: 41.667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.333%; }
  .col-lg-offset-8 {
    margin-left: 66.667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.333%; }
  .col-lg-offset-11 {
    margin-left: 91.667%; }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center; }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; } }

/* BASE - Base Variable file along with starting point Mixins and Placeholders.
========================================================================== */
@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/ShareTechMono-Regular.ttf");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

@font-face {
  font-family: 'Patrick Hand';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/PatrickHand-Regular.ttf");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

/* FRAMEWORK - Structure and layoutConfig files.
========================================================================== */
body {
  background: url("/resources/img/background/wood.jpg") repeat;
  cursor: url("/resources/img/cursor/cursorHand_grey.png"), auto; }

a:hover, button:hover {
  cursor: url("/resources/img/cursor/cursorGauntlet_grey.png"), auto; }

main {
  width: 900px;
  margin: 15px auto;
  font-family: "Patrick Hand", monospace;
  font-size: 18px;
  line-height: 18px;
  border: 20px solid transparent;
  background-color: #d3bf8f;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_beige.png") 20 20 round;
  box-sizing: border-box; }
  main header {
    margin: -20px -20px 0 -20px;
    padding: 15px 15px 5px 15px;
    border-bottom: 2px solid #b1a077; }
  main section {
    min-height: 500px;
    padding: 5px 15px;
    margin: 0 -20px; }
  main footer {
    border-top: 2px solid #b1a077;
    margin: 0 -20px -20px -20px;
    font-size: 0.8rem;
    padding: 15px; }
    main footer div:first-child {
      float: left; }
    main footer div:last-child {
      float: right; }
    main footer:after {
      content: ".";
      clear: both;
      display: block;
      visibility: hidden;
      height: 0; }

button {
  padding: 0;
  height: 40px;
  border: 10px solid transparent;
  background-color: #838796;
  background-clip: padding-box;
  border-image: url(/resources/img/button/buttonSquare_blue.png) 10 10 round; }
  button:disabled {
    border: 10px solid transparent;
    background-color: #e5e5e5;
    background-clip: padding-box;
    border-image: url(/resources/img/button/buttonSquare_grey.png) 10 10 round; }
  button:active {
    border: 10px solid transparent;
    background-color: #838796;
    background-clip: padding-box;
    border-image: url(/resources/img/button/buttonSquare_blue_pressed.png) 10 10 round; }
  button:focus {
    outline: none; }

.nav {
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center; }
  .nav__item {
    -webkit-flex: 1 auto;
    flex: 1 auto;
    flex-basis: 0;
    text-align: center;
    border: 10px solid transparent;
    background-color: #97714a;
    background-clip: padding-box;
    border-image: url(/resources/img/button/buttonSquare_brown.png) 10 10 round;
    margin: 5px; }
    .nav__item--active {
      border: 10px solid transparent;
      background-color: #97714a;
      background-clip: padding-box;
      border-image: url(/resources/img/button/buttonSquare_brown_pressed.png) 10 10 round; }

.statusbar {
  border: 20px solid transparent;
  background-color: #838796;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panelInset_blue.png") 20 20 round;
  box-sizing: border-box; }
  .statusbar p {
    margin: 0; }
    .statusbar p:last-of-type {
      margin-bottom: 15px; }
  .statusbar__heroName {
    font-weight: bold; }

.progressbar {
  position: relative;
  height: 18px;
  margin-left: 9px;
  margin-right: 9px;
  background-image: url("/resources/img/bar/barBack_horizontalMid.png"); }
  .progressbar:before {
    content: url("/resources/img/bar/barBack_horizontalLeft.png");
    left: -9px;
    position: relative; }
  .progressbar:after {
    content: url("/resources/img/bar/barBack_horizontalRight.png");
    right: -9px;
    position: absolute;
    top: 0; }
  .progressbar__inner {
    position: relative;
    height: 18px;
    background-image: url("/resources/img/bar/barRed_horizontalMid.png");
    top: -22px;
    transition: width 0.5s ease; }
    .progressbar__inner:before {
      content: url("/resources/img/bar/barRed_horizontalLeft.png");
      left: -9px;
      position: relative; }
    .progressbar__inner:after {
      content: url("/resources/img/bar/barRed_horizontalRight.png");
      right: -9px;
      position: absolute;
      top: 0;
      z-index: 5; }
    .progressbar__inner--green {
      background-image: url("/resources/img/bar/barGreen_horizontalMid.png"); }
      .progressbar__inner--green:before {
        content: url("/resources/img/bar/barGreen_horizontalLeft.png"); }
      .progressbar__inner--green:after {
        content: url("/resources/img/bar/barGreen_horizontalRight.png"); }
    .progressbar__inner--blue {
      background-image: url("/resources/img/bar/barBlue_horizontalMid.png"); }
      .progressbar__inner--blue:before {
        content: url("/resources/img/bar/barBlue_horizontalLeft.png"); }
      .progressbar__inner--blue:after {
        content: url("/resources/img/bar/barBlue_horizontalRight.png"); }
    .progressbar__inner--yellow {
      background-image: url("/resources/img/bar/barYellow_horizontalMid.png"); }
      .progressbar__inner--yellow:before {
        content: url("/resources/img/bar/barYellow_horizontalLeft.png"); }
      .progressbar__inner--yellow:after {
        content: url("/resources/img/bar/barYellow_horizontalRight.png"); }
  .progressbar__text {
    display: block;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 0;
    font-size: 12px;
    z-index: 10; }
  .progressbar--green .progressbar__inner {
    background-image: url("/resources/img/bar/barGreen_horizontalMid.png"); }
    .progressbar--green .progressbar__inner:before {
      content: url("/resources/img/bar/barGreen_horizontalLeft.png"); }
    .progressbar--green .progressbar__inner:after {
      content: url("/resources/img/bar/barGreen_horizontalRight.png"); }

h2 {
  margin-top: 5px;
  text-align: center; }

select {
  border-bottom: 1px solid #c9c9c9;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: #444444;
  -webkit-appearance: button;
  -webkit-border-radius: 2px;
  -webkit-padding-end: 20px;
  -webkit-padding-start: 2px;
  -webkit-user-select: none;
  background-color: #f7efdd;
  background-image: url(/resources/img/form/select.png);
  background-position: 97% center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  padding: 5px 10px;
  text-overflow: ellipsis;
  white-space: nowrap; }
  select option {
    position: relative; }

/* MODULES - Re-usable site elements.
========================================================================== */
.iconpos-1-1 {
  left: 0px;
  top: 0px; }

.iconpos-1-2 {
  left: 0px;
  top: 32px; }

.iconpos-1-3 {
  left: 0px;
  top: 64px; }

.iconpos-1-4 {
  left: 0px;
  top: 96px; }

.iconpos-1-5 {
  left: 0px;
  top: 128px; }

.iconpos-1-6 {
  left: 0px;
  top: 160px; }

.iconpos-1-7 {
  left: 0px;
  top: 192px; }

.iconpos-1-8 {
  left: 0px;
  top: 224px; }

.iconpos-1-9 {
  left: 0px;
  top: 256px; }

.iconpos-1-10 {
  left: 0px;
  top: 288px; }

.iconpos-1-11 {
  left: 0px;
  top: 320px; }

.iconpos-1-12 {
  left: 0px;
  top: 352px; }

.iconpos-1-13 {
  left: 0px;
  top: 384px; }

.iconpos-1-14 {
  left: 0px;
  top: 416px; }

.iconpos-1-15 {
  left: 0px;
  top: 448px; }

.iconpos-1-16 {
  left: 0px;
  top: 480px; }

.iconpos-1-17 {
  left: 0px;
  top: 512px; }

.iconpos-1-18 {
  left: 0px;
  top: 544px; }

.iconpos-1-19 {
  left: 0px;
  top: 576px; }

.iconpos-2-1 {
  left: 32px;
  top: 0px; }

.iconpos-2-2 {
  left: 32px;
  top: 32px; }

.iconpos-2-3 {
  left: 32px;
  top: 64px; }

.iconpos-2-4 {
  left: 32px;
  top: 96px; }

.iconpos-2-5 {
  left: 32px;
  top: 128px; }

.iconpos-2-6 {
  left: 32px;
  top: 160px; }

.iconpos-2-7 {
  left: 32px;
  top: 192px; }

.iconpos-2-8 {
  left: 32px;
  top: 224px; }

.iconpos-2-9 {
  left: 32px;
  top: 256px; }

.iconpos-2-10 {
  left: 32px;
  top: 288px; }

.iconpos-2-11 {
  left: 32px;
  top: 320px; }

.iconpos-2-12 {
  left: 32px;
  top: 352px; }

.iconpos-2-13 {
  left: 32px;
  top: 384px; }

.iconpos-2-14 {
  left: 32px;
  top: 416px; }

.iconpos-2-15 {
  left: 32px;
  top: 448px; }

.iconpos-2-16 {
  left: 32px;
  top: 480px; }

.iconpos-2-17 {
  left: 32px;
  top: 512px; }

.iconpos-2-18 {
  left: 32px;
  top: 544px; }

.iconpos-2-19 {
  left: 32px;
  top: 576px; }

.iconpos-3-1 {
  left: 64px;
  top: 0px; }

.iconpos-3-2 {
  left: 64px;
  top: 32px; }

.iconpos-3-3 {
  left: 64px;
  top: 64px; }

.iconpos-3-4 {
  left: 64px;
  top: 96px; }

.iconpos-3-5 {
  left: 64px;
  top: 128px; }

.iconpos-3-6 {
  left: 64px;
  top: 160px; }

.iconpos-3-7 {
  left: 64px;
  top: 192px; }

.iconpos-3-8 {
  left: 64px;
  top: 224px; }

.iconpos-3-9 {
  left: 64px;
  top: 256px; }

.iconpos-3-10 {
  left: 64px;
  top: 288px; }

.iconpos-3-11 {
  left: 64px;
  top: 320px; }

.iconpos-3-12 {
  left: 64px;
  top: 352px; }

.iconpos-3-13 {
  left: 64px;
  top: 384px; }

.iconpos-3-14 {
  left: 64px;
  top: 416px; }

.iconpos-3-15 {
  left: 64px;
  top: 448px; }

.iconpos-3-16 {
  left: 64px;
  top: 480px; }

.iconpos-3-17 {
  left: 64px;
  top: 512px; }

.iconpos-3-18 {
  left: 64px;
  top: 544px; }

.iconpos-3-19 {
  left: 64px;
  top: 576px; }

.iconpos-4-1 {
  left: 96px;
  top: 0px; }

.iconpos-4-2 {
  left: 96px;
  top: 32px; }

.iconpos-4-3 {
  left: 96px;
  top: 64px; }

.iconpos-4-4 {
  left: 96px;
  top: 96px; }

.iconpos-4-5 {
  left: 96px;
  top: 128px; }

.iconpos-4-6 {
  left: 96px;
  top: 160px; }

.iconpos-4-7 {
  left: 96px;
  top: 192px; }

.iconpos-4-8 {
  left: 96px;
  top: 224px; }

.iconpos-4-9 {
  left: 96px;
  top: 256px; }

.iconpos-4-10 {
  left: 96px;
  top: 288px; }

.iconpos-4-11 {
  left: 96px;
  top: 320px; }

.iconpos-4-12 {
  left: 96px;
  top: 352px; }

.iconpos-4-13 {
  left: 96px;
  top: 384px; }

.iconpos-4-14 {
  left: 96px;
  top: 416px; }

.iconpos-4-15 {
  left: 96px;
  top: 448px; }

.iconpos-4-16 {
  left: 96px;
  top: 480px; }

.iconpos-4-17 {
  left: 96px;
  top: 512px; }

.iconpos-4-18 {
  left: 96px;
  top: 544px; }

.iconpos-4-19 {
  left: 96px;
  top: 576px; }

.iconpos-5-1 {
  left: 128px;
  top: 0px; }

.iconpos-5-2 {
  left: 128px;
  top: 32px; }

.iconpos-5-3 {
  left: 128px;
  top: 64px; }

.iconpos-5-4 {
  left: 128px;
  top: 96px; }

.iconpos-5-5 {
  left: 128px;
  top: 128px; }

.iconpos-5-6 {
  left: 128px;
  top: 160px; }

.iconpos-5-7 {
  left: 128px;
  top: 192px; }

.iconpos-5-8 {
  left: 128px;
  top: 224px; }

.iconpos-5-9 {
  left: 128px;
  top: 256px; }

.iconpos-5-10 {
  left: 128px;
  top: 288px; }

.iconpos-5-11 {
  left: 128px;
  top: 320px; }

.iconpos-5-12 {
  left: 128px;
  top: 352px; }

.iconpos-5-13 {
  left: 128px;
  top: 384px; }

.iconpos-5-14 {
  left: 128px;
  top: 416px; }

.iconpos-5-15 {
  left: 128px;
  top: 448px; }

.iconpos-5-16 {
  left: 128px;
  top: 480px; }

.iconpos-5-17 {
  left: 128px;
  top: 512px; }

.iconpos-5-18 {
  left: 128px;
  top: 544px; }

.iconpos-5-19 {
  left: 128px;
  top: 576px; }

.iconpos-6-1 {
  left: 160px;
  top: 0px; }

.iconpos-6-2 {
  left: 160px;
  top: 32px; }

.iconpos-6-3 {
  left: 160px;
  top: 64px; }

.iconpos-6-4 {
  left: 160px;
  top: 96px; }

.iconpos-6-5 {
  left: 160px;
  top: 128px; }

.iconpos-6-6 {
  left: 160px;
  top: 160px; }

.iconpos-6-7 {
  left: 160px;
  top: 192px; }

.iconpos-6-8 {
  left: 160px;
  top: 224px; }

.iconpos-6-9 {
  left: 160px;
  top: 256px; }

.iconpos-6-10 {
  left: 160px;
  top: 288px; }

.iconpos-6-11 {
  left: 160px;
  top: 320px; }

.iconpos-6-12 {
  left: 160px;
  top: 352px; }

.iconpos-6-13 {
  left: 160px;
  top: 384px; }

.iconpos-6-14 {
  left: 160px;
  top: 416px; }

.iconpos-6-15 {
  left: 160px;
  top: 448px; }

.iconpos-6-16 {
  left: 160px;
  top: 480px; }

.iconpos-6-17 {
  left: 160px;
  top: 512px; }

.iconpos-6-18 {
  left: 160px;
  top: 544px; }

.iconpos-6-19 {
  left: 160px;
  top: 576px; }

.iconpos-7-1 {
  left: 192px;
  top: 0px; }

.iconpos-7-2 {
  left: 192px;
  top: 32px; }

.iconpos-7-3 {
  left: 192px;
  top: 64px; }

.iconpos-7-4 {
  left: 192px;
  top: 96px; }

.iconpos-7-5 {
  left: 192px;
  top: 128px; }

.iconpos-7-6 {
  left: 192px;
  top: 160px; }

.iconpos-7-7 {
  left: 192px;
  top: 192px; }

.iconpos-7-8 {
  left: 192px;
  top: 224px; }

.iconpos-7-9 {
  left: 192px;
  top: 256px; }

.iconpos-7-10 {
  left: 192px;
  top: 288px; }

.iconpos-7-11 {
  left: 192px;
  top: 320px; }

.iconpos-7-12 {
  left: 192px;
  top: 352px; }

.iconpos-7-13 {
  left: 192px;
  top: 384px; }

.iconpos-7-14 {
  left: 192px;
  top: 416px; }

.iconpos-7-15 {
  left: 192px;
  top: 448px; }

.iconpos-7-16 {
  left: 192px;
  top: 480px; }

.iconpos-7-17 {
  left: 192px;
  top: 512px; }

.iconpos-7-18 {
  left: 192px;
  top: 544px; }

.iconpos-7-19 {
  left: 192px;
  top: 576px; }

.iconpos-8-1 {
  left: 224px;
  top: 0px; }

.iconpos-8-2 {
  left: 224px;
  top: 32px; }

.iconpos-8-3 {
  left: 224px;
  top: 64px; }

.iconpos-8-4 {
  left: 224px;
  top: 96px; }

.iconpos-8-5 {
  left: 224px;
  top: 128px; }

.iconpos-8-6 {
  left: 224px;
  top: 160px; }

.iconpos-8-7 {
  left: 224px;
  top: 192px; }

.iconpos-8-8 {
  left: 224px;
  top: 224px; }

.iconpos-8-9 {
  left: 224px;
  top: 256px; }

.iconpos-8-10 {
  left: 224px;
  top: 288px; }

.iconpos-8-11 {
  left: 224px;
  top: 320px; }

.iconpos-8-12 {
  left: 224px;
  top: 352px; }

.iconpos-8-13 {
  left: 224px;
  top: 384px; }

.iconpos-8-14 {
  left: 224px;
  top: 416px; }

.iconpos-8-15 {
  left: 224px;
  top: 448px; }

.iconpos-8-16 {
  left: 224px;
  top: 480px; }

.iconpos-8-17 {
  left: 224px;
  top: 512px; }

.iconpos-8-18 {
  left: 224px;
  top: 544px; }

.iconpos-8-19 {
  left: 224px;
  top: 576px; }

.iconpos-9-1 {
  left: 256px;
  top: 0px; }

.iconpos-9-2 {
  left: 256px;
  top: 32px; }

.iconpos-9-3 {
  left: 256px;
  top: 64px; }

.iconpos-9-4 {
  left: 256px;
  top: 96px; }

.iconpos-9-5 {
  left: 256px;
  top: 128px; }

.iconpos-9-6 {
  left: 256px;
  top: 160px; }

.iconpos-9-7 {
  left: 256px;
  top: 192px; }

.iconpos-9-8 {
  left: 256px;
  top: 224px; }

.iconpos-9-9 {
  left: 256px;
  top: 256px; }

.iconpos-9-10 {
  left: 256px;
  top: 288px; }

.iconpos-9-11 {
  left: 256px;
  top: 320px; }

.iconpos-9-12 {
  left: 256px;
  top: 352px; }

.iconpos-9-13 {
  left: 256px;
  top: 384px; }

.iconpos-9-14 {
  left: 256px;
  top: 416px; }

.iconpos-9-15 {
  left: 256px;
  top: 448px; }

.iconpos-9-16 {
  left: 256px;
  top: 480px; }

.iconpos-9-17 {
  left: 256px;
  top: 512px; }

.iconpos-9-18 {
  left: 256px;
  top: 544px; }

.iconpos-9-19 {
  left: 256px;
  top: 576px; }

.iconpos-10-1 {
  left: 288px;
  top: 0px; }

.iconpos-10-2 {
  left: 288px;
  top: 32px; }

.iconpos-10-3 {
  left: 288px;
  top: 64px; }

.iconpos-10-4 {
  left: 288px;
  top: 96px; }

.iconpos-10-5 {
  left: 288px;
  top: 128px; }

.iconpos-10-6 {
  left: 288px;
  top: 160px; }

.iconpos-10-7 {
  left: 288px;
  top: 192px; }

.iconpos-10-8 {
  left: 288px;
  top: 224px; }

.iconpos-10-9 {
  left: 288px;
  top: 256px; }

.iconpos-10-10 {
  left: 288px;
  top: 288px; }

.iconpos-10-11 {
  left: 288px;
  top: 320px; }

.iconpos-10-12 {
  left: 288px;
  top: 352px; }

.iconpos-10-13 {
  left: 288px;
  top: 384px; }

.iconpos-10-14 {
  left: 288px;
  top: 416px; }

.iconpos-10-15 {
  left: 288px;
  top: 448px; }

.iconpos-10-16 {
  left: 288px;
  top: 480px; }

.iconpos-10-17 {
  left: 288px;
  top: 512px; }

.iconpos-10-18 {
  left: 288px;
  top: 544px; }

.iconpos-10-19 {
  left: 288px;
  top: 576px; }

.iconpos-11-1 {
  left: 320px;
  top: 0px; }

.iconpos-11-2 {
  left: 320px;
  top: 32px; }

.iconpos-11-3 {
  left: 320px;
  top: 64px; }

.iconpos-11-4 {
  left: 320px;
  top: 96px; }

.iconpos-11-5 {
  left: 320px;
  top: 128px; }

.iconpos-11-6 {
  left: 320px;
  top: 160px; }

.iconpos-11-7 {
  left: 320px;
  top: 192px; }

.iconpos-11-8 {
  left: 320px;
  top: 224px; }

.iconpos-11-9 {
  left: 320px;
  top: 256px; }

.iconpos-11-10 {
  left: 320px;
  top: 288px; }

.iconpos-11-11 {
  left: 320px;
  top: 320px; }

.iconpos-11-12 {
  left: 320px;
  top: 352px; }

.iconpos-11-13 {
  left: 320px;
  top: 384px; }

.iconpos-11-14 {
  left: 320px;
  top: 416px; }

.iconpos-11-15 {
  left: 320px;
  top: 448px; }

.iconpos-11-16 {
  left: 320px;
  top: 480px; }

.iconpos-11-17 {
  left: 320px;
  top: 512px; }

.iconpos-11-18 {
  left: 320px;
  top: 544px; }

.iconpos-11-19 {
  left: 320px;
  top: 576px; }

.iconpos-12-1 {
  left: 352px;
  top: 0px; }

.iconpos-12-2 {
  left: 352px;
  top: 32px; }

.iconpos-12-3 {
  left: 352px;
  top: 64px; }

.iconpos-12-4 {
  left: 352px;
  top: 96px; }

.iconpos-12-5 {
  left: 352px;
  top: 128px; }

.iconpos-12-6 {
  left: 352px;
  top: 160px; }

.iconpos-12-7 {
  left: 352px;
  top: 192px; }

.iconpos-12-8 {
  left: 352px;
  top: 224px; }

.iconpos-12-9 {
  left: 352px;
  top: 256px; }

.iconpos-12-10 {
  left: 352px;
  top: 288px; }

.iconpos-12-11 {
  left: 352px;
  top: 320px; }

.iconpos-12-12 {
  left: 352px;
  top: 352px; }

.iconpos-12-13 {
  left: 352px;
  top: 384px; }

.iconpos-12-14 {
  left: 352px;
  top: 416px; }

.iconpos-12-15 {
  left: 352px;
  top: 448px; }

.iconpos-12-16 {
  left: 352px;
  top: 480px; }

.iconpos-12-17 {
  left: 352px;
  top: 512px; }

.iconpos-12-18 {
  left: 352px;
  top: 544px; }

.iconpos-12-19 {
  left: 352px;
  top: 576px; }

.iconpos-13-1 {
  left: 384px;
  top: 0px; }

.iconpos-13-2 {
  left: 384px;
  top: 32px; }

.iconpos-13-3 {
  left: 384px;
  top: 64px; }

.iconpos-13-4 {
  left: 384px;
  top: 96px; }

.iconpos-13-5 {
  left: 384px;
  top: 128px; }

.iconpos-13-6 {
  left: 384px;
  top: 160px; }

.iconpos-13-7 {
  left: 384px;
  top: 192px; }

.iconpos-13-8 {
  left: 384px;
  top: 224px; }

.iconpos-13-9 {
  left: 384px;
  top: 256px; }

.iconpos-13-10 {
  left: 384px;
  top: 288px; }

.iconpos-13-11 {
  left: 384px;
  top: 320px; }

.iconpos-13-12 {
  left: 384px;
  top: 352px; }

.iconpos-13-13 {
  left: 384px;
  top: 384px; }

.iconpos-13-14 {
  left: 384px;
  top: 416px; }

.iconpos-13-15 {
  left: 384px;
  top: 448px; }

.iconpos-13-16 {
  left: 384px;
  top: 480px; }

.iconpos-13-17 {
  left: 384px;
  top: 512px; }

.iconpos-13-18 {
  left: 384px;
  top: 544px; }

.iconpos-13-19 {
  left: 384px;
  top: 576px; }

.iconpos-14-1 {
  left: 416px;
  top: 0px; }

.iconpos-14-2 {
  left: 416px;
  top: 32px; }

.iconpos-14-3 {
  left: 416px;
  top: 64px; }

.iconpos-14-4 {
  left: 416px;
  top: 96px; }

.iconpos-14-5 {
  left: 416px;
  top: 128px; }

.iconpos-14-6 {
  left: 416px;
  top: 160px; }

.iconpos-14-7 {
  left: 416px;
  top: 192px; }

.iconpos-14-8 {
  left: 416px;
  top: 224px; }

.iconpos-14-9 {
  left: 416px;
  top: 256px; }

.iconpos-14-10 {
  left: 416px;
  top: 288px; }

.iconpos-14-11 {
  left: 416px;
  top: 320px; }

.iconpos-14-12 {
  left: 416px;
  top: 352px; }

.iconpos-14-13 {
  left: 416px;
  top: 384px; }

.iconpos-14-14 {
  left: 416px;
  top: 416px; }

.iconpos-14-15 {
  left: 416px;
  top: 448px; }

.iconpos-14-16 {
  left: 416px;
  top: 480px; }

.iconpos-14-17 {
  left: 416px;
  top: 512px; }

.iconpos-14-18 {
  left: 416px;
  top: 544px; }

.iconpos-14-19 {
  left: 416px;
  top: 576px; }

.iconpos-15-1 {
  left: 448px;
  top: 0px; }

.iconpos-15-2 {
  left: 448px;
  top: 32px; }

.iconpos-15-3 {
  left: 448px;
  top: 64px; }

.iconpos-15-4 {
  left: 448px;
  top: 96px; }

.iconpos-15-5 {
  left: 448px;
  top: 128px; }

.iconpos-15-6 {
  left: 448px;
  top: 160px; }

.iconpos-15-7 {
  left: 448px;
  top: 192px; }

.iconpos-15-8 {
  left: 448px;
  top: 224px; }

.iconpos-15-9 {
  left: 448px;
  top: 256px; }

.iconpos-15-10 {
  left: 448px;
  top: 288px; }

.iconpos-15-11 {
  left: 448px;
  top: 320px; }

.iconpos-15-12 {
  left: 448px;
  top: 352px; }

.iconpos-15-13 {
  left: 448px;
  top: 384px; }

.iconpos-15-14 {
  left: 448px;
  top: 416px; }

.iconpos-15-15 {
  left: 448px;
  top: 448px; }

.iconpos-15-16 {
  left: 448px;
  top: 480px; }

.iconpos-15-17 {
  left: 448px;
  top: 512px; }

.iconpos-15-18 {
  left: 448px;
  top: 544px; }

.iconpos-15-19 {
  left: 448px;
  top: 576px; }

.iconpos-16-1 {
  left: 480px;
  top: 0px; }

.iconpos-16-2 {
  left: 480px;
  top: 32px; }

.iconpos-16-3 {
  left: 480px;
  top: 64px; }

.iconpos-16-4 {
  left: 480px;
  top: 96px; }

.iconpos-16-5 {
  left: 480px;
  top: 128px; }

.iconpos-16-6 {
  left: 480px;
  top: 160px; }

.iconpos-16-7 {
  left: 480px;
  top: 192px; }

.iconpos-16-8 {
  left: 480px;
  top: 224px; }

.iconpos-16-9 {
  left: 480px;
  top: 256px; }

.iconpos-16-10 {
  left: 480px;
  top: 288px; }

.iconpos-16-11 {
  left: 480px;
  top: 320px; }

.iconpos-16-12 {
  left: 480px;
  top: 352px; }

.iconpos-16-13 {
  left: 480px;
  top: 384px; }

.iconpos-16-14 {
  left: 480px;
  top: 416px; }

.iconpos-16-15 {
  left: 480px;
  top: 448px; }

.iconpos-16-16 {
  left: 480px;
  top: 480px; }

.iconpos-16-17 {
  left: 480px;
  top: 512px; }

.iconpos-16-18 {
  left: 480px;
  top: 544px; }

.iconpos-16-19 {
  left: 480px;
  top: 576px; }

.iconpos-17-1 {
  left: 512px;
  top: 0px; }

.iconpos-17-2 {
  left: 512px;
  top: 32px; }

.iconpos-17-3 {
  left: 512px;
  top: 64px; }

.iconpos-17-4 {
  left: 512px;
  top: 96px; }

.iconpos-17-5 {
  left: 512px;
  top: 128px; }

.iconpos-17-6 {
  left: 512px;
  top: 160px; }

.iconpos-17-7 {
  left: 512px;
  top: 192px; }

.iconpos-17-8 {
  left: 512px;
  top: 224px; }

.iconpos-17-9 {
  left: 512px;
  top: 256px; }

.iconpos-17-10 {
  left: 512px;
  top: 288px; }

.iconpos-17-11 {
  left: 512px;
  top: 320px; }

.iconpos-17-12 {
  left: 512px;
  top: 352px; }

.iconpos-17-13 {
  left: 512px;
  top: 384px; }

.iconpos-17-14 {
  left: 512px;
  top: 416px; }

.iconpos-17-15 {
  left: 512px;
  top: 448px; }

.iconpos-17-16 {
  left: 512px;
  top: 480px; }

.iconpos-17-17 {
  left: 512px;
  top: 512px; }

.iconpos-17-18 {
  left: 512px;
  top: 544px; }

.iconpos-17-19 {
  left: 512px;
  top: 576px; }

.iconpos-18-1 {
  left: 544px;
  top: 0px; }

.iconpos-18-2 {
  left: 544px;
  top: 32px; }

.iconpos-18-3 {
  left: 544px;
  top: 64px; }

.iconpos-18-4 {
  left: 544px;
  top: 96px; }

.iconpos-18-5 {
  left: 544px;
  top: 128px; }

.iconpos-18-6 {
  left: 544px;
  top: 160px; }

.iconpos-18-7 {
  left: 544px;
  top: 192px; }

.iconpos-18-8 {
  left: 544px;
  top: 224px; }

.iconpos-18-9 {
  left: 544px;
  top: 256px; }

.iconpos-18-10 {
  left: 544px;
  top: 288px; }

.iconpos-18-11 {
  left: 544px;
  top: 320px; }

.iconpos-18-12 {
  left: 544px;
  top: 352px; }

.iconpos-18-13 {
  left: 544px;
  top: 384px; }

.iconpos-18-14 {
  left: 544px;
  top: 416px; }

.iconpos-18-15 {
  left: 544px;
  top: 448px; }

.iconpos-18-16 {
  left: 544px;
  top: 480px; }

.iconpos-18-17 {
  left: 544px;
  top: 512px; }

.iconpos-18-18 {
  left: 544px;
  top: 544px; }

.iconpos-18-19 {
  left: 544px;
  top: 576px; }

.iconpos-19-1 {
  left: 576px;
  top: 0px; }

.iconpos-19-2 {
  left: 576px;
  top: 32px; }

.iconpos-19-3 {
  left: 576px;
  top: 64px; }

.iconpos-19-4 {
  left: 576px;
  top: 96px; }

.iconpos-19-5 {
  left: 576px;
  top: 128px; }

.iconpos-19-6 {
  left: 576px;
  top: 160px; }

.iconpos-19-7 {
  left: 576px;
  top: 192px; }

.iconpos-19-8 {
  left: 576px;
  top: 224px; }

.iconpos-19-9 {
  left: 576px;
  top: 256px; }

.iconpos-19-10 {
  left: 576px;
  top: 288px; }

.iconpos-19-11 {
  left: 576px;
  top: 320px; }

.iconpos-19-12 {
  left: 576px;
  top: 352px; }

.iconpos-19-13 {
  left: 576px;
  top: 384px; }

.iconpos-19-14 {
  left: 576px;
  top: 416px; }

.iconpos-19-15 {
  left: 576px;
  top: 448px; }

.iconpos-19-16 {
  left: 576px;
  top: 480px; }

.iconpos-19-17 {
  left: 576px;
  top: 512px; }

.iconpos-19-18 {
  left: 576px;
  top: 544px; }

.iconpos-19-19 {
  left: 576px;
  top: 576px; }

.icon-white-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -0px -320px;
  width: 32px;
  height: 32px; }

.icon-small-white-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -0px -0px;
  width: 32px;
  height: 32px; }

.icon-red-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -64px -320px;
  width: 32px;
  height: 32px; }

.icon-blue-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -192px -320px;
  width: 32px;
  height: 32px; }

.icon-green-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -160px -320px;
  width: 32px;
  height: 32px; }

.icon-orange-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -96px -320px;
  width: 32px;
  height: 32px; }

.icon-yellow-circle {
  background: url("../resources/img/IconSet.png");
  background-position: -128px -320px;
  width: 32px;
  height: 32px; }

.icon-gold-star {
  background: url("../resources/img/IconSet.png");
  background-position: -224px -160px;
  width: 32px;
  height: 32px; }

.icon-small-gold-star {
  background: url("../resources/img/IconSet.png");
  background-position: -0px -288px;
  width: 32px;
  height: 32px; }

.icon-small-silver-star {
  background: url("../resources/img/IconSet.png");
  background-position: -32px -288px;
  width: 32px;
  height: 32px; }

.icon-close-x {
  background: url("../resources/img/IconSet.png");
  background-position: -352px -160px;
  width: 32px;
  height: 32px; }

.icon-close-x {
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 5px; }

.shop {
  width: 100%;
  float: left;
  border: 20px solid transparent;
  background-color: #ece3ce;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_beigeLight.png") 20 20 round;
  box-sizing: border-box; }

.shop_item {
  height: 60px;
  padding: 5px;
  margin: 5px;
  position: relative;
  border: 20px solid transparent;
  background-color: #97714a;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panelInset_brown.png") 20 20 round;
  box-sizing: border-box; }
  .shop_item__content {
    margin: -20px;
    padding: 5px; }
  .shop_item__icon {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border: 1px solid black;
    float: left; }
  .shop_item__details {
    display: block;
    float: left; }
  .shop_item__name {
    font-weight: bold;
    font-size: 20px; }
  .shop_item .__description {
    font-size: 16px;
    line-height: 16px; }
  .shop_item button {
    float: right;
    width: 100px;
    padding: 0; }

.goldmine {
  width: 100%;
  float: right;
  border: 20px solid transparent;
  background-color: #ece3ce;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_beigeLight.png") 20 20 round;
  box-sizing: border-box; }
  .goldmine button {
    width: 100%; }

.achievment {
  width: 100%;
  border: 20px solid transparent;
  background-color: #838796;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_blue.png") 20 20 round;
  box-sizing: border-box;
  padding: 5px;
  margin-bottom: 10px;
  float: left; }
  .achievment__inner {
    margin: -20px;
    padding: 10px; }
    .achievment__inner span:first-child {
      font-weight: bold;
      display: block; }
  .achievment--unlocked {
    border: 20px solid transparent;
    background-color: #97714a;
    background-clip: padding-box;
    border-image: url("/resources/img/panel/panel_brown.png") 20 20 round;
    box-sizing: border-box; }

#notificationsWrapper {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; }

.vertical-align {
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.notification {
  z-index: 9999;
  background-color: slategray;
  font-family: "Share Tech Mono", monospace;
  position: relative;
  border: 2px solid black;
  width: 370px;
  min-height: 74px;
  animation: notifIn 0.3s;
  animation-fill-mode: forwards;
  overflow: hidden;
  border: 20px solid transparent;
  background-color: #838796;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_blue.png") 20 20 round;
  box-sizing: border-box; }
  .notification .icon {
    width: 74px;
    height: 100%;
    float: left;
    vertical-align: middle; }
  .notification .icon img {
    max-width: 100%;
    max-height: 74px;
    height: auto; }
  .notification .actions {
    text-align: right; }
  .notification .main {
    margin-left: 6px;
    padding: 6px; }
    .notification .main .title {
      position: relative;
      display: block;
      margin-bottom: 6px;
      font-weight: bold; }
    .notification .main .timestamp {
      position: absolute;
      top: 0;
      right: 0;
      padding: 6px; }
  .notification.toast {
    margin: 32px; }

@keyframes notifIn {
  0% {
    margin-left: -500px;
    min-height: 0; }
  30% {
    margin-left: -500px;
    min-height: 74px; }
  100% {
    margin-left: 32px;
    min-height: 74px; } }

@keyframes notifOut {
  0% {
    margin-left: 32px;
    min-height: 74px; }
  80% {
    margin-left: -500px;
    min-height: 74px; }
  100% {
    margin-left: -500px;
    min-height: 0%; } }

@keyframes blink {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }

@-webkit-keyframes blink {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }

.blink {
  animation: blink 1s linear 1;
  -webkit-animation: blink 1s linear 1; }

.worldmap {
  background: url("../resources/img/world.jpg");
  width: 795px;
  height: 500px;
  overflow-y: hidden;
  position: absolute; }

#worldmap-gui {
  padding-left: 0.8rem;
  padding-right: 0.8rem; }

.icon-absolute {
  position: absolute;
  margin-top: 64px;
  margin-left: 96px;
  cursor: pointer; }

.world-icon .title {
  position: absolute;
  top: 2em; }
  .world-icon .title.white {
    color: white; }

.world-icon .status {
  position: absolute;
  top: 10px;
  left: 10px; }

.levelmap {
  width: 795px;
  height: 300px;
  overflow-y: hidden;
  position: absolute; }

#levelmap-gui {
  padding-left: 0.8rem;
  padding-right: 0.8rem; }

.item_slot {
  width: 100%;
  height: 32px;
  float: left; }

.item-list {
  max-height: 229px;
  overflow: auto; }

.item_slot img {
  width: 32px;
  height: 32px;
  float: left;
  vertical-align: middle;
  margin-right: 16px; }

.item_slot * {
  pointer-events: none; }

.item_slot > .name {
  float: left;
  line-height: 32px; }

.item_slot > .stacks {
  float: right;
  line-height: 32px; }

.item_slot .tooltip {
  display: none;
  border: 1px solid black;
  background-color: white;
  min-width: 120px;
  min-height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: left; }

.item_slot .tooltip span {
  margin-bottom: 16px;
  display: block; }

.dicecreation_area {
  margin-top: 2em; }
  .dicecreation_area .dropareas {
    width: 100%; }
  .dicecreation_area .dropbox {
    float: left;
    width: 72px;
    padding: 3px;
    border: 1px solid black; }
    .dicecreation_area .dropbox .drop_container {
      width: 100%;
      height: 40px; }
      .dicecreation_area .dropbox .drop_container img {
        width: 40px;
        height: 40px; }
    .dicecreation_area .dropbox .icon-close-x {
      top: inherit;
      left: inherit;
      margin-left: 5px;
      margin-top: 10px; }
  .dicecreation_area button.createDices {
    margin-left: 15px; }

.diceinventory .diceinventorytable {
  border: 1px solid black; }
  .diceinventory .diceinventorytable td {
    border: 1px solid black;
    padding: 3px; }
    .diceinventory .diceinventorytable td img {
      width: 40px;
      height: 40px; }

.statistic {
  border: 20px solid transparent;
  background-color: #ece3ce;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_beigeLight.png") 20 20 round;
  box-sizing: border-box;
  height: 100%; }
  .statistic hr {
    border: 0;
    height: 2px;
    background: #f7efdd; }

.equipment {
  border: 20px solid transparent;
  background-color: #ece3ce;
  background-clip: padding-box;
  border-image: url("/resources/img/panel/panel_beigeLight.png") 20 20 round;
  box-sizing: border-box; }
  .equipment hr {
    border: 0;
    height: 2px;
    background: #f7efdd; }
  .equipment__category {
    margin-bottom: 10px; }
    .equipment__category h3 {
      margin: 0; }
  .equipment__entry {
    margin-bottom: 5px; }
  .equipment__label {
    width: 30%;
    display: inline-block;
    padding: 5px 0; }
  .equipment__select {
    width: 68%;
    font-size: 1rem; }


.rotate-diagonal-1:hover {
	-webkit-animation: rotate-diagonal-1 0.4s linear both;
	        animation: rotate-diagonal-1 0.4s linear both;
}
/* ----------------------------------------------
 * Generated by Animista on 2017-8-22 23:32:39
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/* ----------------------------------------------
 * Generated by Animista on 2017-8-22 23:33:49
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-diagonal-1
 * ----------------------------------------
 */
@-webkit-keyframes rotate-diagonal-1 {
  0% {
    -webkit-transform: rotate3d(1, 1, 0, 0deg);
            transform: rotate3d(1, 1, 0, 0deg);
  }
  50% {
    -webkit-transform: rotate3d(1, 1, 0, -180deg);
            transform: rotate3d(1, 1, 0, -180deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 0, -360deg);
            transform: rotate3d(1, 1, 0, -360deg);
  }
}
@keyframes rotate-diagonal-1 {
  0% {
    -webkit-transform: rotate3d(1, 1, 0, 0deg);
            transform: rotate3d(1, 1, 0, 0deg);
  }
  50% {
    -webkit-transform: rotate3d(1, 1, 0, -180deg);
            transform: rotate3d(1, 1, 0, -180deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 0, -360deg);
            transform: rotate3d(1, 1, 0, -360deg);
  }
}
