:root {
  --plain-color: white;
  --stroke-color: #5d862e;
}

.err-d-4-sec .loading h1 {
  text-align: center;
  margin-top: 0px;
  font-size: 32px;
}
.err-d-4-sec .loading h2 {
  text-align: center;
  margin-top: 0px;
}
.err-d-4-sec .loading .gears {
  position: relative;
  margin: 0 auto;
  width: auto;
  height: 150px;
}
.err-d-4-sec .loading .gear {
  position: relative;
  z-index: 0;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--stroke-color);
}
.err-d-4-sec .loading .gear:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  border-radius: 50%;
  background: var(--plain-color);
}
.err-d-4-sec .loading .gear:after {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid var(--stroke-color);
  box-sizing: border-box;
  background: var(--plain-color);
}
.err-d-4-sec .loading .gear.one {
  left: -130px;
  animation: anticlockwiseErrorStop 2s linear infinite;
}
.err-d-4-sec .loading .gear.two {
  top: -75px;
  animation: anticlockwiseError 2s linear infinite;
}
.err-d-4-sec .loading .gear.three {
  top: -235px;
  left: 130px;
  animation: clockwiseError 2s linear infinite;
}
.err-d-4-sec .loading .gear .bar {
  position: absolute;
  left: -15px;
  top: 50%;
  z-index: 0;
  width: 150px;
  height: 30px;
  margin-top: -15px;
  border-radius: 5px;
  background: var(--stroke-color);
}
.err-d-4-sec .loading .gear .bar:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 1;
  border-radius: 2px;
  background: var(--plain-color);
}
.err-d-4-sec .loading .gear .bar:nth-child(2) {
  transform: rotate(60deg);
}
.err-d-4-sec .loading .gear .bar:nth-child(3) {
  transform: rotate(120deg);
}

@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes anticlockwise {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes clockwiseError {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(30deg);
  }
  40% {
    transform: rotate(25deg);
  }
  60% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes anticlockwiseError {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-30deg);
  }
  40% {
    transform: rotate(-25deg);
  }
  60% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes anticlockwiseErrorStop {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-30deg);
  }
  60% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* Responsive adjustment below 575px */
@media (max-width: 575px) {
  .err-d-4-sec .loading h1 {
    font-size: 24px;
  }
  .err-d-4-sec .loading .gears {
    height: 100px;
  }
  .err-d-4-sec .loading .gear {
    width: 80px;
    height: 80px;
  }
  .err-d-4-sec .loading .gear:after {
    left: 17px;
    top: 17px;
    width: 45px;
    height: 45px;
    border-width: 4px;
  }
  .err-d-4-sec .loading .gear.one {
    left: -85px;
  }
  .err-d-4-sec .loading .gear.two {
    top: -50px;
  }
  .err-d-4-sec .loading .gear.three {
    top: -150px;
    left: 85px;
  }
  .err-d-4-sec .loading .gear .bar {
    width: 104px;
    height: 20px;
    margin-top: -10px;
  }
}/*# sourceMappingURL=errorDesign4.css.map */