.points__info {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  background-color: rgb(250, 250, 250);
  font-size: 14px;
  border-top: 1px solid rgb(189, 189, 189);
}

.points__amount {
  font-weight: 700;
}

.points__group {
  margin-top: 0;
  list-style-type: none;
  padding: 15px;
  background-color: #f5f5f5;
}

.points__point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.points__point:last-child {
  margin-bottom: 0;
}

.points__details {
  display: flex;
  align-items: center;
}

.points__img {
  width: 50px;
  height: 50px;
  margin-right: 4px;
}

.points__total {
  font-size: 18px;
  font-weight: 700;
}

.points__total_desc {
  font-size: 16px;
}

@media (max-width: 768px) {
  .points__total {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .points__total_desc {
    font-size: 14px;
  }
}
.points__buy {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: white;
  background-color: #333;
  font-size: 15px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .points__buy {
    font-size: 14px;
  }
}
.points__buy_link {
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.points__badge {
  background-color: #ff3643;
  color: white;
  font-size: 12px;
  border-radius: 4px;
  padding: 4px;
  margin-left: 12px;
  display: inline-block;
}

.points__bonus-coin {
  color: #ff8c62;
  font-size: 12px;
  padding-top: 4px;
  margin-left: 12px;
}

.points__countdown {
  display: flex;
  align-items: center;
  color: white;
  background-color: #333;
  padding: 4px;
  font-size: 12px;
  margin-left: 12px;
}

.points__timer {
  margin-left: 4px;
}