@font-face {
  font-family: "Onest";
  src: local("Onest Regular"), local("Onest-Regular"), url(../fonts/Onest-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.landing-bonus {
  max-width: 100%;
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px auto 0 auto;
}
.landing-bonus-wrapper {
  background: rgb(35, 35, 35);
  min-height: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.landing-bonus__day {
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 6px;
  margin-top: 10px;
}

.betboom-match-wrapper {
  display: inline-block;
  min-width: 360px;
}
.betboom-match-loading, .betboom-match-empty {
  padding: 20px;
  color: #888;
  font-size: 14px;
  background: #1c1c1e;
  border-radius: 12px;
  margin-bottom: 10px;
}
.betboom-match-loading::after {
  content: "...";
  -webkit-animation: dots 1.5s steps(4, end) infinite;
          animation: dots 1.5s steps(4, end) infinite;
  width: 20px;
  display: inline-block;
  text-align: left;
}
.betboom-match-card {
  display: block;
  text-decoration: none;
  background: #1c1c1e;
  border-radius: 12px;
  padding: 16px 18px 14px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 360px;
}
.betboom-match-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E") no-repeat center;
  background-size: 20px;
  opacity: 0.8;
}
.betboom-match-teams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.betboom-match-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.betboom-match-logo {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
.betboom-match-team-name {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.betboom-match-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 8px;
}
.betboom-match-date {
  font-size: 12px;
  color: #8e8e93;
  font-weight: 500;
}
.betboom-match-time {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.betboom-match-odds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.betboom-match-odd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  background: #2c2c2e;
  border-radius: 8px;
  font-size: 14px;
}
.betboom-match-odd > span:first-child {
  color: #8e8e93;
  font-weight: 500;
}
.betboom-match-odd > span:last-child {
  color: #fff;
  font-weight: 600;
}
.betboom-match-odd--highlight {
  background: #ffcc00;
}
.betboom-match-odd--highlight > span:first-child {
  color: #1c1c1e;
}
.betboom-match-odd--highlight > span:last-child {
  color: #1c1c1e;
}

@-webkit-keyframes dots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}

@keyframes dots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}