#container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 0; }
  
#tool-menu{
    width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 0; 

}

.tool-button{
  background-color:#333;
  color:white;
  border:2px solid white;
  cursor:pointer;
  width:auto;
  text-align:center;
  user-select: none;
  max-width:200px;
  padding:10px;
}
#shell_content {
  position: absolute;
  background-color: #fff; }

.shell_layer {
  width: 100%;
  top: 0px;
  left: 0px; }

#shell_menu {
  width: 100%;
  top: 0;
  background: #000;
  position: fixed;
  z-index: 1000;
  font-weight: bold;
  /*
  .bar{
      background:url('../img/Logo.png') 30px 17px no-repeat;
      padding-top:0px;
      height:53px;

      .courseTitle{
        font-size: 24px;
        color: $primary-font-color;
        text-align: center;
        padding-top: 15px;
      }
      #subNav{
        top: 0;
        position: absolute;
        padding-top: 9px;
        text-align: right;
        width: 100%;
        right: 20px;
        #back, #restart{
          width:35px;
          height:35px;
          padding:0;
          margin-left:10px;
        }

        #back{
          // display:none !important;
          .icon{
            width:9px;
            height:19px;
            background-image: url('../img/back_arrow.png');
            margin-top: 8px;
            margin-left: 11px;
          }

          &:active{
            .icon{
              background-image: url('../img/back_arrow_white.png');
            }
          }
        }
        #restart{
          .icon{
            width: 16px;
            height: 16px;
            background-image: url('../img/restart_arrow.png');
            margin-top: 9px;
            margin-left: 10px;
          }

          &:active{
            .icon{
              background-image: url('../img/restart_arrow_white.png');
            }
          }
        }
      }
  }

  .modelProgress{
    background-color:$tertiary-base-color;
    height:4px;
    width:100%;
    #progression{
      background-color:$primary-highlight-color;
      width:0%;
      height:100%;
      transition: width ease-in 0.35s;
    }
  }
  */ }
  #shell_menu .title {
    padding: 8px 0 0px 55px;
    font-size: 15px; }
  #shell_menu .subtitle {
    font-size: 12px;
    padding: 0 0 10px 55px; }
  #shell_menu .hamburger {
    position: absolute;
    left: 15px;
    top: 18px;
    background: url("../img/hamburger.png");
    width: 21px;
    height: 18px; }
  #shell_menu .buttons {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 500px;
    text-align: right; }
    #shell_menu .buttons .spacer {
      height: 40px;
      display: inline-block;
      margin-left: 26px;
      border-right: 1px solid #ccc;
      vertical-align: top; }
    #shell_menu .buttons .btn {
      display: inline-block;
      width: 19px;
      height: 20px;
      margin-left: 26px;
      margin-top: 10px;
      cursor: pointer; }
      #shell_menu .buttons .btn.disabled {
        cursor: none;
        opacity: 0.75; }
      #shell_menu .buttons .btn.next {
        background-image: url("../img/next.png"); }
      #shell_menu .buttons .btn.prev {
        background-image: url("../img/prev.png"); }
      #shell_menu .buttons .btn.exit {
        background-image: url("../img/exit.png"); }
      #shell_menu .buttons .btn.library {
        background-image: url("../img/library.png"); }
      #shell_menu .buttons .btn.resources {
        width: 18px;
        background-image: url("../img/resources.png"); }
  #shell_menu .panel {
    position: absolute;
    top: 60px;
    width: 276px; }
    #shell_menu .panel .arrow {
      position: absolute;
      width: 0;
      height: 0;
      top: -11px;
      left: 128px;
      border-bottom: 11px solid #f7f7f7;
      border-right: 11px solid transparent;
      border-left: 11px solid transparent; }
    #shell_menu .panel .box {
      background: #fff;
      border-radius: 5px;
      color: #000;
      overflow: hidden; }
      #shell_menu .panel .box .title {
        background: #f7f7f7;
        padding: 8px 14px; }
      #shell_menu .panel .box .list {
        position: relative; }
        #shell_menu .panel .box .list a.link {
          display: block;
          color: #555;
          font-weight: normal;
          padding: 10px 15px;
          font-size: 14px;
          border: 1px solid #ddd;
          cursor: pointer; }
          #shell_menu .panel .box .list a.link:hover {
            background: #f5f5f5; }
          #shell_menu .panel .box .list a.link:nth-child(n+2) {
            border-top: none; }
    #shell_menu .panel#resources {
      right: 49px; }
    #shell_menu .panel#library {
      right: 93px; }
      #shell_menu .panel#library .list {
        height: 400px;
        overflow-y: scroll; }

.popup {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10000; }
  .popup .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .popup .box {
    margin: 200px auto 0;
    width: 500px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    background-color: #fff; }
    .popup .box .close {
      color: #495965;
      cursor: pointer;
      font-size: 30px;
      margin: 0 0 0 auto;
      opacity: 0.7;
      padding-right: 20px;
      padding-top: 10px;
      position: relative;
      width: 16px; }
      .popup .box .close:hover {
        opacity: 1; }
    .popup .box .textBlock {
      padding: 30px 40px 40px 70px; }
      .popup .box .textBlock .title {
        font-size: 32px;
        color: #495965;
        margin: 0;
        font-weight: bold;
        padding: 20px 0; }
      .popup .box .textBlock .desc {
        color: #495965;
        margin: 0; }
        .popup .box .textBlock .desc p {
          color: #495965;
          margin-bottom: 15px; }
      .popup .box .textBlock p {
        margin: 0; }
      .popup .box .textBlock li {
        color: unset; }
    .popup .box .buttonContainer {
      padding: 18px 20px;
      text-align: right;
      background-color: #495965; }
      .popup .box .buttonContainer.left .button {
        margin: 0 12px 0 0; }
      .popup .box .buttonContainer.center {
        text-align: center; }
      .popup .box .buttonContainer .button {
        margin: 0 0 0 5px; }

#shell_footer {
  font-family: "Frutiger", "OpenSans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  width: 100%;
  background: #495965;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.4);
  top: 100%;
  position: fixed;
  margin-top: -72px;
  z-index: 1000;
  display: none;
  border-top: 6px solid #104c97; }
  #shell_footer .bar {
    padding-top: 0px;
    height: 72px; }
    #shell_footer .bar .copyright {
      padding-top: 21px;
      margin-left: 30px;
      color: #bbb;
      font-size: 16px; }
    #shell_footer .bar #subNav {
      top: 0;
      position: absolute;
      padding-top: 11px;
      text-align: right;
      width: 100%;
      right: 20px; }
      #shell_footer .bar #subNav #back, #shell_footer .bar #subNav #restart {
        width: 35px;
        height: 35px;
        padding: 0;
        margin-left: 10px; }
      #shell_footer .bar #subNav .footerMainBtnNext {
        padding: 11px 16px; }
      #shell_footer .bar #subNav #back .icon {
        width: 9px;
        height: 19px;
        background-image: url("../img/back_arrow.png");
        margin-top: 8px;
        margin-left: 11px; }
      #shell_footer .bar #subNav #back:active .icon {
        background-image: url("../img/back_arrow_white.png"); }
      #shell_footer .bar #subNav #restart .icon {
        width: 16px;
        height: 16px;
        background-image: url("../img/restart_arrow.png");
        margin-top: 9px;
        margin-left: 10px; }
      #shell_footer .bar #subNav #restart:active .icon {
        background-image: url("../img/restart_arrow_white.png"); }

.popup {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10000; }
  .popup .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .popup .box {
    margin: 200px auto 0;
    width: 500px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    background-color: #fff; }
    .popup .box .close {
      color: #495965;
      cursor: pointer;
      font-size: 30px;
      margin: 0 0 0 auto;
      opacity: 0.7;
      padding-right: 20px;
      padding-top: 10px;
      position: relative;
      width: 16px; }
      .popup .box .close:hover {
        opacity: 1; }
    .popup .box .textBlock {
      padding: 30px 40px 40px 70px; }
      .popup .box .textBlock .title {
        font-size: 32px;
        color: #495965;
        margin: 0;
        font-weight: bold;
        padding: 20px 0; }
      .popup .box .textBlock .desc {
        color: #495965;
        margin: 0; }
        .popup .box .textBlock .desc p {
          color: #495965;
          margin-bottom: 15px; }
      .popup .box .textBlock p {
        margin: 0; }
      .popup .box .textBlock li {
        color: unset; }
    .popup .box .buttonContainer {
      padding: 18px 20px;
      text-align: right;
      background-color: #495965; }
      .popup .box .buttonContainer.left .button {
        margin: 0 12px 0 0; }
      .popup .box .buttonContainer.center {
        text-align: center; }
      .popup .box .buttonContainer .button {
        margin: 0 0 0 5px; }

body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  line-height: 120%;
  color: #fff; }

h1 {
  font-family: "Frutiger-Bold", "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
  font-size: 160%;
  font-weight: bold;
  color: #fff;
  margin: 10px; }

h2 {
  font-family: "Frutiger-Bold", "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
  font-size: 140%;
  font-weight: bold;
  color: #fff;
  margin: 10px; }

h3 {
  font-family: "Frutiger-Bold", "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
  font-size: 120%;
  font-weight: bold;
  color: #fff;
  margin: 10px; }

p {
  font-family: "Frutiger", "OpenSans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 120%;
  font-size: 16px;
  color: #fff;
  margin: 10px; }

p b {
  font-weight: bold; }

b {
  font-weight: bold; }

p i {
  font-style: italic; }

i {
  font-style: italic; }

ul, ol {
  margin: 10px; }

ul li {
  list-style: disc outside; }

ol li {
  list-style: decimal; }

a {
  text-decoration: none;
  color: #fff; }

span[fontweight='bold'], span.bold {
  font-weight: 600; }

/*
a:link {color:$tertiary-brand-color;}
a:visited {color: #00659b;}
a:hover {color: lighten($tertiary-brand-color, 20%);}
a:active {color:$tertiary-brand-color;}
*/
sup {
  font-size: 60%;
  vertical-align: top; }

.definition-link {
  font-weight: 700;
  text-decoration: underline; }

header {
  font-family: "Frutiger-Bold", "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
  font-size: 140%;
  font-weight: bold;
  color: #00c8e6;
  margin: 10px;
  padding: 10px; }

.blue-bold {
  color: #00c8e6;
  font-weight: bold; }

.maincolumn {
  width: 100%;
  position: relative; }

.mainBtn {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px;
  min-width: 64px;
  text-transform: uppercase;
  text-align: center;
  background: url("../img/mainBtn.jpg");
  border-radius: 5px;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.4);
  cursor: pointer; }
  .mainBtn:hover {
    background: url("../img/mainBtn_hover.jpg"); }
  .mainBtn.disable {
    pointer-events: none;
    color: #293741;
    background: rgba(216, 229, 219, 0.5);
    box-shadow: none; }

input, textarea, input:focus, textarea:focus {
  outline: 0 none !important; }

.progressArea {
  position: absolute;
  right: 0;
  z-index: 1;
  margin-top: 10px;
  margin-right: 10%;
  right: 0; }
  .progressArea #progressCircle {
    position: absolute;
    font-size: 3.6px;
    position: absolute;
    background-color: #495965;
    border-radius: 50%;
    transform-origin: 0.5 0.5; }
  .progressArea #playControls {
    position: absolute;
    background: url("../../content/global/img/play.png");
    width: 29px;
    height: 29px;
    margin: 3px 0 0 4px;
    cursor: pointer; }
    .progressArea #playControls.done {
      display: none;
      cursor: default; }
    .progressArea #playControls.playing {
      background: url("../../content/global/img/pause.png"); }

.home {
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 10px;
  height: 24px;
  width: 24px;
  background: url("../img/home.png");
  z-index: 1000; }

@media (min-width: 1001px) {
  .maincolumn {
    width: 1000px;
    margin-left: auto;
    margin-right: auto; } }
@media (max-width: 768px) {
  #shell_menu .bar {
    background: url("../img/Logo_mobile.png") 10px 12px no-repeat; } }
@media (max-width: 640px) {
  #shell_menu {
    width: 640px; }

  .maincolumn {
    width: 640px;
    overflow-x: hidden; } }
body, html {
  width: 100%;
  min-width: 640px;
  height: 100%;
  background: #000; }

audio {
  display: none; }

#audioDebug {
  position: fixed;
  top: -1000px; }

button {
  outline: 0 !important;
  border: none; }

.cheat-toggle {
  color: #797979;
  font-size: 11px;
  position: fixed;
  top: 0;
  right: 120px;
  z-index: 400;
  padding: 5px 10px;
  background-color: #eee;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.18); }
  .cheat-toggle.power-on {
    color: #289E92;
    font-weight: bold;
    background-color: #6DE380; }

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