#circle-orbit-container {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 300px;
  width: 300px;
  background: transparent;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../webimages/playnwincard.png);
  background-size: cover;
  background-position: center;
  filter: drop-shadow(0 0 20px rgba(225, 133, 133, 0.5));
}

@media (max-width: 768px) {
  #circle-orbit-container {
    top: 40%;
    height: 300px;
  }
}

#middle-orbit {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 225px;
  height: 225px;
  border: 1px rgba(225, 133, 133, 0.2) solid;
  border-radius: 100%;
  -webkit-animation: spin-right 15s linear infinite;
  animation: spin-right 15s linear infinite;
}

#outer-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 294px;
  height: 294px;
  border: 1px rgba(225, 133, 133, 0.2) solid;
  border-radius: 100%;
  -webkit-animation: spin-right 20s linear infinite;
  animation: spin-right 20s linear infinite;
}

.middle-orbit-circles img {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 20px rgba(225, 107, 107, 0.5);
  padding: 10px;
}

.outer-orbit-circles img {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 20px rgba(225, 107, 107, 0.5);
  padding: 10px;
}

@-webkit-keyframes spin-right {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.middle-orbit-circles img {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(0deg);
}

.outer-orbit-circles img {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(0deg);
}

.textDiv {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: Metropolis, sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .textDiv {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.textDiv span {
  color: #C71C22;
}

.progress-container {
  width: 100%;
  background-color: #f2f2f21e;
  border-radius: 5px;
  margin-top: 10%;
}

.progress-bar {
  width: 0%;
  height: 8px;
  background-color: #ed1c24;
  border-radius: 5px;
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

body {
  background-image: url('../webimages/bg-desktop.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000;
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
  body {
    background-image: url('../webimages/bg-mobile.svg');
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body {
    background-image: url('../webimages/bg-mobile.svg');
  }
}

.loader {
  display: none;
}