body.loading
{
    overflow: hidden;
}


.rotate {
	animation: rotation 8s infinite linear;
  }
  
  @keyframes rotation {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(359deg);
	}
  }


.loader
{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1031;
	background-color: #205B54;
	opacity: 1;
	
	top: 0;
	left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.loader .icon 
{

	width: 100px;
	height: 100px;
	background-image: url(../img/loader.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	margin: 0 auto;

}

.loading_logo
{
    width: 140px;
}