@import "header.css";
@import "footer.css";
@import "home.css";
@import "login.css";
@import "register.css";




.clear {
	clear: both;
}

.flr {
	float: right;
}


.flt {
	float: left;
}

button:focus, input:focus {
	outline:0;
	display: block;
}


.loading {
	width: 100%;
	height: 100vh;
	background: #FFF;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0.7;
	display: none;
}
.lds-circle_holder {
	width: 251px;
    height: 251px;

    position:absolute; /*it can be fixed too*/
    left:0; right:0;
    top:0; bottom:0;
    margin:auto;

    /*this to solve "the content will not be cut when the window is smaller than the content": */
    max-width:100%;
    max-height:100%;
    overflow:auto;
}

.lds-circle {
  display: inline-block;
  transform: translateZ(1px);
}
.lds-circle > div {
  display: inline-block;
  width: 151px;
  height: 151px;
  margin: 6px;
  border-radius: 50%;
  background: #44A5B4;
  animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes lds-circle {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}
