body {
  background-color: #111111;
}

.card {
  transition: all 0.3s ease-out;
  margin: 15px;
  border: 0;
  background-color: #1e1e1f;
}

.card .card-body {
  border-radius: 15px;
  color: white;
}

.banner {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.texto-sorteios {
  color: white;
  text-align: center;
  margin-top: 80px;
}

.images {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 100px;
  color: white;
}

.text-sorteios {
  color: white;
  text-align: center;
  margin-top: 50px;
}

.desc-sorteios {
  color: white;
  text-align: center;
}

.custom-button {
  background-color: rgb(111, 108, 112);
  color: white;
}

.custom-button:hover {
  background-color: rgb(131, 127, 133);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #1e1e1f;
}

::-webkit-scrollbar-thumb {
  background: #58585c;
}

::-webkit-scrollbar-thumb:hover {
  background: #2f2f31;
}

.dashboard-last {
  display: flex;
  justify-content: center;
}

.dropdown-item {
  color: white;
}

tr button {
  margin: 3px;
  margin-top: -5px;
}

.desc {
  margin-top: 100px;
}

.linha-numeros {
  text-align: center;
}

.numero-container {
  display: inline-block;
  position: relative;
}

.numero {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.numero-container:hover .numero {
  cursor: pointer;
}

.numero.selecionado {
  background-color: rgb(116, 116, 116);
  color: white;
}

.retangulo-livre {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  border-radius: 5px;
  width: auto;
  height: auto;
  white-space: nowrap;
  display: none;
  z-index: 1;
}

.numero-container:hover .retangulo-livre {
  display: block;
}

.botoes {
  text-align: center;
  margin-top: 10px;
}

.botao {
  margin-right: 5px;
  cursor: pointer;
}

.random-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.cart {
  display: flex;
  justify-content: center;
  text-align: center;
}

.numero.comprado {
  background-color: rgb(48, 150, 48);
  color: white;
}

.numero.reservado {
  background-color: rgb(43, 105, 199);
  color: white;
}

.cotas {
  display: flex;
  justify-content: center;
}

.linha-numeros {
  padding: 10px;
}

.phone-button {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.phone-button:hover {
  background-color: #45a049;
}

.termos {
  display: flex;
  justify-content: center;
}

.termos .card {
  margin: 20px;
  padding: 20px;
}

.termos .card iframe {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.underline-text {
  text-decoration: underline;
}

.badge-square {
  width: 80px;
  height: 40px;
  text-align: center;
  line-height: 1.5;
  border-radius: 0;
}

.badge-square:first-child {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.badge-square:last-child {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.quadrado {
  display: none;
  width: 100vw;
  height: 12vh;
  background-color: #1e1e1f;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.quadrado .conteudo .valorTotal {
  font-size: 14px;
  font-weight: bold;
  color: white;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .quadrado {
    height: 30vh !important;
    width: 100% !important;
  }

  .quadrado .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .quadrado .conteudo .numeroSelecionados {
    cursor: grab;
    user-select: none;
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(8, 50px);
  }
}

.quadrado .conteudo {
  height: 100%;
}

.quadrado .clearNumbers {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -20px;
  width: 100%;
}

.quadrado .clearNumbers button {
  border-radius: 50px;
  margin: 0 auto;
  margin-top: -35px;
}

.conteudo {
  display: flex;
  flex-direction: row;
  padding: 0 15%;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.conteudo .buttonAndSelectedNumbers {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.conteudo .squadNumber {
  background-color: rgb(247, 242, 242);
  color: rgb(0, 0, 0);
  padding: 12px 12px;
  margin: 2px;
  border-radius: 50px;
  height: fit-content;
}

.conteudo .buttonAndSelectedNumbers span {
  margin-right: 10px;
}

.conteudo .buttonAndSelectedNumbers span {
  color: white !important;
}

.conteudo button {
  text-align: center;
}

button:hover {
  content: '';
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both; 
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.dashboard-buys button{
  margin: 5px;
}

.listar-rifas button {
  margin: 5px;
}

.qrcode {
  display: flex;
  justify-content: center;
}

.info-qrcode {
  text-align: center;
  color: white;
}

.info-copypix {
  display: flex;
  justify-content: center;
}

.copybutton {
  display: flex;
  justify-content: center;
}

.botao-copy {
  width: 150px;
}

.detail-pay {
  text-align: center;
  margin-top: 20px;
}

.detail-pay p {
  color: white;

}

.desc-pay {
  color: gray;
}

.custon-badge:first-child {
  background-color: #FFC107;
}

.custon-badge:last-child {
  background-color: #17A2B8;
}

.ordes {
  display: flex;
  justify-content: center;
}

.resultordes .card-text{
  margin: 1px;
}

.info-order {
  display: flex;
  justify-content: center;
}

.custom-alert {
  width: auto;
  margin: 0 auto;
  text-align: center; 
  padding: 10px;
}

.button-card {
  display: flex;
  align-items: column;
  margin: 20px;
}

.button-margin {
  margin-right: 10px;
}