/**
 Xpull - pull to refresh jQuery plugin for iOS and Android
 by Slobodan Jovanovic
 Initially made for Spreya app spreya.com
*/
.pull-indicator {
  position: relative;
  top: -41px;
  width: 25px;
  height: 41px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  margin-top: 0px;
  -webkit-transform: translate3d(0px, 0px, 0px) rotate(0deg);
  -moz-transform: translate3d(0px, 0px, 0px) rotate(0deg);
  -ms-transform: translate3d(0px, 0px, 0px) rotate(0deg);
  -o-transform: translate3d(0px, 0px, 0px) rotate(0deg);
  transform: translate3d(0px, 0px, 0px) rotate(0deg);
  -webkit-transition: -webkit-transform 300ms ease;
}
.triangle-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #CACACA;
  margin-left: auto;
  margin-right: auto;
}
.arrow-body {
  width: 4px;
  height: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #CACACA;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-right-radius: initial;
  -moz-border-radius-bottomright: initial;
  border-bottom-right-radius: initial;
  -webkit-border-bottom-left-radius: initial;
  -moz-border-radius-bottomleft: initial;
  border-bottom-left-radius: initial;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.arrow-rotate-180 {
  -webkit-transform: rotate(-180deg) !important;
  -webkit-transition: -webkit-transform 300ms ease !important;
}
.pull-spinner {
  display: none;
  position: relative;
  left: 0;
  width: 25px;
  height: 25px;
  margin: 0px auto;
  -webkit-animation: rotation 0.6s linear infinite;
  -moz-animation: rotation 0.6s linear infinite;
  -ms-animation: rotation 0.6s linear infinite;
  animation: rotation 0.6s linear infinite;
  border-left: 4px solid rgba(202, 202, 202, 0.15);
  border-right: 4px solid rgba(202, 202, 202, 0.15);
  border-bottom: 4px solid rgba(202, 202, 202, 0.15);
  border-top: 4px solid rgba(202, 202, 202, 0.9);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*# sourceMappingURL=xpull.css.map */