.btn-container {
  display: flex;
  flex-wrap: wrap;
}

.rowBicho2 {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding: 10px 0;
  background-color: #ff9207;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 13px;
}

.btn-premio {
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
}

.btn-premio.selected {
  background-color: #28a745;
  border-color: #1e7e34;
}

.content-wrapper {
  max-width: 800px;
  margin: auto;
  margin-top: -20px;
  padding: 1px;
}

.btn-clear {
  text-align: left;
  color: red;
  cursor: pointer;
  display: block;
  margin-top: 10px;
}

.input-group-prepend {
  margin-top: 10px;
  font-weight: bold;
}

.info-container-premio {
  font-size: 16px;
  text-align: center;
}

.info-container-horario {
  font-size: 16px;
  text-align: center;
}

#info-output-premio {
  color: #ff45e7;
}

#info-output-horario {
  color: #ffbf00;
}

.btn-container-help {
  display: none;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  text-align: center;
  background-color: #141414;
  border: 1px solid #5b3737;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000;
}

.btn-container-help.show {
  display: flex;
  opacity: 1;
}

.btn-container-help img {
  max-width: 100%;
}

.btn-container-help span {
  display: block;
  word-wrap: break-word;
}

.container-botoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#tipos_jogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.number-button {
  background-color: #00374b;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.checkbox-container label {
  font-size: 15px;
  color: #0de7ff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.doate-label {
  display: block;
  font-size: 17px;
  color: #72ff3a;
  text-align: center;
  margin: 20px 0;
}

.agendar-label {
  display: block;
  font-size: 17px;
  color: #72ff3a;
  text-align: center;
  margin: 10px 0;
}

.selected-time {
  display: inline-flex;
  align-items: center;
  background-color: #103bff;
  color: #ffffff;
  padding: 7px 8px;
  margin: 5px;
  border-radius: 5px;
}

.selected-times-container {
  text-align: center;
}

.onoffswitch {
  position: relative;
  width: 105px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-top: 20px;
}

.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #999999;
  border-radius: 20px;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 22px;
  padding: 0;
  line-height: 22px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "Multiplicar";
  padding-left: 10px;
  background-color: #28a745;
  color: #ffffff;
}

.onoffswitch-inner:after {
  content: "Dividir";
  padding-right: 10px;
  background-color: #dc3545;
  color: #ffffff;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 23px;
  margin: 1px;
  background: #ffffff;
  border: 2px solid #999999;
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 23px;
  right: 80px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

#statusText {
  margin-top: 10px;
  font-size: 16px;
}

.pulse-border {
  border: 2px solid #00ff00;
  animation: pulse 1.5s infinite;
  transition: border-color 0.3s ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 6px 3px rgba(255, 255, 51, 0.8);
  }

  50% {
    box-shadow: 0 0 12px 6px rgba(255, 255, 51, 0.6);
  }

  100% {
    box-shadow: 0 0 6px 3px rgba(255, 255, 51, 0);
  }
}

#ValorApostado::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.horario-container {
  text-align: center;
  margin-bottom: 20px;
}

.horario-titulo {
  font-size: 1.5rem;
  color: #ffa71e;
  font-weight: bold;
  margin-bottom: 15px;
}

.horario-botoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.horario-botoes button {
  min-width: 80px;
}

.cor-titulo {
  color: rgb(30, 210, 255);
}

.btn-container-modalidades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-container-modalidades button {
  flex: 1 1 calc(50% - 20px);
  /* celular: 2 por linha */
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #044d89;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-container-modalidades button:hover {
  background-color: #0056b3;
}

@media (min-width: 768px) {
  .btn-container-modalidades button {
    flex: 1 1 calc(25% - 20px);
    /* desktop: 4 por linha */
  }
}

.selected-modalidade-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.selected-modalidade-item .btn-modalidade {
  border: 1px solid #607d00;
  color: #ffffff;
  background-color: #433a05;
  pointer-events: none;
}

.selected-modalidade-item .btn-modalidade:disabled {
  opacity: 1;
}

.selected-modalidade-item .bi-trash {
  color: red;
  font-size: 15px;
  cursor: pointer;
}

/* botoes select bichos grupos */

.header_bichos {
  width: 100px;
  height: 95px;
  background-color: #0f909b;
  border-radius: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 2px;
  float: left;
  cursor: pointer;
}

.btn_close_bicho {
  position: absolute;
  right: -1em;
  top: -0.8em;
  padding: 0;
  border: 0;
}

.is-invalid2 {
  box-shadow: 0px 0px 3px 0px #ea2525;
}

.nm_bichos {
  width: 87px;
  margin: 0 auto;
}

.header_bichos:hover {
  color: #000000;
  text-decoration: none;
  background: #c37209;
}

.bichos {
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 531px) {
  .bichos {
    max-width: 384px;
  }
}

@media (max-width: 466px) {
  .bichos {
    max-width: 289px;
  }
}

@media (max-width: 766px) {
}

li {
  list-style-type: none;
}

.ulJogosFeitos {
  padding: 0;
  margin-top: 1em;
}

.liJogosFeitos {
  margin-bottom: 0.4em;
  background: #2d3436;
  padding: 0.5em 1em;
  box-shadow: 0px 0px 3px 0px #000;
  color: #d2d2d2;
  border-radius: 2px;
  cursor: pointer;
}

.btn_inv {
  float: right;
  margin-top: -2px;
  background: none;
  border: 0;
  color: #fff;
}

.btn_inv i {
  vertical-align: middle;
}

.circulo2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  margin: 1px;
  margin-left: 38px;
  margin-right: -20ex;
  margin-top: 1px;
  font-size: 31px;
  font-weight: bold;
  color: #000000;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #aeced3),
    color-stop(16%, #ffffff3b),
    color-stop(100%, #ffffff45)
  );
}

.nomebicho {
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: -20px;
  display: inline-block;
  font-size: 15px;
  width: 100%;
}

.center {
  display: table;
  margin: 0 auto;
  margin-left: 2.3em;
}

.btn_close_bicho {
  position: absolute;
  right: -1em;
  top: -0.8em;
  padding: 0;
  border: 0;
}

.is-invalid2 {
  box-shadow: 0px 0px 3px 0px #ea2525;
}

.nm_bichos {
  width: 87px;
  margin: 0 auto;
}

.bichos {
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 531px) {
  .bichos {
    max-width: 384px;
  }

  @media (max-width: 466px) {
    .bichos {
      max-width: 289px;
    }
  }
}

.frame {
  float: left;
  width: 100%;
  /*largura*/
  height: 100%;
  /*altura*/
  overflow: auto;
}

.divcima {
  background-color: rgb(0, 0, 0);
  width: 100%;
  max-width: 350px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}

.divmeio {
  width: 100%;
  max-width: 350px;
  background-image: linear-gradient(
      115deg,
      #001669,
      #007296 1%,
      #007296 11%,
      #015673 15%,
      #000 23.57%,
      transparent 23.57%,
      transparent 100%
    ),
    linear-gradient(
      109deg,
      transparent,
      #2d8427 23.57%,
      #205a06 41%,
      #000 45%,
      transparent 45%,
      transparent 100%
    ),
    linear-gradient(
      109deg,
      transparent,
      #e79a07 45%,
      #e79a07 50%,
      #e79a07 52%,
      #444 55%,
      transparent 45%,
      transparent 100%
    ),
    linear-gradient(
      109deg,
      transparent,
      #288ab1 55%,
      #288ab1 68%,
      #000 73%,
      transparent 73%,
      transparent 100%
    ),
    linear-gradient(109deg, transparent, #de491e 73%, #de491e 100%);
}

/* aqui sidebar */

.sidebar-tab {
  position: fixed;
  top: 40%;
  right: 0;
  background-color: #024904;
  color: white;
  padding: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.3);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #1e1e1c;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px 10px;
}

.sidebar.active {
  right: 0;
}

.ticket {
  border: 2px dashed #ff531a;
  border-radius: 12px;
  background-color: #2f1313;
  padding: 15px;
  position: relative;
}

.ticket:before,
.ticket:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff8dc;
  border: 2px dashed #ff531a;
  border-radius: 50%;
  z-index: 2;
}

.ticket:before {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.ticket:after {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.ticket-title {
  text-align: center;
  color: #0ce175;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: -10px;
}

#nomeUser {
  font-weight: bold;
  color: #ff531a;
  text-align: center;
  margin-bottom: 10px;
}

.ticket-alert {
  color: #c5ff1a;
  text-align: center;
  font-size: 13px;
  margin-bottom: 12px;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: white;
  font-weight: bold;
}

.horizontal-counter {
  writing-mode: horizontal-tb;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.margin_add {
  max-height: 550px;
  overflow-y: auto;
  padding-right: 5px;
}

/* MENU LOGIN DESKTOP */

.language__wrap {
  position: relative;
  display: inline-block;
}

/* Estilo do botão do menu */
.btn-menu {
  background-color: #333;
  color: white;
  padding: 10px 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-menu span {
  display: inline-block;
}

/* Menu Dropdown */
.menu-options {
  display: none;
  background-color: #333;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-options.active {
  display: block;
}

.menu-nav {
  list-style: none;
  padding: 0;
}

.menu-item {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #444;
}

.menu-item:hover {
  background-color: #444;
}

/* Exibe o menu quando o botão do menu for clicado */
#menu-btn:active + #menu-options,
#menu-options:hover {
  display: block;
}

.custom-alert-success {
  background-color: #101010;
  color: #d3b205;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #000000;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
