#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
}
#loader {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 130px;
  margin: -65px 0 0 -75px;
  z-index: 1102;
	-webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
	opacity: 1;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
	
}
.loaded #loader {
  opacity: 0;
	-webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}
.loaded #loader-wrapper {
  opacity: 0;
	visibility: hidden;
	-webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}
.loader_anim_img {
  -webkit-animation: loader_anim_img 2.2s ease;
  -moz-animation: loader_anim_img 2.2s ease;
  -ms-animation: loader_anim_img 2.2s ease;
  -o-animation: loader_anim_img 2.2s ease;
  animation: loader_anim_img 2.2s ease;
	scale: 0.7;
	  opacity: 0;
}


/* Chrome, Safari, Opera */
@-webkit-keyframes loader_anim_img {
  0% {
    scale: 1;
	  opacity: 1;
  }
  80% {
    scale: 1;
	  opacity: 1;
  }
  100% {
    scale: 0.7;
	  opacity: 0;
  }
}
/* Standard syntax */
@keyframes loader_anim_img {
  0% {
    scale: 1;
	  opacity: 1;
  }
  80% {
    scale: 1;
	  opacity: 1;
  }
  100% {
    scale: 0.7;
	  opacity: 0;
  }
}


.cursor {
    display: flex;
    flex: 1 1;
    flex-direction: column
}

.cursor--light .cursor-outer {
    border-color: #fff
}

.cursor--light .cursor-inner {
    background-color: #fff
}

.cursor--link .cursor-outer,.cursor--link-light .cursor-outer {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 0
}

.cursor--link .cursor-inner,.cursor--link-light .cursor-inner {
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px
}

.cursor--link-light .cursor-inner {
    background-color: #fff
}

