
.v-sheep {
  width: 500px;
  height: 400px;
  border: 1px black solid;
  margin: 10px;
}
.v-sheep-top {
  height: 500px;
}
.v-sheep-area {
  margin-top: 60px;
}
.card-box {
  width: 350px;
  height: 100%;
  // background-color: black;
  margin: 0 auto;
  position: relative;
}
.sheep-card {
  width: 48px;
  height: 48px;
  border: 1px #666 solid;
  line-height: 48px;
  text-align: center;
  position: absolute;
  background-color: #fff;
  font-size: larger;
}
.selected-card-box {
  width: 350px;
  height: 50px;
  background-color: #eee;
  margin: 0 auto;
  display: flex;
}
.selected-card {
  width: 48px;
  height: 48px;
  border: 1px #666 solid;
  line-height: 48px;
 
}
.play-btn {
  margin-top: 50px;
}
.play {
  margin-top: 10px;
}
#animated_div {
  width: 70px;
  height: 47px;
  background: #92B901;
  color: #ffffff;
  position: relative;
  font-weight: bold;
  font-size: 10px;
  line-height: 25px;
  padding: 10px;
  animation: animated_div 5s 1;
  -moz-animation: animated_div 5s 1;
  -webkit-animation: animated_div 5s 1;
  -o-animation: animated_div 5s 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  box-sizing: border-box;
  animation-iteration-count: infinite;
}

@keyframes animated_div {
0% {
    transform: rotate(0deg);
    left: 0px;
  }

  25% {
    transform: rotate(20deg);
    left: 0px;
  }

  50% {
    transform: rotate(0deg);
    left: 430px;
  }

  55% {
    transform: rotate(0deg);
    left: 430px;
  }

  70% {
    transform: rotate(0deg);
    left: 430px;
    background: #1ec7e6;
  }

  100% {
    transform: rotate(-360deg);
    left: 0px;
  }
}