
/*Loading animation 1*/
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0dcaf0;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0dcaf0 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*loading animation 2*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0dcaf0;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


/* Waves Animation 1 */
.w1 {
  stroke: none;
  fill: #2177cf;
  opacity: 55%;
  animation: move1 5s ease-in-out infinite;
}
.w2 {
  stroke: none;
  fill: #75ace4;
  opacity: 35%;
  transform: translate3d(0, 0, 0);
  animation: move2 4s ease-in-out infinite;
}
.w3 {
  stroke: none;
  fill: #aec1d4;
  opacity: 30%;
  transform: translate3d(0, 0, 0);
  animation: move3 6s ease-in-out infinite;
}
@keyframes move1 {
  0% {
    transform: translateX(-500px) scaleX(2.5);
  }
  25% {
    transform: translateX(-100) scaleX(2.5);
  }
  50% {
    transform: translateX(0) scaleX(2.5);
  }
  75% {
    transform: translateX(-100) scaleX(2.5);
  }
  100% {
    transform: translateX(-500px) scaleX(2.5);
  }
}
@keyframes move2 {
  0% {
    transform: translateX(-600px) scaleX(3);
  }
  25% {
    transform: translateX(-100) scaleX(2.5);
  }
  50% {
    transform: translateX(0) scaleX(3);
  }
  75% {
    transform: translateX(-100) scaleX(2.5);
  }
  100% {
    transform: translateX(-600px) scaleX(3);
  }
}
@keyframes move3 {
  0% {
    transform: translateX(-800px) scaleX(3);
  }
  25% {
    transform: translateX(-100) scaleX(2.5);
  }
  50% {
    transform: translateX(0) scaleX(3);
  }
  75% {
    transform: translateX(-100) scaleX(2.5);
  }
  100% {
    transform: translateX(-800px) scaleX(3);
  }
}

.menu-left-animation
{
  animation: menu-left-animation 0.3s ease 0s 1 normal forwards;
}
@keyframes menu-left-animation
{
  0% 
  {
		transform: scaleX(0.01);
		transform-origin: 100% 100%;
	}

	100% 
  {
		transform: scaleX(1);
		transform-origin: 100% 100%;
	}
}

.menu-left-animation-reverse
{
  animation: menu-left-animation-reverse 0.3s ease 0s 1 normal forwards;
}
@keyframes menu-left-animation-reverse
{
  0% 
  {
		transform: scaleX(1);
		transform-origin: 100% 100%;
	}

	100% 
  {
		transform: scaleX(0.01);
		transform-origin: 100% 100%;
	}
}

.menu-down-animation
{
  animation: menu-down-animation 0.3s ease 0s 1 normal forwards;
}
@keyframes menu-down-animation
{
  0% 
  {
		transform: scaleY(1);
		transform-origin: 100% 100%;
	}

	100% 
  {
		transform: scaleY(0.01);
		transform-origin: 100% 100%;
	}
}

.menu-down-animation-reverse
{
  animation: menu-down-animation-reverse 0.3s ease 0s 1 normal forwards;
}
@keyframes menu-down-animation-reverse
{
  0% 
  {
		transform: scaleY(0.01);
		transform-origin: 100% 100%;
	}

	100% 
  {
		transform: scaleY(1);
		transform-origin: 100% 100%;
	}
}