/**
 * master.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
/**
 *  core.scss
 *
 *  @package   scripts/styles/blu
 *  @author    Fernando Salazar <fernando@blufish.com>
 *  @created   Thursday, April 28, 2016
 */
/**
 *  reset.scss
 *
 *  @package   scripts/styles/blu
 *  @author    Fernando Salazar <fernando@blufish.com>
 *  @created   Thursday, April 28, 2016
 */
body, html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.4rem; }

section, nav, header, footer {
  display: block;
  padding: 0;
  margin: 0; }

body, p, div, span {
  font-family: inherit;
  color: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

input, textarea, select, button {
  background: none;
  -webkit-appearance: none; }
  input:focus, textarea:focus, select:focus, button:focus {
    outline: none; }

button {
  display: block;
  width: 100%;
  text-transform: uppercase;
  cursor: pointer; }

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0; }

img {
  border: none;
  display: block; }

li {
  display: block; }

p {
  margin: 0; }

a {
  display: inline-block;
  text-decoration: none;
  color: inherit; }

*, *:before, *:after {
  box-sizing: border-box; }

/**
 * global.scss
 *
 * @package   src/app/styles
 * @author    Fernando Salazar <fernando@blufish.com>
 * @created   Tue, Aug 16, 2016
 */
body, html {
  background: white; }

body {
  color: black;
  font-family: Helvetica, Arial, sans-serif; }

/**
 *  ui.scss
 *
 *  @package   beazer/app/styles
 *  @author    Fernando Salazar <fernando@blufish.com>
 *  @since     Tue, Aug 16, 2016
 */
.pill {
  position: relative;
  background-color: white;
  border: 2px solid #796c6c;
  border-radius: 5px;
  color: #796c6c;
  font-size: 13pt; }
  .pill.disable {
    display: none; }
  .pill label {
    display: block;
    padding: 10px 8px;
    cursor: pointer; }
    .pill label > .arrow {
      position: absolute;
      height: 100%;
      border-left: 2px solid #796c6c;
      top: auto;
      right: 4px;
      padding-left: 3px;
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      -o-transform: translateY(-10px);
      transform: translateY(-10px); }
      .pill label > .arrow::before {
        content: " ";
        display: block;
        border: 8px solid transparent;
        border-bottom-color: #c42032;
        -webkit-transform: translateY(9px);
        -moz-transform: translateY(9px);
        -ms-transform: translateY(9px);
        -o-transform: translateY(9px);
        transform: translateY(9px); }
    .pill label > .help {
      position: absolute;
      top: auto;
      right: 33px;
      padding: 3px 5px;
      color: #796c6c;
      font-weight: bold;
      font-size: 14px;
      border: 1px solid #796c6c;
      border-radius: 5px;
      -webkit-transform: translateY(-1px);
      -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
      -o-transform: translateY(-1px);
      transform: translateY(-1px); }
      .pill label > .help:hover {
        background-color: rgba(0, 0, 0, 0.1); }
    .pill label > .checkbox {
      display: inline-block;
      width: 12px;
      height: 12px;
      border: 1px solid #8f928b; }
      .pill label > .checkbox.active {
        background-color: #8f928b; }
    .pill label.active .arrow::before {
      border-bottom-color: transparent;
      border-top-color: #c42032;
      -webkit-transform: translateY(18px);
      -moz-transform: translateY(18px);
      -ms-transform: translateY(18px);
      -o-transform: translateY(18px);
      transform: translateY(18px); }
  .pill.red {
    background-color: #c42032;
    color: white; }

.list {
  position: absolute;
  background: white;
  border-radius: 8px;
  top: -2px; }
  .list.panel {
    width: 269px;
    webkit-box-shadow: 5px 5px 10px -2px rgba(100, 100, 100, 0.6);
    -moz-box-shadow: 5px 5px 10px -2px rgba(100, 100, 100, 0.6);
    box-shadow: 5px 5px 10px -2px rgba(100, 100, 100, 0.6); }
  .list.grid {
    width: 200px;
    webkit-box-shadow: 2px 2px 5px black;
    -moz-box-shadow: 2px 2px 5px black;
    box-shadow: 2px 2px 5px black; }
  .list.notes {
    width: 110px; }
    .list.notes .icon {
      width: 65px;
      height: 87px;
      padding: 10px;
      margin: 0 auto; }
    .list.notes label {
      text-align: center; }
  .list:not(.open) {
    opacity: 0;
    pointer-events: none; }

.btn {
  background-color: #c42032;
  border: 1px solid #796c6c;
  border-radius: 3px;
  cursor: pointer; }
  .btn > label {
    display: block;
    position: absolute;
    color: #796c6c;
    font-size: 12px;
    width: inherit;
    height: inherit;
    cursor: inherit;
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
    transform: translateY(-70%); }
  .btn.close {
    background-color: white;
    display: block;
    position: absolute;
    width: 26px;
    height: 26px; }

[data-browser="support"] .pill .list:not(.open) {
  display: none; }

/**
 *  wrapper.scss
 *
 *  @package   app/plan/beazer/styles/shared
 *  @author    Fernando Salazar <fernando@blufish.com>
 *  @since     Tuesday, August 16, 2016
 */
html, body {
  height: 100%; }
  @media screen and (max-width: 1049px) and (orientation: landscape) {
    html, body {
      min-height: initial; } }

#wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative; }
  #wrapper #transport {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.001); }
  #wrapper #loading {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 9999;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #wrapper #loading .wheel {
      width: 60px;
      height: 60px;
      position: absolute;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(../images/icons/loading-wheel.gif); }
  #wrapper:not([data-state="loading"]) #loading {
    display: none; }

/**
 *  sidebar.scss
 *
 *  @package   beazer/app/styles
 *  @author    Fernando Salazar <fernando@blufish.com>
 *  @since     Tue, Aug 16, 2016
 */
.sidebar {
  position: absolute;
  top: 0;
  background-color: #e9e9e9;
  width: 215px;
  height: 100%; }
  .sidebar .pill {
    margin: 20px 10px 0 10px;
    cursor: pointer;
    webkit-box-shadow: 5px 5px 10px -2px rgba(100, 100, 100, 0.6);
    -moz-box-shadow: 5px 5px 10px -2px rgba(100, 100, 100, 0.6);
    box-shadow: 5px 5px 10px -2px rgba(100, 100, 100, 0.6); }
  .sidebar .row {
    text-align: center;
    margin-top: 20px; }
    .sidebar .row .btn {
      display: inline-block;
      width: 50px;
      height: 43px;
      margin: 0 10px; }
  .sidebar .list.panel {
    border: 2px solid #796c6c;
    border-color: #8f928b;
    -webkit-transition: opacity 0.21s;
    -moz-transition: opacity 0.21s;
    -o-transition: opacity 0.21s;
    transition: opacity 0.21s; }
    .sidebar .list.panel li label {
      display: block;
      padding: 10px 13px;
      font-size: 12pt;
      border-bottom: 1px solid #8f928b; }
      .sidebar .list.panel li label > .checkbox {
        margin-right: 5px;
        pointer-events: none; }
    .sidebar .list.panel li.active label > .checkbox {
      background-color: #796c6c; }
    .sidebar .list.panel li.disabled {
      display: none; }
    .sidebar .list.panel li.locked {
      opacity: 0.3; }
  .sidebar .list.grid {
    -webkit-transition: opacity 0.21s;
    -moz-transition: opacity 0.21s;
    -o-transition: opacity 0.21s;
    transition: opacity 0.21s; }
    .sidebar .list.grid ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
    .sidebar .list.grid > ul > li {
      width: 33%;
      height: 90px;
      display: inline-block;
      vertical-align: top; }
      .sidebar .list.grid > ul > li img {
        max-width: 60px;
        height: 50px;
        margin: 0 auto;
        pointer-events: none; }
      .sidebar .list.grid > ul > li label {
        display: block;
        text-align: center;
        font-size: 12px; }
  .sidebar .list.msg {
    background-color: white;
    border: 2px solid #796c6c;
    border-color: #8f928b;
    border-radius: 6px;
    box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.4);
    padding: 40px 20px 20px 20px;
    font-size: 12px;
    font-weight: bold;
    color: #8f928b;
    cursor: default;
    -webkit-transition: opacity 0.21s;
    -moz-transition: opacity 0.21s;
    -o-transition: opacity 0.21s;
    transition: opacity 0.21s; }
    .sidebar .list.msg .btn.close {
      margin-top: -32px;
      right: 10px;
      border-color: #8f928b;
      background-image: url(../images/icons/close-x.jpg);
      background-position: center center;
      background-repeat: no-repeat; }

/**
 * stage.scss
 *
 * @package  src/mod-stage/styles
 * @author   Fernando Salazar <fernando@blufish.com>
 * @since    Tue, Aug 16, 2016
 */
#stage {
  position: absolute;
  overflow: hidden;
  margin-left: 215px;
  width: calc(100% - 215px);
  height: 100%;
  background-color: white;
  z-index: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: width 0.21s, margin-left 0.21s;
  -moz-transition: width 0.21s, margin-left 0.21s;
  -o-transition: width 0.21s, margin-left 0.21s;
  transition: width 0.21s, margin-left 0.21s; }
  #stage .stages,
  #stage .stage {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden; }
  #stage .stage > .container {
    position: inherit;
    -webkit-transform-origin: 0px 0px;
    -moz-transform-origin: 0px 0px;
    -ms-transform-origin: 0px 0px;
    -o-transform-origin: 0px 0px;
    transform-origin: 0px 0px; }
    #stage .stage > .container.transition {
      -webkit-transition: -webkit-transform 0.21s;
      -moz-transition: -moz-transform 0.21s;
      -o-transition: -o-transform 0.21s;
      transition: transform 0.21s; }
  #stage .item {
    position: inherit; }
    #stage .item > .holder {
      width: 100%;
      height: 100%;
      position: inherit; }
      #stage .item > .holder img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%; }
      #stage .item > .holder .rotator {
        position: inherit;
        width: 42px;
        height: 42px;
        right: -42px;
        bottom: -42px; }
  #stage .item.floors,
  #stage .item.options,
  #stage .item.labels {
    pointer-events: none; }
  #stage .item.labels.opt {
    color: white; }
  #stage .item.labels.highlight {
    color: black; }
    #stage .item.labels.highlight.choice {
      color: black; }
  #stage .item.labels .label {
    white-space: nowrap; }
    #stage .item.labels .label[data-lib='Arial-Bold'] {
      font-weight: bold; }
  #stage .item.components,
  #stage .item.notes {
    pointer-events: auto;
    cursor: pointer;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center; }
  #stage .item.components {
    -webkit-transition: background-color 0.21s;
    -moz-transition: background-color 0.21s;
    -o-transition: background-color 0.21s;
    transition: background-color 0.21s; }
    #stage .item.components img {
      -webkit-transition: opacity 0.21s;
      -moz-transition: opacity 0.21s;
      -o-transition: opacity 0.21s;
      transition: opacity 0.21s; }
    #stage .item.components.active .holder {
      background-color: rgba(196, 32, 50, 0.5); }
    #stage .item.components.active img:not(.rotator) {
      opacity: 0.7; }
  #stage .item.notes .holder {
    width: auto;
    height: auto; }
  #stage .item.notes .noteContent {
    font-size: 12px;
    font-family: monospace;
    color: #000;
    position: absolute;
    width: 320px;
    min-height: 90px;
    height: 100px;
    bottom: 41px;
    left: -148px;
    padding: 5px 10px;
    background-color: #f7f7f7;
    border: 2px solid #ccc;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
    resize: none;
    overflow-x: none;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal; }
  #stage .item.notes .noteIcon {
    width: 34px;
    height: 34px;
    background-color: #0177a7;
    background-image: url(../images/icons/pencil.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    border-radius: 50%; }
    #stage .item.notes .noteIcon::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-right: 2px solid #ccc;
      border-bottom: 2px solid #ccc;
      background-color: #f7f7f7;
      z-index: 1;
      -webkit-transform: translate(7px, -18px) rotate(45deg);
      -moz-transform: translate(7px, -18px) rotate(45deg);
      -ms-transform: translate(7px, -18px) rotate(45deg);
      -o-transform: translate(7px, -18px) rotate(45deg);
      transform: translate(7px, -18px) rotate(45deg); }
  #stage .zoom {
    position: absolute;
    width: 350px;
    height: 30px;
    left: calc(50% - 175px);
    bottom: 20px;
    z-index: 999; }
    #stage .zoom .control {
      width: 20px;
      height: 20px;
      position: absolute;
      top: 5px;
      cursor: pointer;
      pointer-events: auto;
      background-repeat: no-repeat;
      background-position: center center; }
      #stage .zoom .control.in {
        left: 0;
        cursor: zoom-out;
        background-image: url(../images/icons/toolbar-zoomout.gif); }
      #stage .zoom .control.out {
        right: 0;
        cursor: zoom-in;
        background-image: url(../images/icons/toolbar-zoomin.gif); }
    #stage .zoom .wrap {
      width: 280px;
      margin-left: 35px;
      position: absolute; }
      #stage .zoom .wrap .bar {
        border-radius: 5px;
        border: 1px solid #796c6c;
        margin-top: 5px;
        height: 20px;
        background-color: white;
        overflow: hidden; }
        #stage .zoom .wrap .bar .fill {
          background-color: #c42032;
          width: 50%;
          height: 20px; }
      #stage .zoom .wrap .head {
        position: absolute;
        left: 50%;
        top: 0;
        width: 15px;
        height: 30px;
        border-radius: 5px;
        border: 1px solid #796c6c;
        background-color: white;
        cursor: ew-resize;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        transform: translateX(-15px); }
    #stage .zoom.transition .fill {
      -webkit-transition: width 0.21s;
      -moz-transition: width 0.21s;
      -o-transition: width 0.21s;
      transition: width 0.21s; }
    #stage .zoom.transition .head {
      -webkit-transition: left 0.21s;
      -moz-transition: left 0.21s;
      -o-transition: left 0.21s;
      transition: left 0.21s; }
  #stage[data-render='transform'] .rotator {
    visibility: hidden; }
  #stage.flip .item.floors,
  #stage.flip .item.options,
  #stage.flip .item.components,
  #stage.flip .item.notes {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1); }

#wrapper[data-state='clean'] #stage {
  width: 100%;
  margin-left: 0; }

#wrapper[data-state='action']:not([data-version='2.0']) #stage {
  margin-left: 0; }

#wrapper[data-version='2.0'] #stage .item > .holder .rotator,
#wrapper[data-version='2.0'] #stage .zoom {
  display: none; }

/**
 * actions.scss
 *
 * @package   beazer/mod-actions/styles
 * @author    Fernando Salazar <fernando@blufish.com>
 * @since     Tue, Aug 16, 2016
 */
#actions {
  right: 0;
  z-index: 5;
  -webkit-transform: translateX(215px);
  -moz-transform: translateX(215px);
  -ms-transform: translateX(215px);
  -o-transform: translateX(215px);
  transform: translateX(215px);
  -webkit-transition: -webkit-transform 0.21s;
  -moz-transition: -moz-transform 0.21s;
  -o-transition: -o-transform 0.21s;
  transition: transform 0.21s; }
  #actions .contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    #actions .contain .pill .list {
      margin-left: -8px;
      left: -269px; }
    #actions .contain .pill {
      border-width: 1px;
      font-size: 13px;
      margin-top: 10px;
      margin-left: 15px;
      margin-right: 15px;
      webkit-box-shadow: 2px 2px 2px -1px black;
      -moz-box-shadow: 2px 2px 2px -1px black;
      box-shadow: 2px 2px 2px -1px black; }
      #actions .contain .pill > label {
        padding: 5px 8px; }
        #actions .contain .pill > label .icon {
          display: inline-block;
          width: 35px;
          height: 35px;
          background-repeat: no-repeat;
          background-position: center center; }
        #actions .contain .pill > label .iconLabel {
          display: inline-block;
          position: absolute;
          top: 15px;
          left: 50px; }
        #actions .contain .pill > label[data-target='notes'] .icon {
          background-image: url(../images/icons/notes.png); }
        #actions .contain .pill > label[data-target='beds'] .icon {
          background-image: url(../images/icons/furniture-beds.png); }
        #actions .contain .pill > label[data-target='sofas'] .icon {
          background-image: url(../images/icons/furniture-sofas.png); }
        #actions .contain .pill > label[data-target='dining'] .icon {
          background-image: url(../images/icons/furniture-dining.png); }
        #actions .contain .pill > label[data-target='tables'] .icon {
          background-image: url(../images/icons/furniture-tables.png); }
        #actions .contain .pill > label[data-target='dressers'] .icon {
          background-image: url(../images/icons/furniture-dressers.png); }
        #actions .contain .pill > label[data-target='rugs'] .icon {
          background-image: url(../images/icons/furniture-rugs.png); }
        #actions .contain .pill > label[data-target='plants'] .icon {
          background-image: url(../images/icons/furniture-plants.png); }
      #actions .contain .pill.red {
        margin-left: 33px;
        margin-right: 33px;
        text-transform: uppercase;
        font-size: 20px;
        webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none; }
        #actions .contain .pill.red label {
          margin-left: 0;
          text-align: center;
          padding-top: 10px;
          padding-bottom: 10px;
          font-size: 18px; }
    #actions .contain .row {
      margin-top: 36px; }
      #actions .contain .row label {
        font-size: 16px;
        -webkit-transform: translateY(-85%);
        -moz-transform: translateY(-85%);
        -ms-transform: translateY(-85%);
        -o-transform: translateY(-85%);
        transform: translateY(-85%); }
      #actions .contain .row [data-target='reset'] {
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../images/icons/toolbar-reset.png); }
  #actions .lists {
    position: absolute;
    width: 269px;
    left: -269px;
    top: 130px; }
    #actions .lists .list.grid {
      right: 0; }
    #actions .lists .list.notes {
      right: 0; }
      #actions .lists .list.notes .icon {
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../images/icons/notes-big.png); }
      #actions .lists .list.notes label {
        border-bottom: none; }
  #actions[data-route='default'] .contain:not(.default),
  #actions[data-route='components'] .contain:not(.component),
  #actions[data-route='notes'] .contain:not(.note) {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(215px);
    -moz-transform: translateX(215px);
    -ms-transform: translateX(215px);
    -o-transform: translateX(215px);
    transform: translateX(215px); }
  #actions .header {
    margin: 10px 0;
    font-size: 15px;
    color: #796c6c;
    text-align: center; }
  #actions .footer {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 215px;
    text-align: center; }
    #actions .footer .button {
      display: inline-block;
      width: 50px; }
      #actions .footer .button label {
        display: block;
        font-size: 10px;
        color: #796c6c;
        text-align: center;
        padding-bottom: 2px; }
      #actions .footer .button .icon {
        height: 50px;
        border-radius: 5px;
        background-color: #796c6c;
        background-repeat: no-repeat;
        background-position: center center;
        cursor: pointer;
        margin: 0; }
      #actions .footer .button[data-target='view-comps'] .icon {
        background-image: url(../images/icons/furniture.png); }
      #actions .footer .button[data-target='reset-size'] .icon {
        background-image: url(../images/icons/toolbar-reset.png); }
      #actions .footer .button[data-target='delete'] .icon {
        background-image: url(../images/icons/icon-trash.gif); }

#wrapper[data-state='action'] #actions {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px); }

/**
 * dial.scss
 *
 * @package  src/mod-actions/styles
 * @author  Fernando Salazar
 */
.dial {
  width: 100%;
  height: 215px;
  cursor: default; }
  .dial .disc {
    margin: 10px auto;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    z-index: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    background: rgba(255, 255, 255, 0.5);
    background: -webkit-radial-gradient(50% 0%, 8% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -webkit-radial-gradient(50% 100%, 12% 50%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%), -webkit-radial-gradient(0% 50%, 50% 7%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -webkit-radial-gradient(100% 50%, 50% 5%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -webkit-repeating-radial-gradient(50% 50%, 100% 100%, transparent 0%, transparent 3%, rgba(0, 0, 0, 0.1) 3.5%), -webkit-repeating-radial-gradient(50% 50%, 100% 100%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 7.5%), -webkit-repeating-radial-gradient(50% 50%, 100% 100%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1.2%, rgba(255, 255, 255, 0.2) 2.2%), -webkit-radial-gradient(50% 50%, 200% 50%, #e5e5e5 5%, #d9d9d9 30%, #999 100%);
    background: radial-gradient(50% 0%, 8% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(50% 100%, 12% 50%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(0% 50%, 50% 7%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100% 50%, 50% 5%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), repeating-radial-gradient(50% 50%, 100% 100%, transparent 0%, transparent 3%, rgba(0, 0, 0, 0.1) 3.5%), repeating-radial-gradient(50% 50%, 100% 100%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 7.5%), repeating-radial-gradient(50% 50%, 100% 100%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1.2%, rgba(255, 255, 255, 0.2) 2.2%), radial-gradient(50% 50%, 200% 50%, #e5e5e5 5%, #d9d9d9 30%, #999 100%);
    -webkit-box-shadow: 0 0 5px 5px #000;
    -moz-box-shadow: 0 0 5px 5px #000;
    box-shadow: 0 0 5px 5px #000; }
  .dial .disc::after {
    display: block;
    content: '';
    width: 6px;
    height: 20px;
    border-radius: 5px;
    position: relative;
    left: 57px;
    top: 5px;
    cursor: pointer;
    background: #d1cec5;
    background: -moz-linear-gradient(left, #b61f2a 0%, #d1cec5 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b61f2a), color-stop(100%, #d1cec5));
    background: -webkit-linear-gradient(left, #b61f2a 0%, #d1cec5 100%);
    background: -o-linear-gradient(left, #b61f2a 0%, #d1cec5 100%);
    background: -ms-linear-gradient(left, #b61f2a 0%, #d1cec5 100%);
    background: linear-gradient(to right, #b61f2a 0%, #d1cec5 100%); }
  .dial .rotate {
    width: 100%;
    margin-top: 25px; }
    .dial .rotate .label {
      margin: 0 auto;
      width: 50%;
      color: #796c6c;
      text-align: center;
      font-size: 40px; }
  .dial .arrow {
    width: 24px;
    height: 27px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 15px;
    cursor: pointer; }
    .dial .arrow.right {
      float: right;
      background-image: url(../images/icons/rotate-left.png);
      margin-right: 10px; }
    .dial .arrow.left {
      float: left;
      background-image: url(../images/icons/rotate-right.png);
      margin-left: 10px; }

#wrapper[data-version='2.0'] .dial {
  margin-bottom: 70px;
  height: auto; }
  #wrapper[data-version='2.0'] .dial .fontSize {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #999; }
    #wrapper[data-version='2.0'] .dial .fontSize .control {
      display: inline-block;
      width: 17px;
      height: 17px;
      opacity: 0.6;
      background-repeat: no-repeat;
      background-position: center center;
      cursor: pointer;
      -webkit-transform: translateY(4px);
      -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
      -o-transform: translateY(4px);
      transform: translateY(4px);
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%); }
      #wrapper[data-version='2.0'] .dial .fontSize .control:hover {
        opacity: 1; }
      #wrapper[data-version='2.0'] .dial .fontSize .control[data-target='decrease-font'] {
        background-image: url(../images/icons/minus.svg);
        margin-right: 22px; }
      #wrapper[data-version='2.0'] .dial .fontSize .control[data-target='increase-font'] {
        background-image: url(../images/icons/plus.svg);
        margin-left: 22px; }
  #wrapper[data-version='2.0'] .dial .rotate {
    width: 180px;
    margin-left: auto;
    margin-right: auto; }
    #wrapper[data-version='2.0'] .dial .rotate .label {
      color: #000;
      width: 60px;
      height: 50px;
      border: 1px solid #ccc;
      text-align: center;
      font-size: 16px;
      padding-top: 14px; }
      #wrapper[data-version='2.0'] .dial .rotate .label::after {
        display: inline;
        content: '\00b0'; }
  #wrapper[data-version='2.0'] .dial .discHolder {
    position: relative; }
    #wrapper[data-version='2.0'] .dial .discHolder::before, #wrapper[data-version='2.0'] .dial .discHolder::after {
      content: '';
      display: block;
      position: absolute;
      top: 10px;
      width: 20px;
      height: 100px;
      background-image: url(../images/icons/disc-arc.svg);
      background-repeat: no-repeat;
      background-position: center center; }
    #wrapper[data-version='2.0'] .dial .discHolder::before {
      left: 68px;
      -webkit-transform: scale(-1);
      -moz-transform: scale(-1);
      -ms-transform: scale(-1);
      -o-transform: scale(-1);
      transform: scale(-1); }
    #wrapper[data-version='2.0'] .dial .discHolder::after {
      right: 68px; }
    #wrapper[data-version='2.0'] .dial .discHolder .disc {
      background: #fff;
      webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
      box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2); }
    #wrapper[data-version='2.0'] .dial .discHolder .disc::after {
      width: 10px;
      height: 10px;
      background: #000;
      border-radius: 50%;
      webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }
  #wrapper[data-version='2.0'] .dial .arrow {
    background-image: url(../images/icons/turn-right.svg);
    width: 17px;
    height: 20px; }
    #wrapper[data-version='2.0'] .dial .arrow.right {
      -webkit-transform: scaleX(-1);
      -moz-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      transform: scaleX(-1); }
  #wrapper[data-version='2.0'] .dial .title {
    text-align: center;
    color: #999;
    font-size: 15px; }

/**
 * numpad.scss
 *
 * @package  src/mod-actions/styles
 * @author  Fernando Salazar
 */
.numpad {
  background-color: #b71e2f;
  position: absolute;
  left: -200px;
  top: 50px;
  width: 200px;
  height: 260px;
  box-shadow: -3px 1px 6px rgba(0, 0, 0, 0.8); }
  .numpad .pad {
    padding: 12px;
    height: 260px; }
  .numpad table {
    border-spacing: 6px; }
  .numpad td {
    background-color: white;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    font-size: 16px;
    cursor: pointer; }
    .numpad td:hover {
      font-weight: bold; }
  .numpad footer {
    height: 70px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    padding: 12px;
    display: none; }
  .numpad:not(.active) {
    display: none; }
  .numpad.error {
    height: 330px; }
    .numpad.error footer {
      display: block; }

#wrapper[data-version='2.0'] .numpad {
  left: 320px; }

/**
 *  actions-edit-component.scss
 *
 *  @package   beazer/mod-actions/styles
 *  @author    James Gov <james@blufish.com>
 *  @since     Tue, Oct 25, 2016
 */
#actions .contain.component .holder {
  padding: 10px; }

#actions .contain.component hr {
  margin: 15px 0; }

#actions .contain.component .options {
  padding-left: 50px;
  width: 100%;
  margin: 5px 0; }
  #actions .contain.component .options .label {
    display: inline-block;
    font-size: 12px;
    color: #796c6c;
    white-space: nowrap;
    text-transform: uppercase;
    margin: 10px 4px; }
  #actions .contain.component .options .pill {
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #796c6c;
    margin: 0;
    webkit-box-shadow: 5px 5px 8px #796c6c;
    -moz-box-shadow: 5px 5px 8px #796c6c;
    box-shadow: 5px 5px 8px #796c6c; }
    #actions .contain.component .options .pill .val {
      display: block;
      padding: 10px 20px;
      text-align: center;
      font-weight: bold;
      font-size: 18px;
      width: 92px;
      border: 0;
      background-color: transparent;
      color: #796c6c; }
      #actions .contain.component .options .pill .val.active {
        background-color: #796c6c;
        color: #b61f2a; }

/**
 *  actions-edit-component.scss
 *
 *  @package   beazer/mod-actions/styles
 *  @author    James Gov <james@blufish.com>
 *  @since     Tue, Oct 25, 2016
 */
#actions .contain.note .holder {
  padding: 10px; }
  #actions .contain.note .holder hr {
    margin: 15px 0; }
  #actions .contain.note .holder textarea {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    margin-bottom: 10px;
    resize: none; }
  #actions .contain.note .holder .scale {
    width: 100%;
    margin: 5px 0; }
    #actions .contain.note .holder .scale .label {
      width: 100%;
      font-size: 12px;
      color: #796c6c;
      text-align: center;
      text-transform: uppercase;
      margin: 10px 0px; }
    #actions .contain.note .holder .scale .slider {
      position: relative; }
      #actions .contain.note .holder .scale .slider .track {
        height: 5px;
        background-color: #c42032;
        margin: 0 20px; }
      #actions .contain.note .holder .scale .slider .head {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #c42032;
        margin: -12px 0 0 20px;
        cursor: ew-resize;
        left: 0px; }

/**
 * sidebar.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
#sidebar {
  background-color: #fff;
  width: 301px;
  height: 100%;
  border: 1px solid #bbb;
  z-index: 4;
  position: relative; }
  #sidebar .content {
    display: none;
    padding: 0 10px; }
  #sidebar[data-scene='options'] .navOpt.options {
    background: #c42032;
    color: white; }
    #sidebar[data-scene='options'] .navOpt.options::before {
      -webkit-filter: invert(100%);
      filter: invert(100%); }
    #sidebar[data-scene='options'] .navOpt.options::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-top: 10px solid #c42032;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      -webkit-transform: translate(40px, 88px);
      -moz-transform: translate(40px, 88px);
      -ms-transform: translate(40px, 88px);
      -o-transform: translate(40px, 88px);
      transform: translate(40px, 88px); }
  #sidebar[data-scene='options'] .content.options {
    display: block; }
  #sidebar[data-scene='furniture'] .navOpt.furniture {
    background: #c42032;
    color: white; }
    #sidebar[data-scene='furniture'] .navOpt.furniture::before {
      -webkit-filter: invert(100%);
      filter: invert(100%); }
    #sidebar[data-scene='furniture'] .navOpt.furniture::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-top: 10px solid #c42032;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      -webkit-transform: translate(40px, 88px);
      -moz-transform: translate(40px, 88px);
      -ms-transform: translate(40px, 88px);
      -o-transform: translate(40px, 88px);
      transform: translate(40px, 88px); }
  #sidebar[data-scene='furniture'] .content.furniture {
    display: block; }
  #sidebar[data-scene='notes'] .navOpt.notes {
    background: #c42032;
    color: white; }
    #sidebar[data-scene='notes'] .navOpt.notes::before {
      -webkit-filter: invert(100%);
      filter: invert(100%); }
    #sidebar[data-scene='notes'] .navOpt.notes::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-top: 10px solid #c42032;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      -webkit-transform: translate(40px, 88px);
      -moz-transform: translate(40px, 88px);
      -ms-transform: translate(40px, 88px);
      -o-transform: translate(40px, 88px);
      transform: translate(40px, 88px); }
  #sidebar[data-scene='notes'] .content.notes {
    display: block; }
  #sidebar .btnBar {
    text-transform: uppercase;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    padding: 14px;
    margin: 5px 0;
    color: #c42032;
    cursor: pointer; }
    #sidebar .btnBar.filled {
      background-color: #c42032;
      color: white; }
    #sidebar .btnBar.border {
      border: 1px solid #ccc; }

/**
 * sidebar-nav.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
#sidebar nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  #sidebar nav .navOpt {
    background-color: #f1f1f1;
    border-left: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    width: 101px;
    height: 90px;
    cursor: pointer;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    line-height: 14px;
    font-size: 16px;
    position: relative; }
    #sidebar nav .navOpt:first-child {
      border-left: none; }
    #sidebar nav .navOpt::before {
      content: '';
      display: block;
      height: 17px;
      margin-bottom: 10px;
      margin-top: 4px;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: contain; }
    #sidebar nav .navOpt.options::before {
      background-image: url(../images/icons/sidebar-options.svg); }
    #sidebar nav .navOpt.furniture::before {
      background-image: url(../images/icons/sidebar-furniture.svg); }
    #sidebar nav .navOpt.notes::before {
      background-image: url(../images/icons/sidebar-notes.svg); }

/**
 * sidebar-components.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
#sidebar .content.furniture {
  position: relative; }
  #sidebar .content.furniture[data-scene='edit'] .viewer {
    display: none; }
  #sidebar .content.furniture[data-scene='viewer'] .editor {
    display: none; }
  #sidebar .content.furniture .header {
    font-size: 18px;
    margin: 15px 0;
    color: #000; }
  #sidebar .content.furniture b {
    font-size: 13px; }
  #sidebar .content.furniture .dimensions {
    margin: 5px 0 15px 0; }
  #sidebar .content.furniture hr {
    border-top: 1px solid #ccc;
    margin: 15px 0; }
  #sidebar .content.furniture .slide {
    position: relative;
    border-bottom: 2px solid #e9e9e9; }
    #sidebar .content.furniture .slide header {
      font-size: 20px;
      padding: 20px 20px 20px 10px;
      color: #333;
      cursor: pointer; }
      #sidebar .content.furniture .slide header:hover {
        color: #222; }
      #sidebar .content.furniture .slide header::after {
        content: '';
        display: block;
        float: right;
        width: 16px;
        height: 16px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain; }
    #sidebar .content.furniture .slide.active header::after {
      background-image: url(../images/icons/minus.svg); }
    #sidebar .content.furniture .slide:not(.active) header::after {
      background-image: url(../images/icons/plus.svg); }
    #sidebar .content.furniture .slide .list {
      position: relative;
      display: none;
      padding-bottom: 15px; }
      #sidebar .content.furniture .slide .list li {
        display: inline-block;
        width: 33.3%;
        text-align: center;
        margin-bottom: 10px; }
      #sidebar .content.furniture .slide .list img {
        margin-left: 7px; }
      #sidebar .content.furniture .slide .list label {
        display: block;
        text-align: center;
        color: #796c6c; }
    #sidebar .content.furniture .slide:first-child .list {
      display: block; }
  #sidebar .content.furniture .options {
    display: inline-block; }
    #sidebar .content.furniture .options .label {
      text-transform: uppercase;
      font-size: 10px;
      color: #796c6c;
      margin: 5px 4px; }
    #sidebar .content.furniture .options .textInput {
      width: 112px;
      padding: 15px 30px;
      font-size: 18px;
      font-weight: bold;
      border: 1px solid #ccc;
      color: #ccc;
      text-align: left; }
  #sidebar .content.furniture .x {
    display: inline-block;
    margin: 0 10px;
    color: #ccc;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); }
  #sidebar .content.furniture .fontSize {
    display: none; }
  #sidebar .content.furniture .dial {
    margin-bottom: 60px; }

/**
 * sidebar-options.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
#sidebar .content.options {
  position: relative;
  padding: 0; }
  #sidebar .content.options .panel {
    border-bottom: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px; }
    #sidebar .content.options .panel:last-child {
      border-bottom: none; }
    #sidebar .content.options .panel.active header::after {
      background-image: url(../images/icons/minus.svg); }
    #sidebar .content.options .panel:not(.active) header::after {
      background-image: url(../images/icons/plus.svg); }
  #sidebar .content.options header {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 2px;
    cursor: pointer; }
    #sidebar .content.options header .underline {
      display: inline-block;
      border-bottom: 1px dotted rgba(0, 0, 0, 0.5); }
      #sidebar .content.options header .underline:hover .desc {
        display: block; }
    #sidebar .content.options header .desc {
      position: absolute;
      display: none;
      width: 400px;
      transform: translate(-40px, -130px);
      background: #f7f7f7;
      box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
      font-weight: 300;
      font-size: 15px;
      padding: 15px;
      z-index: 10; }
      #sidebar .content.options header .desc::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 15px solid #f7f7f7;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translate(180px, 13px); }
    #sidebar .content.options header::before, #sidebar .content.options header::after {
      transform: translateY(6px);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: contain;
      content: ''; }
    #sidebar .content.options header::before {
      display: inline-block;
      width: 24px;
      height: 24px; }
    #sidebar .content.options header::after {
      display: block;
      width: 16px;
      height: 16px;
      float: right; }
    #sidebar .content.options header[data-target='choice-options']::before {
      background-image: url(../images/icons/choice-options.svg); }
    #sidebar .content.options header[data-target='paid-options'] .desc {
      width: 270px; }
      #sidebar .content.options header[data-target='paid-options'] .desc::after {
        -webkit-transform: translate(120px, 13px);
        -moz-transform: translate(120px, 13px);
        -ms-transform: translate(120px, 13px);
        -o-transform: translate(120px, 13px);
        transform: translate(120px, 13px); }
    #sidebar .content.options header[data-target='paid-options']::before {
      background-image: url(../images/icons/paid-options.svg); }
  #sidebar .content.options li {
    display: block;
    color: #333;
    font-size: 15px;
    padding: 4px 5px;
    cursor: pointer; }
    #sidebar .content.options li label {
      cursor: inherit; }
    #sidebar .content.options li.disabled {
      display: none; }
    #sidebar .content.options li.active .checkbox::before {
      content: '';
      display: block;
      width: 14px;
      height: 7px;
      border-bottom: 3px solid #c42032;
      border-left: 3px solid #c42032;
      -webkit-transform: rotate(-45deg) translate(-1px, 4px);
      -moz-transform: rotate(-45deg) translate(-1px, 4px);
      -ms-transform: rotate(-45deg) translate(-1px, 4px);
      -o-transform: rotate(-45deg) translate(-1px, 4px);
      transform: rotate(-45deg) translate(-1px, 4px); }
  #sidebar .content.options .checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    margin-right: 4px;
    vertical-align: top;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px); }
  #sidebar .content.options .text {
    width: 220px;
    display: inline-block;
    line-height: 18px;
    vertical-align: top;
    font-weight: 300; }

/**
 * sidebar-notes.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
#sidebar .content.notes {
  position: relative; }
  #sidebar .content.notes .dial,
  #sidebar .content.notes .btnBar {
    -webkit-transition: opacity 0.15s ease-in;
    -moz-transition: opacity 0.15s ease-in;
    -o-transition: opacity 0.15s ease-in;
    transition: opacity 0.15s ease-in; }
  #sidebar .content.notes:not(.active) .dial,
  #sidebar .content.notes:not(.active) .btnBar {
    opacity: 0.5;
    pointer-events: none; }
  #sidebar .content.notes .bubble {
    display: inline-block;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 12px;
    margin: 15px 0;
    border-radius: 13px;
    webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2); }

/**
 * header.scss
 *
 * @package  src/app-v2/styles
 * @author  Fernando Salazar
 */
#header {
  width: calc(100% - 300px);
  height: 52px;
  position: absolute;
  top: 0;
  left: 300px;
  z-index: 3;
  background-color: #fafafa;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between; }
  #header .selector,
  #header .toolbar {
    height: 100%; }
  #header .current,
  #header .selector li {
    padding: 17px 0 17px 14px;
    font-size: 13px;
    cursor: pointer; }
  #header .current {
    position: relative; }
    #header .current::after {
      content: '';
      display: block;
      position: absolute;
      top: 18px;
      right: 14px;
      width: 11px;
      height: 8px;
      background-image: url(../images/icons/arrow-down.gif);
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain; }
  #header .selector.active .current::after {
    background-image: url(../images/icons/arrow-up.gif); }
  #header .selector li:hover {
    background-color: #c42032;
    color: white; }
  #header label {
    cursor: inherit; }
  #header .selector {
    width: 151px;
    border-right: 1px solid #bbb; }
    #header .selector .panel[data-alias='floors'] {
      position: absolute;
      width: inherit;
      top: 0;
      margin-top: 51px;
      background-color: #fafafa;
      border: 1px solid #bbb;
      border-top: none;
      border-left: none; }
    #header .selector:not(.active) .panel {
      display: none; }
  #header .toolbar {
    width: 304px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    #header .toolbar .default {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      #header .toolbar .default .flip,
      #header .toolbar .default .reset,
      #header .toolbar .default .print {
        width: 57px;
        height: 100%;
        text-align: center;
        background-repeat: no-repeat;
        background-position: center center;
        cursor: pointer; }
      #header .toolbar .default .flip {
        background-image: url(../images/icons/toolbar-flip-dark.png); }
        #header .toolbar .default .flip:hover {
          background-image: url(../images/icons/toolbar-flip-red.png); }
          #header .toolbar .default .flip:hover label {
            display: inline-block; }
      #header .toolbar .default .reset {
        background-image: url(../images/icons/toolbar-reset-dark.png); }
        #header .toolbar .default .reset:hover {
          background-image: url(../images/icons/toolbar-reset-red.png); }
          #header .toolbar .default .reset:hover label {
            display: inline-block; }
      #header .toolbar .default .print {
        background-image: url(../images/icons/toolbar-print-dark.png); }
        #header .toolbar .default .print:hover {
          background-image: url(../images/icons/toolbar-print-red.png); }
          #header .toolbar .default .print:hover label {
            display: inline-block; }
    #header .toolbar .zoom {
      width: 121px;
      border-left: 1px solid #bbb;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      #header .toolbar .zoom .zoomin,
      #header .toolbar .zoom .zoomout {
        width: 60px;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        cursor: pointer; }
      #header .toolbar .zoom .zoomin {
        background-image: url(../images/icons/toolbar-zoomout.gif); }
        #header .toolbar .zoom .zoomin::after {
          content: '';
          display: block;
          width: 1px;
          height: 28px;
          background-color: #999;
          margin-top: 11px; }
        #header .toolbar .zoom .zoomin:hover {
          background-image: url(../images/icons/toolbar-zoomout-red.gif); }
      #header .toolbar .zoom .zoomout {
        background-image: url(../images/icons/toolbar-zoomin.gif); }
        #header .toolbar .zoom .zoomout:hover {
          background-image: url(../images/icons/toolbar-zoomin-red.gif); }
    #header .toolbar label {
      background-color: #fafafa;
      font-size: 12px;
      padding: 1px 3px 0 3px;
      color: #999;
      text-align: center;
      display: none;
      -webkit-transform: translateY(-2px);
      -moz-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
      -o-transform: translateY(-2px);
      transform: translateY(-2px); }

/**
 * nav.scss
 *
 * @package   src/mod-nav/styles
 * @author    Fernando Salazar <fernando@blufish.com>
 * @since     Tue, Aug 16, 2016
 */
#nav {
  left: 0;
  z-index: 4;
  -webkit-transition: -webkit-transform 0.21s;
  -moz-transition: -moz-transform 0.21s;
  -o-transition: -o-transform 0.21s;
  transition: transform 0.21s; }
  #nav .hamburgers {
    position: absolute;
    left: 225px;
    top: 20px;
    -webkit-transition: opacity 0.21s;
    -moz-transition: opacity 0.21s;
    -o-transition: opacity 0.21s;
    transition: opacity 0.21s; }
    #nav .hamburgers .hamburger {
      width: 24px;
      height: 25px;
      background: #c42032;
      border-radius: 5px;
      margin-bottom: 10px;
      background-repeat: no-repeat;
      background-position: center center; }
      #nav .hamburgers .hamburger[data-target="toggle"] {
        background-image: url(../images/icons/toolbar-menu.gif); }
      #nav .hamburgers .hamburger[data-target="reset"] {
        background-image: url(../images/icons/toolbar-reset.png); }
      #nav .hamburgers .hamburger[data-target="print"] {
        background-image: url(../images/icons/toolbar-print.gif); }
  #nav .pill.disabled {
    display: none; }
  #nav .pill > .list.panel {
    margin-right: -8px;
    right: -269px; }
  #nav .pill > .list.msg {
    width: 200px;
    margin-right: -8px;
    right: -210px; }
  #nav footer {
    position: absolute;
    bottom: 10px;
    width: 100%; }
    #nav footer .btn {
      background-repeat: no-repeat;
      background-position: center center; }
      #nav footer .btn[data-target="flip"] {
        background-image: url(../images/icons/toolbar-flip.png); }
      #nav footer .btn[data-target="components"] {
        background-image: url(../images/icons/furniture.png); }
      #nav footer .btn[data-target="print"] {
        background-image: url(../images/icons/toolbar-print.gif); }
      #nav footer .btn[data-target="reset"] {
        background-image: url(../images/icons/toolbar-reset.png); }

#wrapper[data-state="default"] #nav .hamburger[data-target="reset"],
#wrapper[data-state="default"] #nav .hamburger[data-target="print"] {
  display: none; }

#wrapper[data-state="clean"] #nav {
  -webkit-transform: translateX(-215px);
  -moz-transform: translateX(-215px);
  -ms-transform: translateX(-215px);
  -o-transform: translateX(-215px);
  transform: translateX(-215px); }

#wrapper[data-state="action"] #nav {
  -webkit-transform: translateX(-215px);
  -moz-transform: translateX(-215px);
  -ms-transform: translateX(-215px);
  -o-transform: translateX(-215px);
  transform: translateX(-215px); }
  #wrapper[data-state="action"] #nav .hamburgers {
    display: none; }

/**
 *  modal.scss
 *
 *  @package   beazer/mod-modal/styles
 *  @author    Fernando Salazar <fernando@blufish.com>
 *  @since     Mon, Oct 03, 2016
 */
#modal[data-mod='modal'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 501;
  -webkit-transition: opacity 0.21s;
  -moz-transition: opacity 0.21s;
  -o-transition: opacity 0.21s;
  transition: opacity 0.21s; }
  #modal[data-mod='modal']:not(.active) {
    display: none; }
  #modal[data-mod='modal'] .container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column; }
  #modal[data-mod='modal'] .scene {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    width: 400px;
    height: 130px;
    border-radius: 5px;
    border: 1px solid black;
    background-color: white;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: -webkit-transform 0.21s ease-out 0.1s;
    -moz-transition: -moz-transform 0.21s ease-out 0.1s;
    -o-transition: -o-transform 0.21s ease-out 0.1s;
    transition: transform 0.21s ease-out 0.1s; }
    #modal[data-mod='modal'] .scene article {
      position: relative;
      height: 100%; }
    #modal[data-mod='modal'] .scene.showcase {
      height: 490px; }
      #modal[data-mod='modal'] .scene.showcase .progress {
        display: none; }
    #modal[data-mod='modal'] .scene:not(.showcase) .button[data-target='print'],
    #modal[data-mod='modal'] .scene:not(.showcase) .preview {
      display: none; }
  #modal[data-mod='modal'] .progress {
    height: 14px;
    margin: 10px 0;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #8f928b;
    border-radius: 3px;
    overflow: hidden; }
    #modal[data-mod='modal'] .progress .fill {
      background-color: #981927;
      width: 0;
      height: inherit;
      -webkit-transition: width 1s;
      -moz-transition: width 1s;
      -o-transition: width 1s;
      transition: width 1s; }
  #modal[data-mod='modal'] .preview {
    overflow: hidden;
    border: 1px solid #8f928b;
    border-radius: 5px;
    margin: 10px 0 20px 0; }
    #modal[data-mod='modal'] .preview iframe {
      border: none;
      width: 350px;
      height: 310px;
      background-color: transparent;
      padding: 0;
      margin: 0; }
  #modal[data-mod='modal'] .button {
    text-align: center;
    cursor: pointer;
    border: 1px solid #8f928b;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 1px 13px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px; }
    #modal[data-mod='modal'] .button:hover {
      background-color: rgba(0, 0, 0, 0.1); }

body,
p,
div,
span {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 400; }

#stage {
  margin-left: 300px; }

/*# sourceMappingURL=plan.v2.css.map */
