/*--------------------------------------------------------------
# Theia Pro Loader
--------------------------------------------------------------*/
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
	background: #ffffff;
}
/*-------------------------------
* Loader 1
-------------------------------*/
.spinOne {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #008a19;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
.spinOne:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #008a19;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
.spinOne:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #008a19;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
/*-------------------------------
* Loader 2
-------------------------------*/
.spinTwo { 
	display: block;
    position: relative;
    left: 45%;
    top: 45%;
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #008a19; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin2 2s linear infinite;
}
@keyframes spin2 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*-------------------------------
* Loader 3
-------------------------------*/
.spinThree {
	width: 100%;
	height: 100%;
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.load3 {
	width: 90px;
	height: 90px;
	margin: 100px auto;
}

.thcube {
	width: 33.33%;
	height: 33.33%;
	background-color: #008a19;
	float: left;
	-webkit-animation: scale3 1.2s infinite ease-in-out;
	animation: scale3 1.2s infinite ease-in-out;
}

.thcube.cube1 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.thcube.cube2 {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.thcube.cube3 {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.thcube.cube4 {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.thcube.cube5 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.thcube.cube6 {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.thcube.cube7 {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.thcube.cube8 {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.thcube.cube9 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

@-webkit-keyframes scale3 {
  0%,80%,100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  40% {
    -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
  }
}

@keyframes scale3 {
  0%,80%,100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  40% {
    -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
  }
}
/*-------------------------------
* Loader 4
-------------------------------*/
.spinFour{
  border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
    padding: 0px;
}

.load4 {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: outset 5px #008a19;
  border-top: 5px solid rgba(0, 138, 25, 0.48);
  -webkit-animation-name: load4;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes load4 {
  from   {  -webkit-transform: rotate(0deg); }
  to   {  -webkit-transform: rotate(360deg); }
}
/*-------------------------------
* Loader 5
-------------------------------*/
.spinFive {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  background: #008a19;
  border-radius: 50%;
  animation: spinFive 1s linear infinite alternate;
}
@keyframes spinFive {
  0% {
    opacity: 0%;
    transform: translateY(-1000px) scaleX(1) scaleY(1);
  }
  65% {
    opacity: 1;
    transform: translateY(0) scaleX(1) scaleY(1);
  }
  70% {
    transform: translateY(20%) scaleX(1.4) scaleY(.6);
  }
  80% {
    transform: translateY(-10%) scaleX(.8) scaleY(1.2);
  }
  90% {
    transform: translateY(5%) scaleX(1.1) scaleY(.9);
  }
  100% {
    transform: translateY(0) scaleX(1) scaleY(1);
  }
}
/*-------------------------------
* Loader 6
-------------------------------*/
.spinSix {
  position: absolute;
  top: 47%;
  left: 47%;		
  width: 70px;
  height: 70px;
  margin-top: -50px;
  margin-left: -27px;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #008a19;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
/*-------------------------------
* Loader 7
-------------------------------*/
.spinSeven{
  position: absolute;
  top: 50%;
  left: 50%;	
  width: 70px;
  margin-top: -50px;
  margin-left: -27px;
}

.spinSeven > div {
  width: 18px;
  height: 18px;
  background-color: #008a19;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinSeven .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinSeven .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/*-------------------------------
* Loader 8
-------------------------------*/
.spinEight{
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;	
  margin-top: -50px;
  margin-left: -27px;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #008a19;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}