.nut-pulltorefresh {
  &-head {
    overflow: hidden;
    position: relative;
    font-size: 12px;

    &-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      color: $color-text-help;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      &-icons {
        width: $pulltorefresh-icon-width;
        height: $pulltorefresh-icon-height;
        margin-bottom: 4px;
      }
    }
  }

  &-primary {
    background: $pulltorefresh-color-primary;

    &-content {
      color: $color-text-dark;
    }

    &-head {
      &-content {
        color: $color-text-dark;
      }
    }

    &-status-text {
      color: $white;
    }
  }
}

[dir='rtl'] .nut-pulltorefresh,
.nut-rtl .nut-pulltorefresh {
  &-head {
    &-content {
      left: auto;
      right: 0;
    }
  }
}
