.player-detail{
  position: absolute;
  bottom: 0px;
  width: 800px;
  height: 100px;
  background: #1d1d1d;
  display: flex;
  padding: 0 20px;
}
.player-detail-container{
  flex: 1;
  display: flex;
}
.player-detail-flag{
  width: 100px;
  height: 100%;
}
img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.player-detail-name{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-size: 28px;
}
.match-result{
  width: 150px;
  height: 100%;
  background: #f30256;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}
.reverse{
  flex-direction: row-reverse;
}

.animation-detail{
  position: fixed;
  top: 0;
  left: 0px;
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
  /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
}
.description-title{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.description-detail{
  font-size: 14px;
  margin-bottom: 6px;
}
.circle::before{
  margin-right: 10px;
   content: '';
   display: inline-block;
   width: 15px;
   height: 15px;
   -moz-border-radius: 7.5px;
   -webkit-border-radius: 7.5px;
   border-radius: 7.5px;
   background-color: #ffb300;
}
.circle-no-spin::before{
  margin-right: 10px;
   content: '';
   display: inline-block;
   width: 15px;
   height: 15px;
   -moz-border-radius: 7.5px;
   -webkit-border-radius: 7.5px;
   border-radius: 7.5px;
   background-color: #ff7070;
}
.red{
  color: #7174f3;
}
.yellow{
  color: red;
}
