/* IMPORT ALL COMPONENTS */
.social-button {
  margin-top: 30px;
  /*.slide-social a{
	    display: none;  hide flash of unstyled tweet button 
	}*/
  /* Brand Colours */
  /* Slide Animation */
  /* Transition */ }
  .social-button .slide-social {
    display: inline-block;
    overflow: hidden;
    margin: 0 10px 10px 0;
    width: 150px;
    height: 48px;
    background: #F1F1F1; }
  .social-button .slide-social.facebook {
    background: #2d4373; }
  .social-button .slide-social.twitter {
    background: #0087bb; }
  .social-button .slide-social.google-plus {
    background: #be3323; }
  .social-button .slide-social.linkedin {
    background: #0a5579; }
  .social-button .slide-social.pinterest {
    background: #9d1b22; }
  .social-button .slide-social .button {
    position: absolute;
    margin: 15px 0 0 55px;
    padding-left: 15px; }
    .social-button .slide-social .button a {
      /*text-transform: uppercase;*/
      color: #fff; }
  .social-button .icon {
    float: left;
    padding-top: 15px;
    width: 25%;
    height: 100%;
    text-align: center; }
  .social-button .icon i {
    color: #FFF;
    font-size: 1.2em; }
  .social-button .slide {
    position: relative;
    float: left;
    width: 75%;
    height: 100%; }
  .social-button .slide p {
    position: relative;
    top: 15px;
    margin: 0;
    border-left: 1px solid white;
    /* IE < 9 Fallback Colour */
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    text-align: center;
    font-weight: 600; }
  .social-button .facebook {
    background: #3b5998; }
  .social-button .twitter {
    background: #00acee; }
  .social-button .google-plus {
    background: #db4a39; }
  .social-button .linkedin {
    background: #0e76a8; }
  .social-button .pinterest {
    background: #c8232c; }
  .social-button .slide-social:hover .slide {
    transform: translate(101%, 0); }
  .social-button .no-cssanimations .slide {
    display: none;
    /* hide in IE 8-9 */ }
  .social-button .touch .slide {
    display: none;
    /* hide on touch devices */ }
  .social-button .slide {
    transition: all 200ms ease-in-out; }

/* Example Media Queries */
@media only screen and (max-width: 30em) {
  /* 480px/16px = 30em */
  .social-button .slide-social {
    width: 100%; }
  .social-button .slide-social .button {
    position: absolute;
    margin-left: 50%; } }

/*Mural (mural.ly) Preloader by Bacardo*/
/*Based on http://cssdeck.com/labs/pure-css3-page-flip-effect*/
/*With some animations form http://minimamente.com/example/magic_animations/*/
.preloader-body {
  padding: 0;
  margin: 10em 0;
  transform: scale(0.35); }

#container {
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.logo-preloader {
  /* ($post-it-height) */
  height: auto;
  width: 250px;
  position: relative;
  top: 53%;
  transform: translate3d(0, -50%, 0) rotate(-90deg);
  width: 7.5rem; }

.stack {
  transform: rotate(90deg);
  background: transparent;
  position: absolute;
  width: 250px;
  height: 250px; }

.sticky-container {
  position: absolute;
  z-index: 2;
  transform-origin: 700px 200px;
  transform: translate3d(-450px, -200px, 0) rotate(-45deg);
  transition-property: transform, transform-origin;
  transition-duration: 1s; }
  .sticky-container.back {
    z-index: 1; }

.post-it-1, .post-it-2 {
  width: 650px;
  height: 650px;
  overflow: hidden;
  text-align: center; }
  .post-it-1 > div, .post-it-2 > div {
    border-radius: .6em;
    transform-origin: 250px 0;
    transform: translate3d(450px, 200px, 0) rotate(45deg);
    transition-property: transform, transform-origin;
    transition-duration: 1s;
    width: 250px;
    height: 250px;
    background-color: #8CC53F; }
    .post-it-1 > div::before, .post-it-2 > div::before {
      content: '';
      position: absolute;
      pointer-events: none;
      top: 70px;
      width: 65px;
      height: 65px;
      right: 0;
      background-image: linear-gradient(45deg, transparent 50%, #618a2a 50%); }

.post-it-2 > div {
  background-color: #4B9CD2; }
  .post-it-2 > div::before {
    background-image: linear-gradient(45deg, transparent 50%, #2973a4 50%); }

.dorso-sticky-container {
  transform-origin: 700px 200px;
  transform: translate3d(-450px, -200px, 0) rotate(-45deg);
  transition-property: transform, transform-origin;
  transition-duration: 1s;
  position: absolute;
  z-index: 3; }

.dorso {
  width: 650px;
  height: 650px;
  overflow: hidden; }
  .dorso > div {
    border-radius: .6em;
    transform-origin: 0 0;
    transform: translate3d(600px, 200px, 0) rotate(-45deg) scale(1);
    transition-property: transform, transform-origin, scale;
    transition-duration: 1s;
    width: 250px;
    height: 250px;
    background-color: #b6da86;
    overflow: hidden; }

.dorso-2 > div {
  background-color: #94c4e4; }

.animated {
  animation-duration: 2s;
  animation-fill-mode: both; }

.loader-in {
  animation-name: loader-in; }

@keyframes loader-in {
  0% {
    opacity: 0;
    transform-origin: 50% 0%;
    transform: perspective(800px) rotateX(-90deg); }
  50% {
    opacity: 1;
    transform-origin: 50% 0%;
    transform: perspective(800px) rotateX(50deg); }
  100% {
    opacity: 1;
    transform-origin: 50% 0%;
    transform: perspective(800px) rotateX(0deg); } }

.tear-rotation {
  animation-name: tear-rotation;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease; }

@keyframes tear-rotation {
  50% {
    transform-origin: 700px;
    transform: translate3d(-650px, 200px, 0) rotate3d(0, 0, 0, 10deg); }
  100% {
    transform: translate3d(-650px, 200px, 0) rotate3d(0, 0, 0, 90deg); } }

.front-page-out {
  animation-delay: 2s;
  animation-name: front-page-out;
  animation-iteration-count: infinite; }

@keyframes front-page-out {
  100% {
    transform-origin: 250px 0;
    transform: translate3d(1560px, 200px, 0) rotate3d(0, 0, 0, 0deg); } }

.front-page-curl {
  animation-delay: 2s;
  animation-name: front-page-curl;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out; }

@keyframes front-page-curl {
  0% {
    transform-origin: 0 0;
    transform: translate3d(650px, 200px, 0) rotate(-45deg) scale(1, 1, 1);
    opacity: 1; }
  25% {
    transform-origin: 0 0;
    transform: translate3d(600px, 200px, 0) rotate(-45deg) scale(1, 1, 1);
    opacity: 1; }
  50% {
    transform-origin: 0 0;
    transform: translate3d(160px, 100px, 0) rotate3d(-1, -1, 1, -180deg) scale3d(0.6, 0.7, 0.5);
    opacity: .7;
    transform-style: preserve-3d; }
  100% {
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, 80deg) scale3d(0, 0, 0);
    opacity: 0;
    transform-style: preserve-3d; } }

/*DEBUG CLASSES*/
.debug .sticky {
  border: solid 4px red; }

.debug .dorso-sticky {
  border: 1px solid red; }

.debug svg {
  border: 1px solid yellow; }

#how-it-work-2 {
  background-color: #ffffff; }

#how-it-work-2 .background {
  background: url("../../img/bg-dot.png") repeat #fff;
  background-size: 10px 10px; }

#how-it-work-2 .background .gradient {
  text-align: center;
  padding: 70px 0px;
  z-index: 1;
  position: relative;
  background: #3AA0CE;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #3AA0CE 50%, transparent 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$blue', endColorstr='rgba(0,0,0,0)',GradientType=0 );
  /* IE6-9 */ }

#how-it-work-2 .section-title {
  color: #fff; }

#how-it-work-2 .phone-wrapper {
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  width: 800px; }

#how-it-work-2 .phone-wrapper .steps {
  padding: 0; }

#how-it-work-2 .navigator-iphone {
  padding-top: 30px;
  text-align: right; }

#how-it-work-2 .nav-control, #latest-offers .nav-control {
  background: url("../../img/btn-arrow.png") no-repeat;
  background-position: top left;
  background-size: 245%;
  width: 42px;
  height: 42px;
  z-index: 10; }

#how-it-work-2 .nav-control {
  display: block;
  position: absolute;
  top: 180px; }

#how-it-work-2 .nav-control.left, #latest-offers .nav-control.left {
  right: 15px; }

#how-it-work-2 .nav-control.right, #latest-offers .nav-control.right {
  background-position: top right; }

#how-it-work-2 .nav-control:hover, #how-it-work-2 .nav-control:focus,
#latest-offers .nav-control:hover, #latest-offers .nav-control:focus {
  opacity: 0.5; }

#how-it-work-2 #iPhone2 {
  width: 60%;
  height: auto; }

#how-it-work-2 #how-to-iPhone {
  text-align: center;
  width: 335px;
  height: 493px; }

#how-it-work-2 .iContainer .detail {
  height: 135px; }

#how-it-work-2 .iContainer .detail h2 {
  margin-bottom: 10px;
  border: 2px solid #252525;
  color: #252525;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 21px;
  margin: 15px auto; }

#how-it-work-2 .iContainer .detail .title {
  color: #8DC63F;
  text-transform: uppercase;
  text-align: center; }

#how-it-work-2 .iContainer .detail .cont {
  text-align: center; }

#how-to-visual {
  position: absolute;
  overflow: hidden; }

#how-to-visual .loading-iphone {
  text-align: center;
  font-size: 30px;
  background-color: #4A4A4A;
  color: #fff;
  display: none; }

#how-to-visual > img {
  position: absolute; }

.howitworks span {
  color: #fff; }

.howitworks span.branding {
  color: inherit; }

#how-it-work-2 .navigator-iphone .section-title {
  text-align: right;
  font-size: 40px;
  letter-spacing: 3px; }

.phone-wrapper .line {
  display: none; }

#how-it-work-2 .iContainer .detail h2 {
  width: 100%;
  border: 0;
  text-align: left;
  padding-left: 20px;
  line-height: 20px; }

#how-it-work-2 .iContainer .detail span.number {
  position: absolute;
  left: 0px; }

@media (min-width: 993px) {
  #how-it-work-2 #iPhone2 {
    width: 100%; }
  #how-it-work-2 .navigator-iphone .section-title {
    margin-left: -50px; }
  #how-it-work-2 .iContainer .detail {
    position: absolute;
    bottom: 0;
    margin-bottom: 30px;
    padding-right: 15px;
    height: 180px; }
  #how-it-work-2 .iContainer .detail h2 {
    margin-right: 15px;
    margin-left: 0; }
  #how-it-work-2 .iContainer .detail .title {
    text-align: left; }
  #how-it-work-2 .iContainer .detail .cont {
    text-align: left; } }

@media (max-width: 992px) {
  #how-it-work-2 .background .gradient {
    padding: 40px 0 10px; }
  #how-it-work-2 .phone-wrapper {
    width: 100%;
    overflow-x: hidden; }
  #how-it-work-2 .phone-wrapper .steps {
    width: 100%;
    margin-top: 30px; }
  #how-it-work-2 .navigator-iphone {
    padding: 0 0 10px 0;
    text-align: center; }
  #how-it-work-2 #iPhone2 {
    width: 100%; }
  #how-it-work-2 #how-to-iPhone, #how-it-work-2.steps {
    margin: 0 auto;
    float: none; }
  #how-it-work-2 .nav-control {
    display: none; } }

@media (max-width: 480px) {
  #how-it-work-2 #how-to-iPhone {
    width: 100%;
    height: auto; }
  #how-it-work-2 #iPhone2 {
    width: 60%;
    height: auto; } }

@media (max-width: 991px) {
  #how-it-work-2 .iContainer .detail h2 {
    text-align: center;
    padding: 0 10px; }
  #how-it-work-2 .iContainer .detail span.number {
    position: relative; }
  #how-it-work-2 .navigator-iphone .section-title {
    margin-bottom: 30px;
    text-align: center; } }

@media (max-width: 749px) {
  #how-it-work-2 a.left, #how-it-work-2 a.right {
    display: none !important; } }

@media (max-width: 480px) {
  #how-it-work-2 #how-to-iPhone {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    margin-left: 5px;
    margin-top: 5%; }
  #how-it-work-2 .phone-wrapper .steps {
    width: 100%;
    margin-top: 20%; } }

.Modal-Background.hid {
  opacity: 0; }

.Modal-Background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s ease; }
  .Modal-Background img {
    width: 100%;
    height: auto;
    margin: 0 auto; }
  .Modal-Background .modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    cursor: pointer; }
    .Modal-Background .modal-close-btn img {
      width: 25px; }

.toggle-Modal {
  cursor: pointer; }

.is-Hidden {
  display: none; }

.Absolute-Center.is-Variable {
  position: fixed;
  z-index: 999;
  display: table;
  height: auto; }

.Absolute-Center {
  height: 50%;
  width: 70%;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

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