.result-row {
  display: flex;
  gap: 6px;
  /* margin: 10px 0; */
  flex-wrap: nowrap;
  justify-content: flex-end;
  /* Align items to the right */
}

@media (max-width: 768px) {
  .result-circle {
    font-size: 14px !important;
  }

  .result-row {
    display: flex;
    gap: 6px;
    /* margin: 10px 0; */
    margin: 5px 0 !important;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

.result-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--color-success);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.result-circle:hover {
  transform: scale(1.1);
}

.cricket20ballresult {
  position: relative;
  width: auto;
  left: unset;
  top: unset;
  margin: 0;
  display: inline-block;
  animation: none;
}

.goal-result img {
  height: 250px;
}

.goal-result span {
  position: absolute;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  top: unset;
  left: 58%;
  color: var(--color-text-black);
  font-weight: bold;
  bottom: -10px;
  font-size: 15px;
  width: 60%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cricket20ballpopup img {
  width: 150px;
}

.cricket20ballpopup span {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: var(--color-text-inverse);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
}

.badge {
  display: inline-block;
  padding: .35em .65em;
  font-size: .75em;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-inverse);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.result-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.casino-result-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  position: relative;
}

@media (max-width: 768px) {
  .casino-result-cards {
    margin-top: 0px !important;
  }
}

.casino-result-cards img {
  height: 50px;
  width: auto;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .casino-result-cards img {
    margin-right: 0px !important;
  }
}

.casino-winner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.casino-result-desc {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  padding: 6px;
  box-shadow: 0 0 4px -1px;
  margin-top: 10px;
}

.casino-result-desc-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.casino-result-desc-item:last-child {
  border-bottom: none;
}

.casino-result-desc-item>div:first-child {
  /* font-weight: bold; */
  color: var(--color-text-main);
}

.casino-result-desc-item>div:last-child {
  color: var(--color-text-muted);
}