/**
  * Borders
  *ff3a3a
  * @author jh3y - jheytompkins.com
*/


  

.borders {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }

    .borders:after, .borders:before {
      border: 6px solid #ff3a3a;
      border-radius: 100%;
      position: absolute;
      content: '';
      display: block; }

      .borders::after{
        border: 6px solid var(--primary);
      }
    .borders:before {
      border-bottom-color: transparent;
      border-left-color: transparent;
      animation: spin .75s infinite linear reverse;
      height: 30px;
      width: 30px; }
    .borders:after {
      -webkit-animation: spin .5s infinite linear;
              animation: spin .5s infinite linear;
      height: 50px;
      width: 50px;
      border-right-color: transparent;
      border-top-color: transparent; }
  
  @-webkit-keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg); } }
  
  @keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg); } }


#loading {
  margin: 0;
  padding: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
