.lds-ring {
  color: var(--color-black);
  display: inline-block;
  height: 16px;
  position: relative;
  vertical-align: top;
  width: 16px;
  &,
  & div {
    box-sizing: border-box;
  }
  & div {
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    display: block;
    height: 16px;
    left: 5px;
    margin: 3px;
    position: absolute;
    top: 2px;
    width: 16px;
    &:nth-child(1) {
      animation-delay: -0.45s;
    }
    &:nth-child(2) {
      animation-delay: -0.3s;
    }
    &:nth-child(3) {
      animation-delay: -0.15s;
    }
  }
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lds-facebook {
  color: #ccc;
  display: inline-block;
  line-height: 1;
  margin: 15px 0 15px 5px;
  position: relative;
  width: 100%;
  &,
  & div {
    box-sizing: border-box;
    border-radius: 3px;
  }
  &.inline {
    display: inline;
  }
  & div {
    animation: lds-facebook 0.8s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    background: currentColor;
    display: inline-block;
    position: absolute;
    width: 10px;
    &:nth-child(1) {
      animation-delay: -0.24s;
      left: 0;
    }
    &:nth-child(2) {
      animation-delay: -0.12s;
      left: 18px;
    }
    &:nth-child(3) {
      animation-delay: 0s;
      left: 36px;
    }
  }
}
@keyframes lds-facebook {
  0% {
    color: #ccc;
    height: 10px;
    width: 10px;
  }
  50%,
  100% {
    color: #000;
    height: 14px;
    top: -2px;
    width: 14px;
  }
}
