/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@-ms-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@-o-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes flyIn {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -khtml-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1.0; } }
@-moz-keyframes flyIn {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -khtml-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1.0; } }
@-ms-keyframes flyIn {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -khtml-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1.0; } }
@-o-keyframes flyIn {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -khtml-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1.0; } }
@keyframes flyIn {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -khtml-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1.0; } }
@-webkit-keyframes growY {
  0% {
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }
@-moz-keyframes growY {
  0% {
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }
@-ms-keyframes growY {
  0% {
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }
@-o-keyframes growY {
  0% {
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }
@keyframes growY {
  0% {
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }
@-webkit-keyframes flyLeft {
  0% {
    left: -10%; }
  100% {
    left: 50%; } }
@-moz-keyframes flyLeft {
  0% {
    left: -10%; }
  100% {
    left: 50%; } }
@-ms-keyframes flyLeft {
  0% {
    left: -10%; }
  100% {
    left: 50%; } }
@-o-keyframes flyLeft {
  0% {
    left: -10%; }
  100% {
    left: 50%; } }
@keyframes flyLeft {
  0% {
    left: -10%; }
  100% {
    left: 50%; } }
@-webkit-keyframes flyRight {
  0% {
    left: 110%; }
  100% {
    left: 50%; } }
@-moz-keyframes flyRight {
  0% {
    left: 110%; }
  100% {
    left: 50%; } }
@-ms-keyframes flyRight {
  0% {
    left: 110%; }
  100% {
    left: 50%; } }
@-o-keyframes flyRight {
  0% {
    left: 110%; }
  100% {
    left: 50%; } }
@keyframes flyRight {
  0% {
    left: 110%; }
  100% {
    left: 50%; } }
@-webkit-keyframes move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    -khtml-transform: translate3d(20px, 0, 0);
    -moz-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    -o-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  40% {
    -webkit-transform: translate3d(10px, 3px, 0);
    -khtml-transform: translate3d(10px, 3px, 0);
    -moz-transform: translate3d(10px, 3px, 0);
    -ms-transform: translate3d(10px, 3px, 0);
    -o-transform: translate3d(10px, 3px, 0);
    transform: translate3d(10px, 3px, 0); }
  60% {
    -webkit-transform: translate3d(0px, 0, 0);
    -khtml-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); }
  80% {
    -webkit-transform: translate3d(-10px, -3px, 0);
    -khtml-transform: translate3d(-10px, -3px, 0);
    -moz-transform: translate3d(-10px, -3px, 0);
    -ms-transform: translate3d(-10px, -3px, 0);
    -o-transform: translate3d(-10px, -3px, 0);
    transform: translate3d(-10px, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0);
    -khtml-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0); } }
@-moz-keyframes move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    -khtml-transform: translate3d(20px, 0, 0);
    -moz-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    -o-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  40% {
    -webkit-transform: translate3d(10px, 3px, 0);
    -khtml-transform: translate3d(10px, 3px, 0);
    -moz-transform: translate3d(10px, 3px, 0);
    -ms-transform: translate3d(10px, 3px, 0);
    -o-transform: translate3d(10px, 3px, 0);
    transform: translate3d(10px, 3px, 0); }
  60% {
    -webkit-transform: translate3d(0px, 0, 0);
    -khtml-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); }
  80% {
    -webkit-transform: translate3d(-10px, -3px, 0);
    -khtml-transform: translate3d(-10px, -3px, 0);
    -moz-transform: translate3d(-10px, -3px, 0);
    -ms-transform: translate3d(-10px, -3px, 0);
    -o-transform: translate3d(-10px, -3px, 0);
    transform: translate3d(-10px, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0);
    -khtml-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0); } }
@-ms-keyframes move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    -khtml-transform: translate3d(20px, 0, 0);
    -moz-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    -o-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  40% {
    -webkit-transform: translate3d(10px, 3px, 0);
    -khtml-transform: translate3d(10px, 3px, 0);
    -moz-transform: translate3d(10px, 3px, 0);
    -ms-transform: translate3d(10px, 3px, 0);
    -o-transform: translate3d(10px, 3px, 0);
    transform: translate3d(10px, 3px, 0); }
  60% {
    -webkit-transform: translate3d(0px, 0, 0);
    -khtml-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); }
  80% {
    -webkit-transform: translate3d(-10px, -3px, 0);
    -khtml-transform: translate3d(-10px, -3px, 0);
    -moz-transform: translate3d(-10px, -3px, 0);
    -ms-transform: translate3d(-10px, -3px, 0);
    -o-transform: translate3d(-10px, -3px, 0);
    transform: translate3d(-10px, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0);
    -khtml-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0); } }
@-o-keyframes move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    -khtml-transform: translate3d(20px, 0, 0);
    -moz-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    -o-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  40% {
    -webkit-transform: translate3d(10px, 3px, 0);
    -khtml-transform: translate3d(10px, 3px, 0);
    -moz-transform: translate3d(10px, 3px, 0);
    -ms-transform: translate3d(10px, 3px, 0);
    -o-transform: translate3d(10px, 3px, 0);
    transform: translate3d(10px, 3px, 0); }
  60% {
    -webkit-transform: translate3d(0px, 0, 0);
    -khtml-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); }
  80% {
    -webkit-transform: translate3d(-10px, -3px, 0);
    -khtml-transform: translate3d(-10px, -3px, 0);
    -moz-transform: translate3d(-10px, -3px, 0);
    -ms-transform: translate3d(-10px, -3px, 0);
    -o-transform: translate3d(-10px, -3px, 0);
    transform: translate3d(-10px, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0);
    -khtml-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0); } }
@keyframes move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    -khtml-transform: translate3d(20px, 0, 0);
    -moz-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    -o-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  40% {
    -webkit-transform: translate3d(10px, 3px, 0);
    -khtml-transform: translate3d(10px, 3px, 0);
    -moz-transform: translate3d(10px, 3px, 0);
    -ms-transform: translate3d(10px, 3px, 0);
    -o-transform: translate3d(10px, 3px, 0);
    transform: translate3d(10px, 3px, 0); }
  60% {
    -webkit-transform: translate3d(0px, 0, 0);
    -khtml-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); }
  80% {
    -webkit-transform: translate3d(-10px, -3px, 0);
    -khtml-transform: translate3d(-10px, -3px, 0);
    -moz-transform: translate3d(-10px, -3px, 0);
    -ms-transform: translate3d(-10px, -3px, 0);
    -o-transform: translate3d(-10px, -3px, 0);
    transform: translate3d(-10px, -3px, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0);
    -khtml-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0); } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1.0; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1.0; } }
@-ms-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1.0; } }
@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1.0; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1.0; } }
html, body {
  min-height: 100%; }

body {
  background-color: #f78888;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f78888), to(#d8888e));
  background-image: -webkit-linear-gradient(top, #f78888, #d8888e);
  background-image: -moz-linear-gradient(top, #f78888, #d8888e);
  background-image: -ms-linear-gradient(top, #f78888, #d8888e);
  background-image: -o-linear-gradient(top, #f78888, #d8888e);
  background-image: linear-gradient(top, #f78888, #d8888e);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f78888', endColorStr='#d8888e'); }

.canvas .bar {
  height: 100px; }
.canvas .clouds {
  height: 245px; }
  .canvas .clouds .wrapper {
    position: relative; }
.canvas .diamonds {
  height: 175px; }
  .canvas .diamonds .wrapper {
    position: relative;
    top: 15px;
    width: 1050px;
    margin: auto;
    height: 100%; }
.canvas .people {
  height: 255px; }
  .canvas .people .wrapper {
    position: relative;
    width: 1050px;
    margin: auto;
    height: 100%; }
.canvas .shadows {
  height: 25px; }
  .canvas .shadows .wrapper {
    position: relative;
    width: 1050px;
    margin: auto;
    height: 100%; }
.canvas .bar .logo {
  margin-top: 20px;
  background-image: url(../images/getgems_logo.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 178px;
  height: 45px;
  margin-left: 30px;
  float: left; }
.canvas .bar .bar-links {
  margin-top: 25px;
  float: right;
  margin-right: 30px; }
  .canvas .bar .bar-links a {
    font-size: 1.13em;
    color: white;
    margin-left: 30px;
    display: inline-block;
    cursor: pointer; }
.canvas .clouds .cloud {
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 1000px;
  overflow: hidden; }
  .canvas .clouds .cloud:nth-child(1) {
    background-image: url(../images/cloud1.png);
    width: 325px;
    height: 88px;
    top: 150px;
    left: 126px;
    left: 50%;
    margin-left: -590px; }
  .canvas .clouds .cloud:nth-child(2) {
    background-image: url(../images/cloud2.png);
    width: 314px;
    height: 83px;
    top: 0px;
    left: 827px;
    left: 50%;
    margin-left: 200px;
    -webkit-transform: scale(0.8);
    -khtml-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8); }
  .canvas .clouds .cloud:nth-child(3) {
    background-image: url(../images/cloud3.png);
    width: 140px;
    height: 60px;
    top: 14px;
    left: 1181px;
    left: 50%;
    margin-left: 500px;
    -webkit-transform: scale(0.7);
    -khtml-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7); }
  .canvas .clouds .cloud:nth-child(4) {
    background-image: url(../images/cloud3.png);
    width: 140px;
    height: 60px;
    top: 43px;
    left: 50%;
    margin-left: -320px;
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  .canvas .clouds .cloud:nth-child(5) {
    background-image: url(../images/cloud3.png);
    width: 140px;
    height: 60px;
    top: 159px;
    left: 570px;
    left: 50%;
    margin-left: -70px; }
  .canvas .clouds .cloud:nth-child(6) {
    background-image: url(../images/cloud1.png);
    width: 314px;
    height: 83px;
    top: 50px;
    left: -167px;
    left: 50%;
    margin-left: -800px; }
  .canvas .clouds .cloud:nth-child(7) {
    background-image: url(../images/cloud2.png);
    width: 325px;
    height: 88px;
    top: 153px;
    left: 857px;
    left: 50%;
    margin-left: 200px; }
.canvas .diamonds .diamond {
  background-repeat: no-repeat;
  position: absolute;
  -webkit-animation: pulse 1s infinite;
  -khtml-animation: pulse 1s infinite;
  -moz-animation: pulse 1s infinite;
  -ms-animation: pulse 1s infinite;
  -o-animation: pulse 1s infinite;
  animation: pulse 1s infinite; }
  .canvas .diamonds .diamond:nth-child(1n) {
    background-image: url(../images/gem1.png);
    width: 22px;
    height: 18px; }
  .canvas .diamonds .diamond:nth-child(2n) {
    background-image: url(../images/gem2.png);
    width: 15px;
    height: 12px; }
  .canvas .diamonds .diamond:nth-child(3n) {
    background-image: url(../images/gem3.png);
    width: 12px;
    height: 10px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .canvas .diamonds .diamond:nth-child(1n) {
      background-image: url(../images/gem1_x2.png);
      background-size: 100% auto; }
    .canvas .diamonds .diamond:nth-child(2n) {
      background-image: url(../images/gem2_x2.png);
      background-size: 100% auto; }
    .canvas .diamonds .diamond:nth-child(3n) {
      background-image: url(../images/gem3_x2.png);
      background-size: 100% auto; } }
  .canvas .diamonds .diamond:nth-child(1) {
    -webkit-animation-delay: 2.1s;
    -khtml-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    -ms-animation-delay: 2.1s;
    -o-animation-delay: 2.1s;
    animation-delay: 2.1s; }
  .canvas .diamonds .diamond:nth-child(2) {
    -webkit-animation-delay: 2.2s;
    -khtml-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    -ms-animation-delay: 2.2s;
    -o-animation-delay: 2.2s;
    animation-delay: 2.2s; }
  .canvas .diamonds .diamond:nth-child(3) {
    -webkit-animation-delay: 2.3s;
    -khtml-animation-delay: 2.3s;
    -moz-animation-delay: 2.3s;
    -ms-animation-delay: 2.3s;
    -o-animation-delay: 2.3s;
    animation-delay: 2.3s; }
  .canvas .diamonds .diamond:nth-child(4) {
    -webkit-animation-delay: 2.15s;
    -khtml-animation-delay: 2.15s;
    -moz-animation-delay: 2.15s;
    -ms-animation-delay: 2.15s;
    -o-animation-delay: 2.15s;
    animation-delay: 2.15s; }
  .canvas .diamonds .diamond:nth-child(5) {
    -webkit-animation-delay: 2.4s;
    -khtml-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -ms-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s; }
  .canvas .diamonds .diamond:nth-child(6) {
    -webkit-animation-delay: 2.5s;
    -khtml-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -ms-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s; }
  .canvas .diamonds .diamond:nth-child(7) {
    -webkit-animation-delay: 2.6s;
    -khtml-animation-delay: 2.6s;
    -moz-animation-delay: 2.6s;
    -ms-animation-delay: 2.6s;
    -o-animation-delay: 2.6s;
    animation-delay: 2.6s; }
  .canvas .diamonds .diamond:nth-child(8) {
    -webkit-animation-delay: 2.25s;
    -khtml-animation-delay: 2.25s;
    -moz-animation-delay: 2.25s;
    -ms-animation-delay: 2.25s;
    -o-animation-delay: 2.25s;
    animation-delay: 2.25s; }
  .canvas .diamonds .diamond:nth-child(9) {
    -webkit-animation-delay: 2.7s;
    -khtml-animation-delay: 2.7s;
    -moz-animation-delay: 2.7s;
    -ms-animation-delay: 2.7s;
    -o-animation-delay: 2.7s;
    animation-delay: 2.7s; }
  .canvas .diamonds .diamond:nth-child(10) {
    -webkit-animation-delay: 2.35s;
    -khtml-animation-delay: 2.35s;
    -moz-animation-delay: 2.35s;
    -ms-animation-delay: 2.35s;
    -o-animation-delay: 2.35s;
    animation-delay: 2.35s; }
  .canvas .diamonds .diamond:nth-child(11) {
    -webkit-animation-delay: 2.1s;
    -khtml-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    -ms-animation-delay: 2.1s;
    -o-animation-delay: 2.1s;
    animation-delay: 2.1s; }
  .canvas .diamonds .diamond:nth-child(12) {
    -webkit-animation-delay: 2.2s;
    -khtml-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    -ms-animation-delay: 2.2s;
    -o-animation-delay: 2.2s;
    animation-delay: 2.2s; }
  .canvas .diamonds .diamond:nth-child(13) {
    -webkit-animation-delay: 2.3s;
    -khtml-animation-delay: 2.3s;
    -moz-animation-delay: 2.3s;
    -ms-animation-delay: 2.3s;
    -o-animation-delay: 2.3s;
    animation-delay: 2.3s; }
  .canvas .diamonds .diamond:nth-child(14) {
    -webkit-animation-delay: 2.15s;
    -khtml-animation-delay: 2.15s;
    -moz-animation-delay: 2.15s;
    -ms-animation-delay: 2.15s;
    -o-animation-delay: 2.15s;
    animation-delay: 2.15s; }
  .canvas .diamonds .diamond:nth-child(15) {
    -webkit-animation-delay: 2.4s;
    -khtml-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -ms-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s; }
  .canvas .diamonds .diamond:nth-child(16) {
    -webkit-animation-delay: 2.5s;
    -khtml-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -ms-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s; }
  .canvas .diamonds .diamond:nth-child(17) {
    -webkit-animation-delay: 2.6s;
    -khtml-animation-delay: 2.6s;
    -moz-animation-delay: 2.6s;
    -ms-animation-delay: 2.6s;
    -o-animation-delay: 2.6s;
    animation-delay: 2.6s; }
  .canvas .diamonds .diamond:nth-child(18) {
    -webkit-animation-delay: 2.25s;
    -khtml-animation-delay: 2.25s;
    -moz-animation-delay: 2.25s;
    -ms-animation-delay: 2.25s;
    -o-animation-delay: 2.25s;
    animation-delay: 2.25s; }
  .canvas .diamonds .diamond:nth-child(19) {
    -webkit-animation-delay: 2.7s;
    -khtml-animation-delay: 2.7s;
    -moz-animation-delay: 2.7s;
    -ms-animation-delay: 2.7s;
    -o-animation-delay: 2.7s;
    animation-delay: 2.7s; }
  .canvas .diamonds .diamond:nth-child(20) {
    -webkit-animation-delay: 2.35s;
    -khtml-animation-delay: 2.35s;
    -moz-animation-delay: 2.35s;
    -ms-animation-delay: 2.35s;
    -o-animation-delay: 2.35s;
    animation-delay: 2.35s; }
  .canvas .diamonds .diamond:nth-child(21) {
    -webkit-animation-delay: 2.1s;
    -khtml-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    -ms-animation-delay: 2.1s;
    -o-animation-delay: 2.1s;
    animation-delay: 2.1s; }
  .canvas .diamonds .diamond:nth-child(22) {
    -webkit-animation-delay: 2.2s;
    -khtml-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    -ms-animation-delay: 2.2s;
    -o-animation-delay: 2.2s;
    animation-delay: 2.2s; }
  .canvas .diamonds .diamond:nth-child(23) {
    -webkit-animation-delay: 2.3s;
    -khtml-animation-delay: 2.3s;
    -moz-animation-delay: 2.3s;
    -ms-animation-delay: 2.3s;
    -o-animation-delay: 2.3s;
    animation-delay: 2.3s; }
  .canvas .diamonds .diamond:nth-child(24) {
    -webkit-animation-delay: 2.15s;
    -khtml-animation-delay: 2.15s;
    -moz-animation-delay: 2.15s;
    -ms-animation-delay: 2.15s;
    -o-animation-delay: 2.15s;
    animation-delay: 2.15s; }
  .canvas .diamonds .diamond:nth-child(25) {
    -webkit-animation-delay: 2.4s;
    -khtml-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -ms-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s; }
  .canvas .diamonds .diamond:nth-child(26) {
    -webkit-animation-delay: 2.5s;
    -khtml-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -ms-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s; }
  .canvas .diamonds .diamond:nth-child(27) {
    -webkit-animation-delay: 2.6s;
    -khtml-animation-delay: 2.6s;
    -moz-animation-delay: 2.6s;
    -ms-animation-delay: 2.6s;
    -o-animation-delay: 2.6s;
    animation-delay: 2.6s; }
  .canvas .diamonds .diamond:nth-child(28) {
    -webkit-animation-delay: 2.25s;
    -khtml-animation-delay: 2.25s;
    -moz-animation-delay: 2.25s;
    -ms-animation-delay: 2.25s;
    -o-animation-delay: 2.25s;
    animation-delay: 2.25s; }
  .canvas .diamonds .diamond:nth-child(29) {
    -webkit-animation-delay: 2.7s;
    -khtml-animation-delay: 2.7s;
    -moz-animation-delay: 2.7s;
    -ms-animation-delay: 2.7s;
    -o-animation-delay: 2.7s;
    animation-delay: 2.7s; }
  .canvas .diamonds .diamond:nth-child(30) {
    -webkit-animation-delay: 2.35s;
    -khtml-animation-delay: 2.35s;
    -moz-animation-delay: 2.35s;
    -ms-animation-delay: 2.35s;
    -o-animation-delay: 2.35s;
    animation-delay: 2.35s; }
.canvas .people .bk {
  background-image: url(../images/people.png);
  background-repeat: no-repeat;
  width: 1042px;
  height: 249px;
  position: relative;
  -webkit-animation: flyIn 1.5s 1;
  -khtml-animation: flyIn 1.5s 1;
  -moz-animation: flyIn 1.5s 1;
  -ms-animation: flyIn 1.5s 1;
  -o-animation: flyIn 1.5s 1;
  animation: flyIn 1.5s 1;
  -webkit-transform-style: preserve-3d;
  -khtml-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d; }
.canvas .shadows .bk {
  background-image: url(../images/people_shadow.png);
  width: 1021px;
  height: 17px;
  top: -7px;
  position: relative;
  left: 38px;
  background-repeat: no-repeat;
  -webkit-transform: scaleY(0);
  -khtml-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-animation: growY 1s ease 0.8s 1 normal forwards;
  -khtml-animation: growY 1s ease 0.8s 1 normal forwards;
  -moz-animation: growY 1s ease 0.8s 1 normal forwards;
  -ms-animation: growY 1s ease 0.8s 1 normal forwards;
  -o-animation: growY 1s ease 0.8s 1 normal forwards;
  animation: growY 1s ease 0.8s 1 normal forwards; }

.box {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  height: 260px; }
  .box .wrapper {
    margin: auto;
    position: relative;
    height: 260px;
    width: 724px; }
  .box h1 {
    margin-top: 100px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    font-size: 3.0rem;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); }
  .box .phone-form {
    margin: auto auto;
    width: 450px;
    height: 60px;
    margin-top: 40px; }
    .box .phone-form .phone-container {
      width: 255px;
      float: left; }
      .box .phone-form .phone-container input.phone {
        background-color: white;
        border-radius: 4px;
        max-width: 240px; }
    .box .phone-form .button-container {
      float: left; }
      .box .phone-form .button-container .send-button {
        height: 44px;
        line-height: 47px;
        margin-top: -1px;
        box-shadow: none;
        float: right;
        max-width: 190px; }
  .box .appstores-links {
    margin: auto auto;
    width: 357px;
    margin-top: 20px; }
    .box .appstores-links a {
      width: 115px;
      height: 35px;
      display: inline-block;
      background-repeat: no-repeat;
      background-size: 100% 100%; }
    .box .appstores-links .google {
      background-image: url(../images/googleplayx2.png); }
    .box .appstores-links .apple {
      background-image: url(../images/appstorex2.png); }
    .box .appstores-links .web {
      background-image: url(../images/webclientx2.png); }

@media screen and (max-width: 500px) {
  /* -------------------------------------------------------------
    Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
    By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  
    List of CSS3 Sass Mixins File to be @imported and @included as you need
  
    The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
    ENDING css files
  
    note: All CSS3 Properties are being supported by Safari 5
    more info: http://www.findmebyip.com/litmus/#css3-properties
  
    Mixins available:
      -   css3-prefix             - arguments: Property, Value
      -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
      -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
      -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
      -   background-size         - arguments: Width: 100%, Height: 100%
      -   background-opacity      - arguments: Color: #000, Opacity: .85
      -   border-radius           - arguments: Radius: 5px
      -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
      -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
      -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
      -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
      -   box-sizing              - arguments: Type: border-box
      -   columns                 - arguments: Count: 3, Gap: 10
      -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
      -   flex                    - arguments: Value: 1
      -   flip                    - arguments: ScaleX: -1
      -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
      -   opacity                 - arguments: Opacity: 0.5
      -   outline radius          - arguments: Radius: 5px
      -   resize                  - arguments: Direction: both
      -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
      CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
      -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
      -   transform               - arguments: Parameters: null
      -   transform-style         - arguments: Style: preserve-3d
      -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
      -                            - Examples: @include transition (all 2s ease-in-out);
      -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
      -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
      -   keyframes               - arguments: Animation name
                                  - content:   Animation css
      -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                               (http://www.w3schools.com/cssref/css3_pr_animation.asp)
  
  ------------------------------------------------------------- */
  html, body {
    min-height: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  body {
    min-width: 320px; }

  .canvas .clouds .wrapper {
    overflow: hidden; }
  .canvas .diamonds .wrapper {
    overflow: hidden;
    width: 100%; }
  .canvas .people .wrapper {
    overflow: hidden;
    width: 100%; }
  .canvas .shadows .wrapper {
    overflow: hidden;
    width: 100%; }
  .canvas .bar .logo {
    width: 148px; }
  .canvas .diamonds {
    height: 175px;
    bottom: 150px;
    position: absolute;
    left: 0;
    right: 0; }
  .canvas .people {
    bottom: 30px;
    position: absolute;
    left: 0;
    right: 0; }
    .canvas .people .bk {
      background-size: 500px auto;
      background-position: center bottom;
      width: 100%;
      left: 0; }
  .canvas .shadows {
    bottom: 5px;
    position: absolute;
    left: 0;
    right: 0; }
    .canvas .shadows .bk {
      background-size: 500px auto;
      background-position: center bottom;
      width: 100%;
      top: -12px;
      left: 7px; }

  .box {
    z-index: 9999; }
    .box .wrapper {
      width: 100%; }
    .box h1 {
      font-size: 2.6rem;
      line-height: 1.3em; }
    .box .phone-form {
      display: none; }
    .box .appstores-links {
      margin: auto auto;
      width: 237px;
      margin-top: 50px; }
      .box .appstores-links a {
        width: 115px;
        height: 35px;
        display: inline-block;
        background-repeat: no-repeat;
        background-size: 100% 100%; }
      .box .appstores-links .web {
        display: none; } }
@media screen and (max-width: 500px) and (max-width: 320px) {
  .bar .logo {
    margin-left: 10px; }

  .bar-links {
    margin-right: 12px; }
    .bar-links a {
      margin-left: 20px; } }
@media screen and (max-width: 320px) {
  /* -------------------------------------------------------------
    Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
    By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  
    List of CSS3 Sass Mixins File to be @imported and @included as you need
  
    The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
    ENDING css files
  
    note: All CSS3 Properties are being supported by Safari 5
    more info: http://www.findmebyip.com/litmus/#css3-properties
  
    Mixins available:
      -   css3-prefix             - arguments: Property, Value
      -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
      -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
      -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
      -   background-size         - arguments: Width: 100%, Height: 100%
      -   background-opacity      - arguments: Color: #000, Opacity: .85
      -   border-radius           - arguments: Radius: 5px
      -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
      -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
      -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
      -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
      -   box-sizing              - arguments: Type: border-box
      -   columns                 - arguments: Count: 3, Gap: 10
      -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
      -   flex                    - arguments: Value: 1
      -   flip                    - arguments: ScaleX: -1
      -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
      -   opacity                 - arguments: Opacity: 0.5
      -   outline radius          - arguments: Radius: 5px
      -   resize                  - arguments: Direction: both
      -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
      CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
      -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
      -   transform               - arguments: Parameters: null
      -   transform-style         - arguments: Style: preserve-3d
      -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
      -                            - Examples: @include transition (all 2s ease-in-out);
      -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
      -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
      -   keyframes               - arguments: Animation name
                                  - content:   Animation css
      -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                               (http://www.w3schools.com/cssref/css3_pr_animation.asp)
  
  ------------------------------------------------------------- */
  html, body {
    min-height: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  body {
    min-width: 320px; }

  .canvas .bar .logo {
    margin-left: 10px !important; }
  .canvas .bar-links {
    margin-right: 12px !important; }
    .canvas .bar-links a {
      margin-left: 20px !important; }

  .box {
    top: 20px; } }

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