.kreiscss__box {
	margin-left: -100px;
	position: fixed; 
	left:50%; 
	top:40%;
	width: 200px; 
	height: 200px; 
}

.kreiscss__wrapper {
  width: 100px;
  height: 200px;
  position: absolute;
  top: 0;
  overflow: hidden;
}

.kreiscss__wrapper--right {
  position: absolute;
  right: 0;
}

.kreiscss__wrapper--left {
  position: absolute;
  left: 0;
}

.kreiscss__whole {
  width: 200px;
  height: 200px;
  border: 20px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: rotate(-135deg);
}

.kreiscss__right {
animation-iteration-count: 4;
border-top: 20px solid #FF9900;
  border-right: 20px solid #FF9900;
  right: 1px;
  animation: kreiscssRight 2s linear infinite;
}

.kreiscss__left {
animation-iteration-count: 4;
  border-bottom: 20px solid #FF9900;
  border-left: 20px solid #FF9900;
  left: 1px;
  animation: kreiscssLeft 2s linear infinite;
}

@keyframes kreiscssRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes kreiscssLeft {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}