/*
    t-add-color: prints css to set a given font color, background color, etc. for a given colour scheme (depends on parameters).  This function 
    should be called in a loop of all colour schemes in $t-colourschemes with html.colorscheme as the first selector so that every client's colours are set. 

    Sample usage:
    @each $colourscheme in $t-colourschemes {
        html. {
                @include t-add-color($colourscheme, primary-color-A,background-color, 1,1,1,1);
        }
    }

    --Parameters--
    $colourscheme: must be a variable from the list $t-colourschemes as specified at the top of this page
    $color-selected: the chosen variable colour.  The list of available colours is the the first thing you will find below the declaration for the t-add-color function
    $mode: whether to print 'background-color', 'color', etc. Allowed choices:color, background-color, border-color, border-left-color, border-right-color, 
        border-top-color, border-bottom-color
    $tintpercent: create a tint of the chosen colour (i.e. blend with white). 1 is unblended, 0 is white, 0.5 is 50/50, etc.
    $shadepercent: create a shade of the chosen colour (i.e. blend with black).  1 is unblended, 0 is black, 0.5 is 50/50 etc.
    $tonepercent: create a tone of the chosen colour (i.e. blend with grey: rgb(127, 127,127)).  1 is unblended, 0 is grey, 0.5 is 50/50 etc.
    $opacitypercent: change the opacity (i.e. make it partially translucent). 1 is solid, 0 is entirely translucent, 50/50 is half-translucent, etc.  

*/
#animationLocation .time1 {
  content: "8am";
  position: absolute;
  left: 33%;
  top: 100px;
  font-size: 14px;
  color: #4ab8ed;
  font-weight: bold;
  text-shadow: 1px 1px 1px gray; }
#animationLocation .time2 {
  content: "4pm";
  position: absolute;
  left: 67%;
  top: 100px;
  font-size: 14px;
  color: #4ab8ed;
  font-weight: bold;
  text-shadow: 1px 1px 1px gray; }

#tenantDashboardLocation {
  height: 46px;
  margin-left: 10px;
  z-index: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  top: -7px; }

html.custom-color-ute2 #tenantDashboardLocation {
  border-style: solid;
  border-width: 0px;
  /*Beginning of possible choices for "$color-selected":*/
  /*end of possible choices for "$color-selected":*/
  /*Variables used internally*/
  border-color: #005d95; }
html.custom-color-ute2 .small-scene {
  position: absolute;
  height: 46px;
  width: 1140px;
  border-radius: 3px;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-ute2 .scene {
  position: absolute;
  height: 100px;
  width: 100%;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-ute2 .small-scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-ute2 .small-scene .ground {
    opacity: 0.2;
    height: 100%;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: #00acc8;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-ute2 .small-scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-ute2 .small-scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-ute2 .small-scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-ute2 .small-scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-ute2 .small-scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #00758d;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 15px solid; }
      html.custom-color-ute2 .small-scene .tree.small-pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 12.5px;
        left: -1px; }
    html.custom-color-ute2 .small-scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #00758d;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-ute2 .small-scene .tree.pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 27.5px;
        left: -1px; }
    html.custom-color-ute2 .small-scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00758d;
      width: 12.5px;
      height: 12.5px;
      border-radius: 12.5px; }
      html.custom-color-ute2 .small-scene .tree.small-round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 10px;
        left: 5px; }
    html.custom-color-ute2 .small-scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00758d;
      width: 5px;
      height: 20px;
      border-radius: 50%; }
      html.custom-color-ute2 .small-scene .tree.round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 17.5px;
        left: 1.25px; }
    html.custom-color-ute2 .small-scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-ute2 .small-scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-ute2 .small-scene .building.office {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
      html.custom-color-ute2 .small-scene .building.office::after {
        content: "";
        display: block;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 22px;
        left: 4px; }
      html.custom-color-ute2 .small-scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 22.5px;
        bottom: 30px; }
    html.custom-color-ute2 .small-scene .building.residential {
      width: 30px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
      html.custom-color-ute2 .small-scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 2.5px;
        left: 4px; }
      html.custom-color-ute2 .small-scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -5px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #00758d;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 5px solid; }
      html.custom-color-ute2 .small-scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 40px;
        bottom: 15px; }
    html.custom-color-ute2 .small-scene .building.industrial {
      width: 7.5px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
      html.custom-color-ute2 .small-scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 17.5px;
        bottom: 15px; }
  html.custom-color-ute2 .small-scene .stickman {
    height: 30px;
    width: 15px;
    position: absolute;
    bottom: 5%;
    left: 6%;
    margin-top: -15px;
    margin-left: -7.5px; }
    html.custom-color-ute2 .small-scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
    html.custom-color-ute2 .small-scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00588d; }
    html.custom-color-ute2 .small-scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: orange; }
    html.custom-color-ute2 .small-scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #f29c00; }
    html.custom-color-ute2 .small-scene .stickman .head {
      height: 7.5px;
      width: 7.5px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-ute2 .small-scene .stickman .body {
      border-radius: 1.5px;
      height: 10px;
      width: 3.75px;
      position: absolute;
      top: 7.5px;
      left: 50%;
      margin-left: -0.9375px; }
      html.custom-color-ute2 .small-scene .stickman .body .arm {
        height: 7.5px;
        width: 3px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 1.5px; }
        html.custom-color-ute2 .small-scene .stickman .body .arm .fore {
          content: "";
          height: 6px;
          width: 2.5px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 1.5px; }
      html.custom-color-ute2 .small-scene .stickman .body .leg {
        height: 7.25px;
        width: 3px;
        position: absolute;
        bottom: -6.25px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 1.5px; }
        html.custom-color-ute2 .small-scene .stickman .body .leg .fore {
          content: "";
          height: 7.25px;
          width: 3px;
          position: absolute;
          bottom: -6.25px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 1.5px; }
  html.custom-color-ute2 .small-scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 1px;
    height: 1px;
    top: 0.5px;
    left: 2px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0.5px;
    -webkit-border-bottom-right-radius: 0.5px;
    -webkit-border-bottom-left-radius: 0.5px; }
  html.custom-color-ute2 .small-scene #smoke span {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    height: 0px;
    width: 0px;
    border: 5px solid #4b4b4b;
    border-radius: 17.5px;
    left: -7.5px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-ute2 .small-scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-ute2 .small-scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-ute2 .small-scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-ute2 .small-scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-ute2 .small-scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-ute2 .small-scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }
html.custom-color-ute2 .scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-ute2 .scene .ground {
    opacity: 0.2;
    height: 100px;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: #00acc8;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-ute2 .scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-ute2 .scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-ute2 .scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-ute2 .scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-ute2 .scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #00758d;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-ute2 .scene .tree.small-pine-tree::after {
        width: 4px;
        height: 10px;
        top: 25px;
        left: -2px; }
    html.custom-color-ute2 .scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #00758d;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 60px solid; }
      html.custom-color-ute2 .scene .tree.pine-tree::after {
        width: 4px;
        height: 10px;
        top: 55px;
        left: -2px; }
    html.custom-color-ute2 .scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00758d;
      width: 25px;
      height: 25px;
      border-radius: 25px; }
      html.custom-color-ute2 .scene .tree.small-round-tree::after {
        width: 4px;
        height: 10px;
        top: 20px;
        left: 10px; }
    html.custom-color-ute2 .scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00758d;
      width: 20px;
      height: 40px;
      border-radius: 10px / 20px; }
      html.custom-color-ute2 .scene .tree.round-tree::after {
        width: 4px;
        height: 10px;
        top: 35px;
        left: 8px; }
    html.custom-color-ute2 .scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-ute2 .scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-ute2 .scene .building.office {
      width: 30px;
      height: 60px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
      html.custom-color-ute2 .scene .building.office::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 45px;
        left: 8px; }
      html.custom-color-ute2 .scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 45px;
        bottom: 60px; }
    html.custom-color-ute2 .scene .building.residential {
      width: 60px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
      html.custom-color-ute2 .scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 5px;
        left: 8px; }
      html.custom-color-ute2 .scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -10px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #00758d;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 10px solid; }
      html.custom-color-ute2 .scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 80px;
        bottom: 30px; }
    html.custom-color-ute2 .scene .building.industrial {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
      html.custom-color-ute2 .scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 35px;
        bottom: 30px; }
  html.custom-color-ute2 .scene .stickman {
    height: 60px;
    width: 30px;
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: -30px;
    margin-left: -15px; }
    html.custom-color-ute2 .scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #005d95; }
    html.custom-color-ute2 .scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00588d; }
    html.custom-color-ute2 .scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: orange; }
    html.custom-color-ute2 .scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #f29c00; }
    html.custom-color-ute2 .scene .stickman .head {
      height: 15px;
      width: 15px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-ute2 .scene .stickman .body {
      border-radius: 3px;
      height: 20px;
      width: 7.5px;
      position: absolute;
      top: 15px;
      left: 50%;
      margin-left: -1.875px; }
      html.custom-color-ute2 .scene .stickman .body .arm {
        height: 15px;
        width: 6px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 3px; }
        html.custom-color-ute2 .scene .stickman .body .arm .fore {
          content: "";
          height: 10px;
          width: 4.28571px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 3px; }
      html.custom-color-ute2 .scene .stickman .body .leg {
        height: 15.5px;
        width: 6px;
        position: absolute;
        bottom: -12.5px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 3px; }
        html.custom-color-ute2 .scene .stickman .body .leg .fore {
          content: "";
          height: 15.5px;
          width: 6px;
          position: absolute;
          bottom: -12.5px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 3px; }
  html.custom-color-ute2 .scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 2px;
    height: 2px;
    top: 1px;
    left: 4px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
    -webkit-border-bottom-left-radius: 1px; }
  html.custom-color-ute2 .scene #smoke span {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    height: 0px;
    width: 0px;
    border: 10px solid #4b4b4b;
    border-radius: 35px;
    left: -14px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-ute2 .scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-ute2 .scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-ute2 .scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-ute2 .scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-ute2 .scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-ute2 .scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-ute2 .scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-ute2 .scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-ute2 .scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-ute2 .scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-ute2 .scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-ute2 .scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-ute2 .scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-ute2 .scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }

html.custom-color-default #tenantDashboardLocation {
  border-style: solid;
  border-width: 0px;
  /*Beginning of possible choices for "$color-selected":*/
  /*end of possible choices for "$color-selected":*/
  /*Variables used internally*/
  border-color: blue; }
html.custom-color-default .small-scene {
  position: absolute;
  height: 46px;
  width: 1140px;
  border-radius: 3px;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-default .scene {
  position: absolute;
  height: 100px;
  width: 100%;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-default .small-scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-default .small-scene .ground {
    opacity: 0.2;
    height: 100%;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: lightblue;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-default .small-scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-default .small-scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-default .small-scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-default .small-scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-default .small-scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: blue;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 15px solid; }
      html.custom-color-default .small-scene .tree.small-pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 12.5px;
        left: -1px; }
    html.custom-color-default .small-scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: blue;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-default .small-scene .tree.pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 27.5px;
        left: -1px; }
    html.custom-color-default .small-scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue;
      width: 12.5px;
      height: 12.5px;
      border-radius: 12.5px; }
      html.custom-color-default .small-scene .tree.small-round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 10px;
        left: 5px; }
    html.custom-color-default .small-scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue;
      width: 5px;
      height: 20px;
      border-radius: 50%; }
      html.custom-color-default .small-scene .tree.round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 17.5px;
        left: 1.25px; }
    html.custom-color-default .small-scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-default .small-scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-default .small-scene .building.office {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
      html.custom-color-default .small-scene .building.office::after {
        content: "";
        display: block;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 22px;
        left: 4px; }
      html.custom-color-default .small-scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 22.5px;
        bottom: 30px; }
    html.custom-color-default .small-scene .building.residential {
      width: 30px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
      html.custom-color-default .small-scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 2.5px;
        left: 4px; }
      html.custom-color-default .small-scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -5px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: blue;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 5px solid; }
      html.custom-color-default .small-scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 40px;
        bottom: 15px; }
    html.custom-color-default .small-scene .building.industrial {
      width: 7.5px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
      html.custom-color-default .small-scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 17.5px;
        bottom: 15px; }
  html.custom-color-default .small-scene .stickman {
    height: 30px;
    width: 15px;
    position: absolute;
    bottom: 5%;
    left: 6%;
    margin-top: -15px;
    margin-left: -7.5px; }
    html.custom-color-default .small-scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
    html.custom-color-default .small-scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #0000f2; }
    html.custom-color-default .small-scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: red; }
    html.custom-color-default .small-scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #f20000; }
    html.custom-color-default .small-scene .stickman .head {
      height: 7.5px;
      width: 7.5px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-default .small-scene .stickman .body {
      border-radius: 1.5px;
      height: 10px;
      width: 3.75px;
      position: absolute;
      top: 7.5px;
      left: 50%;
      margin-left: -0.9375px; }
      html.custom-color-default .small-scene .stickman .body .arm {
        height: 7.5px;
        width: 3px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 1.5px; }
        html.custom-color-default .small-scene .stickman .body .arm .fore {
          content: "";
          height: 6px;
          width: 2.5px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 1.5px; }
      html.custom-color-default .small-scene .stickman .body .leg {
        height: 7.25px;
        width: 3px;
        position: absolute;
        bottom: -6.25px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 1.5px; }
        html.custom-color-default .small-scene .stickman .body .leg .fore {
          content: "";
          height: 7.25px;
          width: 3px;
          position: absolute;
          bottom: -6.25px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 1.5px; }
  html.custom-color-default .small-scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 1px;
    height: 1px;
    top: 0.5px;
    left: 2px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0.5px;
    -webkit-border-bottom-right-radius: 0.5px;
    -webkit-border-bottom-left-radius: 0.5px; }
  html.custom-color-default .small-scene #smoke span {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    height: 0px;
    width: 0px;
    border: 5px solid #4b4b4b;
    border-radius: 17.5px;
    left: -7.5px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-default .small-scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-default .small-scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-default .small-scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-default .small-scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-default .small-scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-default .small-scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-default .small-scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-default .small-scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-default .small-scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-default .small-scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-default .small-scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-default .small-scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-default .small-scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-default .small-scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }
html.custom-color-default .scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-default .scene .ground {
    opacity: 0.2;
    height: 100px;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: lightblue;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-default .scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-default .scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-default .scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-default .scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-default .scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: blue;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-default .scene .tree.small-pine-tree::after {
        width: 4px;
        height: 10px;
        top: 25px;
        left: -2px; }
    html.custom-color-default .scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: blue;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 60px solid; }
      html.custom-color-default .scene .tree.pine-tree::after {
        width: 4px;
        height: 10px;
        top: 55px;
        left: -2px; }
    html.custom-color-default .scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue;
      width: 25px;
      height: 25px;
      border-radius: 25px; }
      html.custom-color-default .scene .tree.small-round-tree::after {
        width: 4px;
        height: 10px;
        top: 20px;
        left: 10px; }
    html.custom-color-default .scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue;
      width: 20px;
      height: 40px;
      border-radius: 10px / 20px; }
      html.custom-color-default .scene .tree.round-tree::after {
        width: 4px;
        height: 10px;
        top: 35px;
        left: 8px; }
    html.custom-color-default .scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-default .scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-default .scene .building.office {
      width: 30px;
      height: 60px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
      html.custom-color-default .scene .building.office::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 45px;
        left: 8px; }
      html.custom-color-default .scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 45px;
        bottom: 60px; }
    html.custom-color-default .scene .building.residential {
      width: 60px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
      html.custom-color-default .scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 5px;
        left: 8px; }
      html.custom-color-default .scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -10px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: blue;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 10px solid; }
      html.custom-color-default .scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 80px;
        bottom: 30px; }
    html.custom-color-default .scene .building.industrial {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
      html.custom-color-default .scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 35px;
        bottom: 30px; }
  html.custom-color-default .scene .stickman {
    height: 60px;
    width: 30px;
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: -30px;
    margin-left: -15px; }
    html.custom-color-default .scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: blue; }
    html.custom-color-default .scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #0000f2; }
    html.custom-color-default .scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: red; }
    html.custom-color-default .scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #f20000; }
    html.custom-color-default .scene .stickman .head {
      height: 15px;
      width: 15px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-default .scene .stickman .body {
      border-radius: 3px;
      height: 20px;
      width: 7.5px;
      position: absolute;
      top: 15px;
      left: 50%;
      margin-left: -1.875px; }
      html.custom-color-default .scene .stickman .body .arm {
        height: 15px;
        width: 6px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 3px; }
        html.custom-color-default .scene .stickman .body .arm .fore {
          content: "";
          height: 10px;
          width: 4.28571px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 3px; }
      html.custom-color-default .scene .stickman .body .leg {
        height: 15.5px;
        width: 6px;
        position: absolute;
        bottom: -12.5px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 3px; }
        html.custom-color-default .scene .stickman .body .leg .fore {
          content: "";
          height: 15.5px;
          width: 6px;
          position: absolute;
          bottom: -12.5px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 3px; }
  html.custom-color-default .scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 2px;
    height: 2px;
    top: 1px;
    left: 4px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
    -webkit-border-bottom-left-radius: 1px; }
  html.custom-color-default .scene #smoke span {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    height: 0px;
    width: 0px;
    border: 10px solid #4b4b4b;
    border-radius: 35px;
    left: -14px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-default .scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-default .scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-default .scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-default .scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-default .scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-default .scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-default .scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-default .scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-default .scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-default .scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-default .scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-default .scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-default .scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-default .scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }

html.custom-color-rsd #tenantDashboardLocation {
  border-style: solid;
  border-width: 0px;
  /*Beginning of possible choices for "$color-selected":*/
  /*end of possible choices for "$color-selected":*/
  /*Variables used internally*/
  border-color: #00afd7; }
html.custom-color-rsd .small-scene {
  position: absolute;
  height: 46px;
  width: 1140px;
  border-radius: 3px;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-rsd .scene {
  position: absolute;
  height: 100px;
  width: 100%;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-rsd .small-scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-rsd .small-scene .ground {
    opacity: 0.2;
    height: 100%;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: #9bcbeb;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-rsd .small-scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-rsd .small-scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-rsd .small-scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-rsd .small-scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-rsd .small-scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #007fa3;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 15px solid; }
      html.custom-color-rsd .small-scene .tree.small-pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 12.5px;
        left: -1px; }
    html.custom-color-rsd .small-scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #007fa3;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-rsd .small-scene .tree.pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 27.5px;
        left: -1px; }
    html.custom-color-rsd .small-scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #007fa3;
      width: 12.5px;
      height: 12.5px;
      border-radius: 12.5px; }
      html.custom-color-rsd .small-scene .tree.small-round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 10px;
        left: 5px; }
    html.custom-color-rsd .small-scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #007fa3;
      width: 5px;
      height: 20px;
      border-radius: 50%; }
      html.custom-color-rsd .small-scene .tree.round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 17.5px;
        left: 1.25px; }
    html.custom-color-rsd .small-scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-rsd .small-scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-rsd .small-scene .building.office {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
      html.custom-color-rsd .small-scene .building.office::after {
        content: "";
        display: block;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 22px;
        left: 4px; }
      html.custom-color-rsd .small-scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 22.5px;
        bottom: 30px; }
    html.custom-color-rsd .small-scene .building.residential {
      width: 30px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
      html.custom-color-rsd .small-scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 2.5px;
        left: 4px; }
      html.custom-color-rsd .small-scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -5px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #007fa3;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 5px solid; }
      html.custom-color-rsd .small-scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 40px;
        bottom: 15px; }
    html.custom-color-rsd .small-scene .building.industrial {
      width: 7.5px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
      html.custom-color-rsd .small-scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 17.5px;
        bottom: 15px; }
  html.custom-color-rsd .small-scene .stickman {
    height: 30px;
    width: 15px;
    position: absolute;
    bottom: 5%;
    left: 6%;
    margin-top: -15px;
    margin-left: -7.5px; }
    html.custom-color-rsd .small-scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
    html.custom-color-rsd .small-scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00a6cc; }
    html.custom-color-rsd .small-scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #c8102e; }
    html.custom-color-rsd .small-scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #be0f2b; }
    html.custom-color-rsd .small-scene .stickman .head {
      height: 7.5px;
      width: 7.5px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-rsd .small-scene .stickman .body {
      border-radius: 1.5px;
      height: 10px;
      width: 3.75px;
      position: absolute;
      top: 7.5px;
      left: 50%;
      margin-left: -0.9375px; }
      html.custom-color-rsd .small-scene .stickman .body .arm {
        height: 7.5px;
        width: 3px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 1.5px; }
        html.custom-color-rsd .small-scene .stickman .body .arm .fore {
          content: "";
          height: 6px;
          width: 2.5px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 1.5px; }
      html.custom-color-rsd .small-scene .stickman .body .leg {
        height: 7.25px;
        width: 3px;
        position: absolute;
        bottom: -6.25px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 1.5px; }
        html.custom-color-rsd .small-scene .stickman .body .leg .fore {
          content: "";
          height: 7.25px;
          width: 3px;
          position: absolute;
          bottom: -6.25px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 1.5px; }
  html.custom-color-rsd .small-scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 1px;
    height: 1px;
    top: 0.5px;
    left: 2px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0.5px;
    -webkit-border-bottom-right-radius: 0.5px;
    -webkit-border-bottom-left-radius: 0.5px; }
  html.custom-color-rsd .small-scene #smoke span {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    height: 0px;
    width: 0px;
    border: 5px solid #4b4b4b;
    border-radius: 17.5px;
    left: -7.5px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-rsd .small-scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-rsd .small-scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-rsd .small-scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-rsd .small-scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-rsd .small-scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-rsd .small-scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-rsd .small-scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-rsd .small-scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-rsd .small-scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-rsd .small-scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-rsd .small-scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-rsd .small-scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-rsd .small-scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-rsd .small-scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }
html.custom-color-rsd .scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-rsd .scene .ground {
    opacity: 0.2;
    height: 100px;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: #9bcbeb;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-rsd .scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-rsd .scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-rsd .scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-rsd .scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-rsd .scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #007fa3;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-rsd .scene .tree.small-pine-tree::after {
        width: 4px;
        height: 10px;
        top: 25px;
        left: -2px; }
    html.custom-color-rsd .scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #007fa3;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 60px solid; }
      html.custom-color-rsd .scene .tree.pine-tree::after {
        width: 4px;
        height: 10px;
        top: 55px;
        left: -2px; }
    html.custom-color-rsd .scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #007fa3;
      width: 25px;
      height: 25px;
      border-radius: 25px; }
      html.custom-color-rsd .scene .tree.small-round-tree::after {
        width: 4px;
        height: 10px;
        top: 20px;
        left: 10px; }
    html.custom-color-rsd .scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #007fa3;
      width: 20px;
      height: 40px;
      border-radius: 10px / 20px; }
      html.custom-color-rsd .scene .tree.round-tree::after {
        width: 4px;
        height: 10px;
        top: 35px;
        left: 8px; }
    html.custom-color-rsd .scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-rsd .scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-rsd .scene .building.office {
      width: 30px;
      height: 60px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
      html.custom-color-rsd .scene .building.office::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 45px;
        left: 8px; }
      html.custom-color-rsd .scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 45px;
        bottom: 60px; }
    html.custom-color-rsd .scene .building.residential {
      width: 60px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
      html.custom-color-rsd .scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 5px;
        left: 8px; }
      html.custom-color-rsd .scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -10px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #007fa3;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 10px solid; }
      html.custom-color-rsd .scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 80px;
        bottom: 30px; }
    html.custom-color-rsd .scene .building.industrial {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
      html.custom-color-rsd .scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 35px;
        bottom: 30px; }
  html.custom-color-rsd .scene .stickman {
    height: 60px;
    width: 30px;
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: -30px;
    margin-left: -15px; }
    html.custom-color-rsd .scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00afd7; }
    html.custom-color-rsd .scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #00a6cc; }
    html.custom-color-rsd .scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #c8102e; }
    html.custom-color-rsd .scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #be0f2b; }
    html.custom-color-rsd .scene .stickman .head {
      height: 15px;
      width: 15px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-rsd .scene .stickman .body {
      border-radius: 3px;
      height: 20px;
      width: 7.5px;
      position: absolute;
      top: 15px;
      left: 50%;
      margin-left: -1.875px; }
      html.custom-color-rsd .scene .stickman .body .arm {
        height: 15px;
        width: 6px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 3px; }
        html.custom-color-rsd .scene .stickman .body .arm .fore {
          content: "";
          height: 10px;
          width: 4.28571px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 3px; }
      html.custom-color-rsd .scene .stickman .body .leg {
        height: 15.5px;
        width: 6px;
        position: absolute;
        bottom: -12.5px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 3px; }
        html.custom-color-rsd .scene .stickman .body .leg .fore {
          content: "";
          height: 15.5px;
          width: 6px;
          position: absolute;
          bottom: -12.5px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 3px; }
  html.custom-color-rsd .scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 2px;
    height: 2px;
    top: 1px;
    left: 4px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
    -webkit-border-bottom-left-radius: 1px; }
  html.custom-color-rsd .scene #smoke span {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    height: 0px;
    width: 0px;
    border: 10px solid #4b4b4b;
    border-radius: 35px;
    left: -14px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-rsd .scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-rsd .scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-rsd .scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-rsd .scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-rsd .scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-rsd .scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-rsd .scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-rsd .scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-rsd .scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-rsd .scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-rsd .scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-rsd .scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-rsd .scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-rsd .scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }

html.custom-color-hruv #tenantDashboardLocation {
  border-style: solid;
  border-width: 0px;
  /*Beginning of possible choices for "$color-selected":*/
  /*end of possible choices for "$color-selected":*/
  /*Variables used internally*/
  border-color: #969696; }
html.custom-color-hruv .small-scene {
  position: absolute;
  height: 46px;
  width: 1140px;
  border-radius: 3px;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-hruv .scene {
  position: absolute;
  height: 100px;
  width: 100%;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-hruv .small-scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-hruv .small-scene .ground {
    opacity: 0.2;
    height: 100%;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: #6478c8;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-hruv .small-scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-hruv .small-scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-hruv .small-scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-hruv .small-scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-hruv .small-scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #2732b4;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 15px solid; }
      html.custom-color-hruv .small-scene .tree.small-pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 12.5px;
        left: -1px; }
    html.custom-color-hruv .small-scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #2732b4;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-hruv .small-scene .tree.pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 27.5px;
        left: -1px; }
    html.custom-color-hruv .small-scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #2732b4;
      width: 12.5px;
      height: 12.5px;
      border-radius: 12.5px; }
      html.custom-color-hruv .small-scene .tree.small-round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 10px;
        left: 5px; }
    html.custom-color-hruv .small-scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #2732b4;
      width: 5px;
      height: 20px;
      border-radius: 50%; }
      html.custom-color-hruv .small-scene .tree.round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 17.5px;
        left: 1.25px; }
    html.custom-color-hruv .small-scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-hruv .small-scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-hruv .small-scene .building.office {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
      html.custom-color-hruv .small-scene .building.office::after {
        content: "";
        display: block;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 22px;
        left: 4px; }
      html.custom-color-hruv .small-scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 22.5px;
        bottom: 30px; }
    html.custom-color-hruv .small-scene .building.residential {
      width: 30px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
      html.custom-color-hruv .small-scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 2.5px;
        left: 4px; }
      html.custom-color-hruv .small-scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -5px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #2732b4;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 5px solid; }
      html.custom-color-hruv .small-scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 40px;
        bottom: 15px; }
    html.custom-color-hruv .small-scene .building.industrial {
      width: 7.5px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
      html.custom-color-hruv .small-scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 17.5px;
        bottom: 15px; }
  html.custom-color-hruv .small-scene .stickman {
    height: 30px;
    width: 15px;
    position: absolute;
    bottom: 5%;
    left: 6%;
    margin-top: -15px;
    margin-left: -7.5px; }
    html.custom-color-hruv .small-scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
    html.custom-color-hruv .small-scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #8e8e8e; }
    html.custom-color-hruv .small-scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #fac80a; }
    html.custom-color-hruv .small-scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #edbe09; }
    html.custom-color-hruv .small-scene .stickman .head {
      height: 7.5px;
      width: 7.5px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-hruv .small-scene .stickman .body {
      border-radius: 1.5px;
      height: 10px;
      width: 3.75px;
      position: absolute;
      top: 7.5px;
      left: 50%;
      margin-left: -0.9375px; }
      html.custom-color-hruv .small-scene .stickman .body .arm {
        height: 7.5px;
        width: 3px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 1.5px; }
        html.custom-color-hruv .small-scene .stickman .body .arm .fore {
          content: "";
          height: 6px;
          width: 2.5px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 1.5px; }
      html.custom-color-hruv .small-scene .stickman .body .leg {
        height: 7.25px;
        width: 3px;
        position: absolute;
        bottom: -6.25px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 1.5px; }
        html.custom-color-hruv .small-scene .stickman .body .leg .fore {
          content: "";
          height: 7.25px;
          width: 3px;
          position: absolute;
          bottom: -6.25px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 1.5px; }
  html.custom-color-hruv .small-scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 1px;
    height: 1px;
    top: 0.5px;
    left: 2px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0.5px;
    -webkit-border-bottom-right-radius: 0.5px;
    -webkit-border-bottom-left-radius: 0.5px; }
  html.custom-color-hruv .small-scene #smoke span {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    height: 0px;
    width: 0px;
    border: 5px solid #4b4b4b;
    border-radius: 17.5px;
    left: -7.5px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-hruv .small-scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-hruv .small-scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-hruv .small-scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-hruv .small-scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-hruv .small-scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-hruv .small-scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-hruv .small-scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-hruv .small-scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-hruv .small-scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-hruv .small-scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-hruv .small-scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-hruv .small-scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-hruv .small-scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-hruv .small-scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }
html.custom-color-hruv .scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-hruv .scene .ground {
    opacity: 0.2;
    height: 100px;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: #6478c8;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-hruv .scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-hruv .scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-hruv .scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-hruv .scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-hruv .scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #2732b4;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-hruv .scene .tree.small-pine-tree::after {
        width: 4px;
        height: 10px;
        top: 25px;
        left: -2px; }
    html.custom-color-hruv .scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #2732b4;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 60px solid; }
      html.custom-color-hruv .scene .tree.pine-tree::after {
        width: 4px;
        height: 10px;
        top: 55px;
        left: -2px; }
    html.custom-color-hruv .scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #2732b4;
      width: 25px;
      height: 25px;
      border-radius: 25px; }
      html.custom-color-hruv .scene .tree.small-round-tree::after {
        width: 4px;
        height: 10px;
        top: 20px;
        left: 10px; }
    html.custom-color-hruv .scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #2732b4;
      width: 20px;
      height: 40px;
      border-radius: 10px / 20px; }
      html.custom-color-hruv .scene .tree.round-tree::after {
        width: 4px;
        height: 10px;
        top: 35px;
        left: 8px; }
    html.custom-color-hruv .scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-hruv .scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-hruv .scene .building.office {
      width: 30px;
      height: 60px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
      html.custom-color-hruv .scene .building.office::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 45px;
        left: 8px; }
      html.custom-color-hruv .scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 45px;
        bottom: 60px; }
    html.custom-color-hruv .scene .building.residential {
      width: 60px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
      html.custom-color-hruv .scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 5px;
        left: 8px; }
      html.custom-color-hruv .scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -10px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #2732b4;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 10px solid; }
      html.custom-color-hruv .scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 80px;
        bottom: 30px; }
    html.custom-color-hruv .scene .building.industrial {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
      html.custom-color-hruv .scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 35px;
        bottom: 30px; }
  html.custom-color-hruv .scene .stickman {
    height: 60px;
    width: 30px;
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: -30px;
    margin-left: -15px; }
    html.custom-color-hruv .scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #969696; }
    html.custom-color-hruv .scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #8e8e8e; }
    html.custom-color-hruv .scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #fac80a; }
    html.custom-color-hruv .scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #edbe09; }
    html.custom-color-hruv .scene .stickman .head {
      height: 15px;
      width: 15px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-hruv .scene .stickman .body {
      border-radius: 3px;
      height: 20px;
      width: 7.5px;
      position: absolute;
      top: 15px;
      left: 50%;
      margin-left: -1.875px; }
      html.custom-color-hruv .scene .stickman .body .arm {
        height: 15px;
        width: 6px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 3px; }
        html.custom-color-hruv .scene .stickman .body .arm .fore {
          content: "";
          height: 10px;
          width: 4.28571px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 3px; }
      html.custom-color-hruv .scene .stickman .body .leg {
        height: 15.5px;
        width: 6px;
        position: absolute;
        bottom: -12.5px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 3px; }
        html.custom-color-hruv .scene .stickman .body .leg .fore {
          content: "";
          height: 15.5px;
          width: 6px;
          position: absolute;
          bottom: -12.5px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 3px; }
  html.custom-color-hruv .scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 2px;
    height: 2px;
    top: 1px;
    left: 4px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
    -webkit-border-bottom-left-radius: 1px; }
  html.custom-color-hruv .scene #smoke span {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    height: 0px;
    width: 0px;
    border: 10px solid #4b4b4b;
    border-radius: 35px;
    left: -14px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-hruv .scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-hruv .scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-hruv .scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-hruv .scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-hruv .scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-hruv .scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-hruv .scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-hruv .scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-hruv .scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-hruv .scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-hruv .scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-hruv .scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-hruv .scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-hruv .scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }

html.custom-color-utxt #tenantDashboardLocation {
  border-style: solid;
  border-width: 0px;
  /*Beginning of possible choices for "$color-selected":*/
  /*end of possible choices for "$color-selected":*/
  /*Variables used internally*/
  border-color: #7d9aaa; }
html.custom-color-utxt .small-scene {
  position: absolute;
  height: 46px;
  width: 1140px;
  border-radius: 3px;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-utxt .scene {
  position: absolute;
  height: 100px;
  width: 100%;
  background: #0D343A;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(whitesmoke), to(#FFF));
  background: -moz-linear-gradient(top, whitesmoke 0%, white 100%);
  overflow: hidden; }
html.custom-color-utxt .small-scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-utxt .small-scene .ground {
    opacity: 0.2;
    height: 100%;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: cornflowerblue;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-utxt .small-scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-utxt .small-scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-utxt .small-scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-utxt .small-scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-utxt .small-scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #002664;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 15px solid; }
      html.custom-color-utxt .small-scene .tree.small-pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 12.5px;
        left: -1px; }
    html.custom-color-utxt .small-scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #002664;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-utxt .small-scene .tree.pine-tree::after {
        width: 2.5px;
        height: 5px;
        top: 27.5px;
        left: -1px; }
    html.custom-color-utxt .small-scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #002664;
      width: 12.5px;
      height: 12.5px;
      border-radius: 12.5px; }
      html.custom-color-utxt .small-scene .tree.small-round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 10px;
        left: 5px; }
    html.custom-color-utxt .small-scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #002664;
      width: 5px;
      height: 20px;
      border-radius: 50%; }
      html.custom-color-utxt .small-scene .tree.round-tree::after {
        width: 2.5px;
        height: 5px;
        top: 17.5px;
        left: 1.25px; }
    html.custom-color-utxt .small-scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-utxt .small-scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-utxt .small-scene .building.office {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
      html.custom-color-utxt .small-scene .building.office::after {
        content: "";
        display: block;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 22px;
        left: 4px; }
      html.custom-color-utxt .small-scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 22.5px;
        bottom: 30px; }
    html.custom-color-utxt .small-scene .building.residential {
      width: 30px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
      html.custom-color-utxt .small-scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 4px;
        height: 7.5px;
        top: 2.5px;
        left: 4px; }
      html.custom-color-utxt .small-scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -5px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #002664;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 5px solid; }
      html.custom-color-utxt .small-scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 40px;
        bottom: 15px; }
    html.custom-color-utxt .small-scene .building.industrial {
      width: 7.5px;
      height: 15px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
      html.custom-color-utxt .small-scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 0.5px;
        height: 15px;
        left: 17.5px;
        bottom: 15px; }
  html.custom-color-utxt .small-scene .stickman {
    height: 30px;
    width: 15px;
    position: absolute;
    bottom: 5%;
    left: 6%;
    margin-top: -15px;
    margin-left: -7.5px; }
    html.custom-color-utxt .small-scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
    html.custom-color-utxt .small-scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7692a1; }
    html.custom-color-utxt .small-scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #0099cc; }
    html.custom-color-utxt .small-scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #0091c1; }
    html.custom-color-utxt .small-scene .stickman .head {
      height: 7.5px;
      width: 7.5px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-utxt .small-scene .stickman .body {
      border-radius: 1.5px;
      height: 10px;
      width: 3.75px;
      position: absolute;
      top: 7.5px;
      left: 50%;
      margin-left: -0.9375px; }
      html.custom-color-utxt .small-scene .stickman .body .arm {
        height: 7.5px;
        width: 3px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 1.5px; }
        html.custom-color-utxt .small-scene .stickman .body .arm .fore {
          content: "";
          height: 6px;
          width: 2.5px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 1.5px; }
      html.custom-color-utxt .small-scene .stickman .body .leg {
        height: 7.25px;
        width: 3px;
        position: absolute;
        bottom: -6.25px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 1.5px; }
        html.custom-color-utxt .small-scene .stickman .body .leg .fore {
          content: "";
          height: 7.25px;
          width: 3px;
          position: absolute;
          bottom: -6.25px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 1.5px; }
  html.custom-color-utxt .small-scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 1px;
    height: 1px;
    top: 0.5px;
    left: 2px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0.5px;
    -webkit-border-bottom-right-radius: 0.5px;
    -webkit-border-bottom-left-radius: 0.5px; }
  html.custom-color-utxt .small-scene #smoke span {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    height: 0px;
    width: 0px;
    border: 5px solid #4b4b4b;
    border-radius: 17.5px;
    left: -7.5px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-utxt .small-scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-utxt .small-scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-utxt .small-scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-utxt .small-scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-utxt .small-scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-utxt .small-scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-utxt .small-scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-utxt .small-scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-utxt .small-scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-utxt .small-scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-utxt .small-scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-utxt .small-scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-utxt .small-scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-utxt .small-scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }
html.custom-color-utxt .scene {
  /* smoke balls */
  /* smoke balls */ }
  html.custom-color-utxt .scene .ground {
    opacity: 0.2;
    height: 100px;
    width: 100%;
    /*Beginning of possible choices for "$color-selected":*/
    /*end of possible choices for "$color-selected":*/
    /*Variables used internally*/
    background-color: cornflowerblue;
    position: absolute;
    bottom: 0px;
    right: -100%;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-utxt .scene .ground.ground1 {
      margin-right: -100%; }
    html.custom-color-utxt .scene .ground.ground2 {
      margin-right: 0; }
    html.custom-color-utxt .scene .ground.ground3 {
      margin-right: 100%; }
  html.custom-color-utxt .scene .tree {
    opacity: 0.3;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-utxt .scene .tree.small-pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #002664;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 30px solid; }
      html.custom-color-utxt .scene .tree.small-pine-tree::after {
        width: 4px;
        height: 10px;
        top: 25px;
        left: -2px; }
    html.custom-color-utxt .scene .tree.pine-tree {
      width: 0;
      height: 0;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      border-color: #002664;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 60px solid; }
      html.custom-color-utxt .scene .tree.pine-tree::after {
        width: 4px;
        height: 10px;
        top: 55px;
        left: -2px; }
    html.custom-color-utxt .scene .tree.small-round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #002664;
      width: 25px;
      height: 25px;
      border-radius: 25px; }
      html.custom-color-utxt .scene .tree.small-round-tree::after {
        width: 4px;
        height: 10px;
        top: 20px;
        left: 10px; }
    html.custom-color-utxt .scene .tree.round-tree {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #002664;
      width: 20px;
      height: 40px;
      border-radius: 10px / 20px; }
      html.custom-color-utxt .scene .tree.round-tree::after {
        width: 4px;
        height: 10px;
        top: 35px;
        left: 8px; }
    html.custom-color-utxt .scene .tree::after {
      opacity: 0.3;
      content: "";
      display: block;
      bottom: 0;
      position: relative;
      background: brown; }
  html.custom-color-utxt .scene .building {
    opacity: 0.5;
    position: absolute;
    right: -100%;
    bottom: 0px;
    -webkit-animation: scroll linear infinite;
    -moz-animation: scroll linear infinite; }
    html.custom-color-utxt .scene .building.office {
      width: 30px;
      height: 60px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
      html.custom-color-utxt .scene .building.office::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 45px;
        left: 8px; }
      html.custom-color-utxt .scene .building.office #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 45px;
        bottom: 60px; }
    html.custom-color-utxt .scene .building.residential {
      width: 60px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
      html.custom-color-utxt .scene .building.residential::after {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        background: gray;
        width: 8px;
        height: 15px;
        top: 5px;
        left: 8px; }
      html.custom-color-utxt .scene .building.residential::before {
        content: "";
        display: block;
        bottom: 0;
        position: relative;
        width: 0;
        height: 0;
        left: 0;
        top: -10px;
        /*Beginning of possible choices for "$color-selected":*/
        /*end of possible choices for "$color-selected":*/
        /*Variables used internally*/
        border-color: #002664;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 10px solid; }
      html.custom-color-utxt .scene .building.residential #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 80px;
        bottom: 30px; }
    html.custom-color-utxt .scene .building.industrial {
      width: 15px;
      height: 30px;
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
      html.custom-color-utxt .scene .building.industrial #smoke {
        position: absolute;
        z-index: 3;
        width: 1px;
        height: 30px;
        left: 35px;
        bottom: 30px; }
  html.custom-color-utxt .scene .stickman {
    height: 60px;
    width: 30px;
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: -30px;
    margin-left: -15px; }
    html.custom-color-utxt .scene .stickman .blue {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7d9aaa; }
    html.custom-color-utxt .scene .stickman .blue-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #7692a1; }
    html.custom-color-utxt .scene .stickman .red {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #0099cc; }
    html.custom-color-utxt .scene .stickman .red-shadow {
      /*Beginning of possible choices for "$color-selected":*/
      /*end of possible choices for "$color-selected":*/
      /*Variables used internally*/
      background-color: #0091c1; }
    html.custom-color-utxt .scene .stickman .head {
      height: 15px;
      width: 15px;
      position: absolute;
      top: 0;
      left: 25%;
      border-radius: 100%; }
    html.custom-color-utxt .scene .stickman .body {
      border-radius: 3px;
      height: 20px;
      width: 7.5px;
      position: absolute;
      top: 15px;
      left: 50%;
      margin-left: -1.875px; }
      html.custom-color-utxt .scene .stickman .body .arm {
        height: 15px;
        width: 6px;
        position: absolute;
        top: 0;
        transform: rotate(-45deg);
        transform-origin: top;
        animation: walk-arm infinite;
        border-radius: 3px; }
        html.custom-color-utxt .scene .stickman .body .arm .fore {
          content: "";
          height: 10px;
          width: 4.28571px;
          position: absolute;
          bottom: 0;
          transform: rotate(90deg);
          transform-origin: right bottom;
          animation: walk-arm-after infinite;
          border-radius: 3px; }
      html.custom-color-utxt .scene .stickman .body .leg {
        height: 15.5px;
        width: 6px;
        position: absolute;
        bottom: -12.5px;
        transform: rotate(-90deg);
        transform-origin: top;
        border-radius: 3px; }
        html.custom-color-utxt .scene .stickman .body .leg .fore {
          content: "";
          height: 15.5px;
          width: 6px;
          position: absolute;
          bottom: -12.5px;
          transform: rotate(112.5deg);
          transform-origin: top;
          border-radius: 3px; }
  html.custom-color-utxt .scene .sweat {
    display: block;
    position: absolute;
    color: white;
    width: 2px;
    height: 2px;
    top: 1px;
    left: 4px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
    -webkit-border-bottom-left-radius: 1px; }
  html.custom-color-utxt .scene #smoke span {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    height: 0px;
    width: 0px;
    border: 10px solid #4b4b4b;
    border-radius: 35px;
    left: -14px;
    opacity: 0;
    transform: scale(0.2); }
  html.custom-color-utxt .scene #smoke .s0 {
    animation: smokeL 10s 0s infinite; }
  html.custom-color-utxt .scene #smoke .s1 {
    animation: smokeR 10s 1s infinite; }
  html.custom-color-utxt .scene #smoke .s2 {
    animation: smokeL 10s 2s infinite; }
  html.custom-color-utxt .scene #smoke .s3 {
    animation: smokeR 10s 3s infinite; }
  html.custom-color-utxt .scene #smoke .s4 {
    animation: smokeL 10s 4s infinite; }
  html.custom-color-utxt .scene #smoke .s5 {
    animation: smokeR 10s 5s infinite; }
  html.custom-color-utxt .scene #smoke .s6 {
    animation: smokeL 10s 6s infinite; }
  html.custom-color-utxt .scene #smoke .s7 {
    animation: smokeR 10s 7s infinite; }
  html.custom-color-utxt .scene #smoke .s8 {
    animation: smokeL 10s 8s infinite; }
  html.custom-color-utxt .scene #smoke .s9 {
    animation: smokeR 10s 9s infinite; }
  html.custom-color-utxt .scene .sweat#sweat1 {
    animation: sweatL 3s 0s infinite; }
  html.custom-color-utxt .scene .sweat#sweat2 {
    animation: sweatR 3s 1s infinite; }
  html.custom-color-utxt .scene .sweat#sweat3 {
    animation: sweatL 3s 2s infinite; }
  html.custom-color-utxt .scene .sweat#sweat4 {
    animation: sweatR 3s 3s infinite; }

@keyframes sweatL {
  0% {
    transform: translate(0, 0) rotate(55deg); }
  10% {
    opacity: 1;
    transform: translate(0, 1px) rotate(55deg); }
  100% {
    opacity: 0;
    transform: translate(-6px, 5px) rotate(55deg); } }
@keyframes sweatR {
  0% {
    transform: translate(0, 0) rotate(55deg); }
  10% {
    opacity: 1;
    transform: translate(0, 1px) rotate(55deg); }
  100% {
    opacity: 0;
    transform: translate(-2px, 5px) rotate(55deg); } }
/* Smoke animation */
@keyframes smokeL {
  0% {
    transform: scale(0.2) translate(0, 0); }
  10% {
    opacity: 1;
    transform: scale(0.2) translate(0, -2px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-10px, -30px); } }
@keyframes smokeR {
  0% {
    transform: scale(0.2) translate(0, 0); }
  10% {
    opacity: 1;
    transform: scale(0.2) translate(0, -2px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(10px, -30px); } }
@keyframes run-body {
  0% {
    margin-top: -31.875px;
    padding-bottom: 1.875px; }
  50% {
    margin-top: -30px;
    padding-bottom: 0; }
  100% {
    margin-top: -31.875px;
    padding-bottom: 1.875px; } }
@keyframes walk-arm {
  0% {
    transform: rotate(-45deg); }
  50% {
    transform: rotate(45deg); }
  100% {
    transform: rotate(-45deg); } }
@keyframes walk-arm-after {
  0% {
    transform: rotate(67.5deg); }
  50% {
    transform: rotate(90deg); }
  100% {
    transform: rotate(67.5deg); } }
@keyframes run-leg {
  0% {
    transform: rotate(-90deg); }
  50% {
    transform: rotate(45deg); }
  100% {
    transform: rotate(-90deg); } }
@keyframes walk-leg {
  0% {
    transform: rotate(-30deg); }
  50% {
    transform: rotate(15deg); }
  100% {
    transform: rotate(-30deg); } }
@keyframes run-leg-after {
  0% {
    transform: rotate(65deg); }
  25% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(55deg); }
  100% {
    transform: rotate(65deg); } }
@keyframes walk-leg-after {
  0% {
    transform: rotate(20deg); }
  25% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(10deg); }
  100% {
    transform: rotate(20deg); } }
/* animate the drops*/
@-webkit-keyframes scroll {
  to {
    right: 100%; } }
@-moz-keyframes scroll {
  to {
    right: 100%; } }

/*# sourceMappingURL=running-man-wide.css.map */
