﻿.lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




#loader svg {
	display: block;
	margin: 0; padding: 0;
}

#loader{
	/*width: 100%; height: 100%;
	margin: 0; padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;*/
}


.spinner {
	width: 66px; height: 66px;
	
	animation: contanim 2s linear infinite;
}

#loader svg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  transform: rotate(-90deg);
}
#loader svg:nth-child(1) circle {
  stroke: #DE0016;
  stroke-dasharray: 1, 300;
  stroke-dashoffset: 0;
  animation: strokeanim 3s calc(.2s * (1)) ease infinite;
  transform-origin: center center;
}
#loader svg:nth-child(2) circle {
  stroke: #741327;
  stroke-dasharray: 1, 300;
  stroke-dashoffset: 0;
  animation: strokeanim 3s calc(.2s * (2)) ease infinite;
  transform-origin: center center;
}
#loader svg:nth-child(3) circle {
  stroke: #333841;
  stroke-dasharray: 1, 300;
  stroke-dashoffset: 0;
  animation: strokeanim 3s calc(.2s * (3)) ease infinite;
  transform-origin: center center;
}
#loader svg:nth-child(4) circle {
  stroke: #262629;
  stroke-dasharray: 1, 300;
  stroke-dashoffset: 0;
  animation: strokeanim 3s calc(.2s * (4)) ease infinite;
  transform-origin: center center;
}
@keyframes strokeanim {
  0% {
    stroke-dasharray: 1, 300;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 120, 300;
    stroke-dashoffset: -58.54832;
  }
  100% {
    stroke-dasharray: 120, 300;
    stroke-dashoffset: -175.64497;
  }
}
@keyframes contanim {
  100% {
    transform: rotate(360deg);
  }
}
