.ptr--ptr {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -36px);
  z-index: 9999;
  display: flex;
  align-items: center !important;
  width: 36px !important;
  height: 36px !important;
  overflow: visible !important;
  transition: top linear 0.5s;
}
.ptr--top {
  touch-action: unset !important;
}
.ptr--pull {
  opacity: 1;
}
.ptr--release {
  opacity: 1;
}
.ptr--refresh {
  opacity: 1;
}

.ptr--box {
  padding: 0 !important;
  flex-basis: none !important;
}
.ptr--box > .ptr--content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ptr--box > .ptr--content > .ptr--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  line-height: 1;
  background-image: url('./icon-ptr-loading.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.ptr--refresh > .ptr--box > .ptr--content > .ptr--icon {
  -webkit-animation: rotating 1s linear infinite;
  -moz-animation: rotating 1s linear infinite;
  -ms-animation: rotating 1s linear infinite;
  -o-animation: rotating 1s linear infinite;
  animation: rotating 1s linear infinite;
}

.ptr--box > .ptr--content > .ptr--text {
  margin-top: 0 !important;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -webkit-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -ms-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -webkit-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
