.mobile-header {
  background: #FFB80C;
  position: relative;
}
.mobile-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.mobile-header-logo-container {
  height: 32px;
  margin: 0 8px;
}
.mobile-header-link {
  text-decoration: none;
}
.mobile-header-logo {
  max-height: 100%;
  max-width: 150px;
}
@media screen and (max-width: 374px) {
  .mobile-header-logo { width: 115px; }
}
.mobile-header-actions {
  text-align: right;
  padding-right: 3px;
}
.mobile-header-icon {
  height: 20px;
  width: 20px;
}
.mobile-header-card {
  display: inline-block;
  position: relative;
  text-align: center;
  min-width: 46px;
  height: 36px;
  margin-right: 3px;
  background: #424242;
  color: white;
  border-radius: 3px;
  padding: 5px;
  font-size: 10px;
}
.mobile-header-card img {
  max-height: 17px;
  margin-bottom: 5px;
}
.mobile-header-card span {
  font-weight: bold;
}

.mobile-header-bets-counter {
  visibility: hidden;
  position: absolute;
  top: 1px;
  right: 1px;
  font-size: 11px;
  color: white;
  font-weight: bold;
  background-color: red;
  padding: 1px 4px 1px 3px;
  border-radius: 7px;
}
.mobile-header-bets-counter.animated {
  animation: zoomInOut 0.4s cubic-bezier(0.06, 0.82, 0.01, 1.52);
}

@keyframes zoomInOut {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.75, 1.75);
  }
  100% {
    transform: scale(1, 1);
  }
}
