@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
p {
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.bonus {
  padding: 10px;
  text-align: center;
  background: linear-gradient(135deg, #ff0080, #ff4da6);
}
.bonus a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.bonus img {
  margin-right: 10px;
}

@media only screen and (max-width: 479px) {
  .bonus {
    font-size: 12px;
  }
  
.offcanvas-md {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: none !important;
}

}
.content-telegram {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.telegram-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.telegram-image {
    max-width: 50px;
    background: none;
    margin-bottom: -7px;
}

.telegram-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    background: linear-gradient(to right, #ff0080, #ff4da6);
    border-bottom: 2px solid #ffffff;
    margin-top: 10px;
}

.telegram-button:hover {
    background: linear-gradient(to right, #ff4da6, #ff0080);
}

.telegram-button img {
    max-width: 25px;
}
#video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
}

#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -999;
}

#video-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 50px;
}
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader img {
  max-width: 300px;
}
.font {
  font-family: "Montserrat", sans-serif;
}

a:hover {
  text-decoration: none;
  color: white;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.adv {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

img {
  vertical-align: middle;
  border-style: none;
}
.alert2 {
  display: table;
  position: relative;
  width: 100%;
  background-color: #ff0080;
  margin-bottom: 20px;
  color: #fff;
  transition: 0.2s;
  text-align: left;
}
.alert2-body,
.alert2-icon {
  display: table-cell;
  vertical-align: middle;
}
.alert2.is-hidden {
  opacity: 0;
  height: 0;
  font-size: 0;
  padding: 0;
  margin: 0 auto;
  display: block;
}
.alert2--warning {
  background-color: #f39c12;
}
.alert2--error {
  background-color: #ff4136;
}
.alert2--success {
  background-color: #2ecc40;
}
.alert2-button,
.alert2-icon {
  background-color: rgba(0, 0, 0, 0.25);
}
.alert2-icon {
  width: 60px;
  padding: 20px;
  text-align: center;
}
.alert2-icon > i {
  width: 20px;
  font-size: 20px;
}
.alert2-body {
  padding: 10px 20px;
}
.alert2-body > p {
  line-height: 1.2;
  margin-top: 6px;
}
.alert2-button {
  position: relative;
  margin: 15px 5px -10px;
  box-shadow: 0 3px rgba(0, 0, 0, 0.4);
  padding: 5px 15px;
  font-size: 14px;
  text-decoration: none;
}
.alert2-button:active {
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
  top: 3px;
}
.alert2-close {
  position: absolute;
  background: 0 0;
  font-size: 15px;
  right: 10px;
  top: 8px;
  opacity: 1;
}
.alert2:hover .alert2-close,
.form-horizontal .main-checkbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.alert2-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.alert2-button:active,
.alert2-button:hover {
  background: rgba(0, 0, 0, 0.3);
}
.alert2-button,
.alert2-close {
  color: #fff;
  border: none;
  outline: 0;
  cursor: pointer;
}
.title {
  display: flex;
  justify-content: center;
}

.title-text {
  color: white;
  font-size: 2.5rem;
}

.form-bg {
  max-width: 500px;
  margin: 0 auto;
}
.form-horizontal {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: rgb(0 0 0 / 16%) 1px 1px 10px;
  padding-bottom: 40px;
  border-radius: 5px;
  text-align: center;
}
.form-horizontal .heading {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ff0080;
  padding: 10px 0;
  border-bottom: 5px solid #ff0080;
  margin-bottom: 30px;
}
.form-horizontal .form-group {
  padding: 0 40px;
  margin: 0 0 25px;
  position: relative;
}
.form-horizontal .form-control {
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid #cc0066;
  box-shadow: none;
  color: #fff;
  border-radius: 15px;
  padding: 0 30px 0 45px;
  height: 50px;
  transition: 0.3s;
}
.form-horizontal .form-control:focus {
  box-shadow: none;
  outline: 0;
}
.form-control::placeholder {
  color: rgba(253, 253, 253, 0.5);
  opacity: 1;
}
.form-horizontal .form-group i {
  position: absolute;
  top: 16px;
  left: 60px;
  font-size: 17px;
  color: #ff0080;
  transition: 0.5s;
}
.form-horizontal .form-control:focus + i {
  color: #ff0080;
}
.form-horizontal .fa-eye,
.form-horizontal .fa-eye-slash {
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 60px;
  font-size: 20px;
  color: grey;
  transition: 0.5s;
}
.form-horizontal .fa-eye:hover {
  color: #ff0080;
}
.form-horizontal .main-checkbox {
  float: left;
  width: 20px;
  height: 20px;
  background: #ff0080;
  border-radius: 50%;
  position: relative;
  margin: 5px 0 0 5px;
  border: 1px solid #ff0080;
}
.form-horizontal .main-checkbox label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.form-horizontal .main-checkbox label:after {
  content: "";
  width: 10px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #fff;
  border-top: none;
  border-right: none;
  background: 0 0;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.form-horizontal .main-checkbox input[type="checkbox"] {
  visibility: hidden;
}
.form-horizontal .text {
  float: left;
  margin-left: 7px;
  line-height: 20px;
  padding-top: 5px;
  text-transform: capitalize;
}
.form-horizontal .btn {
  font-weight: 400;
  float: right;
  font-size: 14px;
  border: 2px solid #cc0066;
  color: #fff;
  padding: 10px 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  transition: background-color 0.5s, box-shadow 0.5s;
  background: linear-gradient(to right, #ff0080, #ff4da6);
}

.form-horizontal .btn:hover {
  background: linear-gradient(to right, #ff4da6, #ff0080);
  box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
  transform: scale(1.02);
}

.form-footer {
  text-align: left;
  padding: 20px 40px;
  border-top: 6px solid #ff0080;
  margin-top: 50px;
}

.form-footer h5 {
  font-weight: bold;

  color: #ff0080;
  margin-bottom: 0;
}

.form-footer a {
  font-weight: bold;
  color: #ff0080;
}

@media only screen and (max-width: 479px) {
  .form-horizontal .form-group {
    padding: 0 25px;
  }
  .form-horizontal .form-group i {
    left: 45px;
  }
  .form-horizontal .btn {
    padding: 10px 20px;
  }
}

.content-div {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: rgb(0 0 0 / 16%) 1px 1px 10px;
  border-radius: 5px;
}

.plataformas {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #ff0080;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: rgb(0 0 0 / 16%) 1px 1px 10px;
  border-radius: 5px;
}
.plataformas h3 {
  display: table;
  margin: -15px auto 20px auto;
  background: linear-gradient(135deg, #ff0080, #ff4da6);
  font-size: 20px;
  font-weight: bold;
  padding: 0 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  border-radius: 10px;
}
.plataformas .casa {
  max-width: 100px;
  border: 2px solid #ff0080;
  border-radius: 10px;
}
.plataformas .casa img {
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 479px) {
  .plataformas .box_div h3 {
    font-size: 15px;
  }
  .plataformas .casa {
    max-width: 60px;
  }
  .plataformas .casa img {
    height: auto;
  }
}

.content-div .heading {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ff0080;
  padding: 10px 20px;
  border-bottom: 5px solid #ff0080;
  margin-bottom: 30px;
}

.content-div .form-control {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #cc0066;
  box-shadow: none;
  color: #fff;
  border-radius: 0;
  padding: 5px 10px;
  transition: 0.3s;
}

.gfg {
  height: 50px;
  width: 50px;
}

.mynav {
  color: #fff;
}

.mynav li a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  display: block;
  border-radius: 5px;
  padding: 8px 15px;
}

.mynav li a.active {
  background: rgba(255, 255, 255, 0.2);
}

.mynav li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mynav li a i {
  width: 25px;
  text-align: center;
}

.notification-badge {
  background-color: rgba(255, 255, 255, 0.7);
  float: right;
  color: #222;
  font-size: 14px;
  padding: 0px 8px;
  border-radius: 2px;
}

.telegram {
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(to right, #ff0080, #ff4da6);
  font-family: "Montserrat", sans-serif;
}

.telegram a {
  text-decoration: none;
}

.logo-animation {
  animation: pulse 2s infinite;
}

.blink {
  animation: blink-animation 1s infinite;
}

table.dataTable tbody tr {
    background-color: #000; 
}

.modal-backdrop.show {
  opacity: 0;
}

.favorite-animation {
  animation-name: fadeInOut;
  animation-duration: 0.5s;
}

@keyframes fadeInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.flex {
  padding: 0;
  margin: 0;
  list-style: none;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}

.flex .item {
  text-align: left;
  margin-bottom: 40px;
}

.flex .item img {
  max-width: 200px;
  border-radius: 5px;
}

.favorite {
  color: gold;
}

.bg-success {
  background-color: rgb(0 187 102) !important;
}

.bg-info {
  background-color: rgb(0 113 149) !important;
}

.game-list .progress-bar.bg-success {
  background-color: #198754 !important;
  background-image: none !important;
}

.game-list .progress-bar.bg-warning {
  background-color: #ffc107 !important;
  background-image: none !important;
}

.game-list .progress-bar.bg-danger {
  background-color: #dc3545 !important;
  background-image: none !important;
}

.game-list .progress-bar.bg-info {
  background-color: #0dcaf0 !important;
  background-image: none !important;
}

.game-list .progress-bar.bg-primary {
  background-color: #0d6efd !important;
  background-image: none !important;
}

.modal .progress-bar.bg-success {
  background-color: #198754 !important;
  background-image: none !important;
}

.modal .progress-bar.bg-warning {
  background-color: #ffc107 !important;
  background-image: none !important;
}

.modal .progress-bar.bg-danger {
  background-color: #dc3545 !important;
  background-image: none !important;
}

.modal .progress-bar.bg-info {
  background-color: #0dcaf0 !important;
  background-image: none !important;
}

.modal .progress-bar.bg-primary {
  background-color: #0d6efd !important;
  background-image: none !important;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #ff0080, #ff4da6);
  padding: 5px;
  font-size: 14px;
}

.marquee span {
  font-family: "Montserrat", sans-serif;
  padding-right: 30px;
  padding-left: 30px;
  border-left: 2px solid #cc0066;
  color: #fff;
  font-weight: bold;
}

.marquee .win {
  color: rgb(3, 233, 129) !important;
  border-radius: 5px;
  font-size: 12px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.7);
}

.marquee .user {
  color: #fff;
}

.marquee img {
  margin-right: 5px;
  max-width: 30px;
  max-height: 30px;
  border-radius: 5px;
  border: 1px solid #cc0066;
}

.nav-item img {
  margin-right: 3px;
}

.revoltz-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ff0080, #ff4da6);
  border-radius: 5px;
  color: #fff;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  overflow: visible;
  border: 2px solid #cc0066;
  font-weight: bold;
  width: 100%;
  margin-bottom: -25px;
}

.revoltz-button img {
  width: 80px;
  margin-right: 10px;
  animation: moveUpDown 2s infinite alternate;
  position: absolute;
  right: 0;
}

.revoltz-button p {
  font-size: 14px;
  text-align: left;
}

.revoltz-button p {
  font-weight: bold;
}

.revoltz-button span {
  text-transform: uppercase;
}

.revoltz-button:hover {
  background: linear-gradient(to right, #ff4da6, #ff0080);
  box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
  transform: scale(1.02);
}

.revoltz-button .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}

.or-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.or-container .line {
  height: 1px;
  background-color: #ff0080;
  flex-grow: 1;
  margin: 0 1rem;
}

.or-container .or-text {
  color: #ff0080;
  font-weight: bold;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media only screen and (max-width: 479px) {
  .flex .item img {
    max-width: 130px;
  }

  .flex .item p {
    font-size: 13px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
  }

  #countdown {
    font-size: 10px;
  }

  .game-list {
    padding: 0;
  }

  .marquee span {
    font-size: 12px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .marquee .win {
    font-size: 11px;
  }
}

.question-money {
  font-size: 15px;
}

.tooltip {
  z-index: 9999;
}

.indique-ganhe {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  color: #fff;
}

.link-ref {
  background: linear-gradient(135deg, #ff0080, #ff4da6);
  color: #fff;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
}

.totals h3 {
  color: #ff0080;
}

.link-ref a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}


.link-text {
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
}


.btn-warning {
  background: linear-gradient(135deg, #ff0080, #ff4da6) !important;
  border-color: #ff0080 !important;
  color: #fff !important;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #ff4da6, #ff0080) !important;
  border-color: #ff4da6 !important;
}

.text-warning {
  color: #ff4da6 !important;
}

.bg-warning {
  background: linear-gradient(135deg, #ff0080, #ff4da6) !important;
}

.border-warning {
  border-color: #ff0080 !important;
}

.text-primary {
  color: #ff0080 !important;
}

.bg-primary {
  background: linear-gradient(135deg, #ff0080, #ff4da6) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0080, #ff4da6) !important;
  border-color: #ff0080 !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff4da6, #ff0080) !important;
  border-color: #ff4da6 !important;
}