/*****************************************************************************/
/* Loading: Style */
/*****************************************************************************/
.loading-view{
    position: absolute;
    top: 0;
    left: 0;
}

.loading-view .compass{
    position: absolute;
    top: 0;
    left: 0;
    background-size: 250px 500px;
    background-image: url('assets/img/locating-indicator.png');
    background-position: 0px -250px;
    background-repeat: no-repeat;
    width:250px;
    height:250px;

}

.loading-view .compass .compass-pointer{
    position: absolute;
    top: 0;
    left: 0;
    height: 250px;
    width: 250px;
    -webkit-animation: compass-oscillate 3s ease-in-out infinite;
    -moz-animation: compass-oscillate 3s ease-in-out infinite;
    -ms-animation: compass-oscillate 3s ease-in-out infinite;
    animation: compass-oscillate 3s ease-in-out infinite
}

.loading-view .compass .compass-pointer{
    background-size: 250px 500px;
    background-image: url('assets/img/locating-indicator.png');
    background-position: 0px 0px;
    background-repeat: no-repeat;
    z-index: 2
}


@-webkit-keyframes compass-oscillate{
    0%{
        -webkit-transform: rotate(-25deg)
    }

    70%{
        -webkit-transform: rotate(35deg)
    }

    100%{
        -webkit-transform: rotate(-25deg)
    }
}

@-moz-keyframes compass-oscillate{
    0%{
        -moz-transform: rotate(-25deg)
    }

    70%{
        -moz-transform: rotate(35deg)
    }

    100%{
        -moz-transform: rotate(-25deg)
    }
}

@keyframes compass-oscillate{
    0%{
        transform: rotate(-25deg)
    }

    70%{
        transform: rotate(35deg)
    }

    100%{
        transform: rotate(-25deg)
    }
}



.arc-cube{
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  height: 140px;
  border-style: solid;
  border-top-color: transparent;
  border-right-color: #333333;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: arc 1s linear infinite;
          animation: arc 1s linear infinite;
}

.arc{
  position: absolute;
  bottom: 50%;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  height: 140px;
  overflow: hidden;
}

@-webkit-keyframes arc{
  0%{
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  }
}
@keyframes arc{
  0%{
 
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loading-text{
    position: absolute;
    bottom: 50%;
    left: 50%;
    margin-left: -70px;
    width: 140px;
  height: 15px;
  text-align: center;
}
