.border-x-1{
    border-left: 1px solid rgba(0, 0, 0, 0.125)!important;
    border-right: 1px solid rgba(0, 0, 0, 0.125)!important;
}

.border-x-0{
    border-left: none!important;
    border-right: none!important;
}

.rounded-2xl{
    border-radius: 16px;
}

.rounded-xl{
    border-radius: 12px;
}

.rounded-t-xl{
    border-radius: 12px 0px;
}

.rounded-lg{
    border-radius: 0.5rem; /* 8px */
}
.rounded-b-lg{
    border-radius: 0px 0px 0.5rem 0.5rem; /* 8px */
}
.rounded-t-lg{
    border-radius: 0.5rem 0.5rem 0px 0px; /* 8px */
}

.rounded-xl{
    border-radius: 12px;
}
.multi-select {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
    width: 100%;
    user-select: none;
  }
  .multi-select .multi-select-header {
    border: 1px solid #dee2e6;
    padding: 7px 30px 7px 12px;
    overflow: hidden;
    gap: 7px;
    min-height: 45px;
  }
  .multi-select .multi-select-header::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23949ba3' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
    height: 12px;
    width: 12px;
  }
  .multi-select .multi-select-header.multi-select-header-active {
    border-color: #c1c9d0;
  }
  .multi-select .multi-select-header.multi-select-header-active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .multi-select .multi-select-header.multi-select-header-active + .multi-select-options {
    display: flex;
  }
  .multi-select .multi-select-header .multi-select-header-placeholder {
    color: #65727e;
  }
  .multi-select .multi-select-header .multi-select-header-option {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f7;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 5px;
  }
  .multi-select .multi-select-header .multi-select-header-max {
    font-size: 14px;
    color: #65727e;
  }
  .multi-select .multi-select-options {
    display: none;
    box-sizing: border-box;
    flex-flow: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 5px;
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .multi-select .multi-select-options::-webkit-scrollbar {
    width: 5px;
  }
  .multi-select .multi-select-options::-webkit-scrollbar-track {
    background: #f0f1f3;
  }
  .multi-select .multi-select-options::-webkit-scrollbar-thumb {
    background: #cdcfd1;
  }
  .multi-select .multi-select-options::-webkit-scrollbar-thumb:hover {
    background: #b2b6b9;
  }
  .multi-select .multi-select-options .multi-select-option, .multi-select .multi-select-options .multi-select-all {
    padding: 4px 12px;
    height: 42px;
  }
  .multi-select .multi-select-options .multi-select-option .multi-select-option-radio, .multi-select .multi-select-options .multi-select-all .multi-select-option-radio {
    margin-right: 14px;
    height: 16px;
    width: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
  }
  .multi-select .multi-select-options .multi-select-option .multi-select-option-text, .multi-select .multi-select-options .multi-select-all .multi-select-option-text {
    box-sizing: border-box;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
    font-size: 16px;
    line-height: 20px;
  }
  .multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-radio, .multi-select .multi-select-options .multi-select-all.multi-select-selected .multi-select-option-radio {
    border-color: #40c979;
    background-color: #40c979;
  }
  .multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-radio::after, .multi-select .multi-select-options .multi-select-all.multi-select-selected .multi-select-option-radio::after {
    content: "";
    display: block;
    width: 3px;
    height: 7px;
    margin: 0.12em 0 0 0.27em;
    border: solid #fff;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
  }
  .multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-text, .multi-select .multi-select-options .multi-select-all.multi-select-selected .multi-select-option-text {
    color: #40c979;
  }
  .multi-select .multi-select-options .multi-select-option:hover, .multi-select .multi-select-options .multi-select-option:active, .multi-select .multi-select-options .multi-select-all:hover, .multi-select .multi-select-options .multi-select-all:active {
    background-color: #f3f4f7;
  }
  .multi-select .multi-select-options .multi-select-all {
    border-bottom: 1px solid #f1f3f5;
    border-radius: 0;
  }
  .multi-select .multi-select-options .multi-select-search {
    padding: 7px 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin: 10px 10px 5px 10px;
    width: 100%;
    outline: none;
    font-size: 16px;
  }
  .multi-select .multi-select-options .multi-select-search::placeholder {
    color: #b2b5b9;
  }
  .multi-select .multi-select-header, .multi-select .multi-select-option, .multi-select .multi-select-all {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #212529;
  }
.right-0{
    right: 0!important;
}

.vertical-align-baseline{
    vertical-align: baseline;
}

.vertical-align-middle{
    vertical-align: middle;
}

.vertical-align-bottom{
    vertical-align: bottom;
}
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

@import "typography.css";
@import "borders.css";
@import "positions.css";
@import "skeleton.css";

body {
  font-family: "Source Sans 3", sans-serif;
  /* font-family: 'roboto', sans-serif; */
}

:root {
  --mobile-desktop-width-split: 1024px;

  --primary-light: #fccf2e;
  --secondary-light: #039834;
  --third-light: white;
  --four-light: #ffffff;
  --five-light: #f4f4f4;
  --six-light: #0b0b0b;
  --seven-light: #808080;
  --muted-light: #e1e0e0 !important;
  --eight-light: rgba(0, 0, 0, 0.1);
  --nine-light: rgba(255, 255, 255, 0.8);

  --primary-dark: #ffa800;
  --secondary-dark: #039834;
  --third-dark: #212226;
  --four-dark: #212226;
  --five-dark: #121315;
  --six-dark: #f0f0f0;
  --seven-dark: #ffffff;
  --muted-dark: #839a90 !important;
  --eight-dark: #5f5f5f;
  --nine-dark: rgb(0 0 0 / 62%);

  --primary-yellow: #fccf2e;
  --primary-yellow-dark: #ffa800;
  --secondary-green: #039834;

  --primary: var(--primary-light);
  --secondary: var(--secondary-light);
  --third: var(--third-light);
  --four: var(--four-light);
  --five: var(--five-light);
  --six: var(--six-light);
  --seven: var(--seven-light);
  --eight: var(--eight-light);
  --nine: var(--nine-light);
  --muted: var(--muted-light) !important;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.w-fit {
  width: fit-content !important;
}

a {
  text-decoration: none !important;
}

.text-end {
  text-align: end !important;
}

.fw-bold {
  font-weight: 600 !important;
}

@media screen and (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

.badge-success-soft-my {
  border-radius: 64px !important;
  padding: 8px 16px 8px 16px;

  color: #04543f !important;
  background-color: #def7ec !important;
}

.badge-warning-soft-my {
  border-radius: 64px !important;
  padding: 8px 16px 8px 16px;

  color: #723b13 !important;
  background-color: #fdf6b2 !important;
}

.badge-danger-soft-my {
  border-radius: 64px !important;
  padding: 8px 16px 8px 16px;

  color: #9b1c1c !important;
  background-color: #fde8e8 !important;
}

.badge-muted-soft-my {
  border-radius: 64px !important;
  padding: 8px 16px 8px 16px;

  color: #1a1818 !important;
  background-color: #e5e5e5 !important;
}

.text-primary-my {
  font-weight: 500;
  color: var(--primary) !important;
}

.text-primary-dark-my {
  font-weight: 500;
  color: var(--primary-dark) !important;
}

.text-secondary-my {
  color: var(--secondary) !important;
}

.text-third-my {
  color: var(--third) !important;
}

.text-four-my {
  color: var(--four) !important;
}

.text-five-my {
  color: var(--five) !important;
}

:is(button, textarea, input):focus {
  box-shadow: 0 0 0 0 !important;
  outline: 0 !important;
}

.text-six-my {
  color: var(--six) !important;
}

.text-seven-my {
  color: var(--seven) !important;
}

.text-shadow-black-5px {
  text-shadow: 0 0 5px black;
}

.bg-primary-my {
  font-weight: 500;
  background-color: var(--primary) !important;
}

.bg-primary-dark-my {
  font-weight: 500;
  background-color: var(--primary-dark) !important;
}

.bg-secondary-my {
  background-color: var(--secondary) !important;
}

.bg-third-my {
  background-color: var(--third) !important;
}

.bg-four-my {
  background-color: var(--four) !important;
}

.bg-five-my {
  background-color: var(--five) !important;
}

.bg-muted-my {
  background-color: var(--muted) !important;
}

.btn {
  border: 1px solid var(--third);
  border-radius: 10px;
}

.btn-muted-my {
  color: black !important;
  border-radius: 10px !important;
  background-color: var(--muted) !important;
}

.btn-outline-primary-dark {
  border: 2px solid var(--primary-dark) !important;
  color: var(--primary-dark) !important;
  background-color: transparent !important;
}

.btn-secondary-my {
  /* color: var(--third) !important; */
  /* border: 1px solid var(--third); */
  border: none;
  color: white;
  border-radius: 5px;
  background-color: var(--secondary) !important;
}

.btn-four-my {
  color: var(--third) !important;
  border-radius: 10px !important;
  border: 1px solid var(--third);
  background-color: var(--four) !important;
}

.btn-four-my:hover {
  color: var(--third) !important;
  border-radius: 10px !important;
  border: 1px solid var(--third);
  background-color: var(--secondary) !important;
}

.z-top-world {
  z-index: 9999999999999;
}

.selected-a {
  color: var(--third) !important;
  background-color: var(--secondary) !important;
}

/* Estilos Gerais */

body {
  /* background-color: #f1f1f1; */
}

body,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

header nav {
  color: black !important;
  font-weight: 500 !important;
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  z-index: 20 !important;
  max-height: 375px !important;
}

.mt-6 {
  margin-top: 4.8rem !important;
}

.user-icon-navbar {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

footer {
  margin-top: 20px;
  padding: 20px 0;
}

/* Estilos do Rodapé */
.footer-content {
  font-size: 0.9em;
}

.footer-social-icons {
  list-style: none;
  padding: 0;
}

.footer-social-icons li {
  display: inline;
  margin: 0 10px;
}

.footer-social-icons li a {
  color: white;
  text-decoration: none;
  font-size: 1.4em;
}

.balance-display {
  font-size: 1.05rem;
  font-weight: 600;
}

.balance-actions button {
  width: 80px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px !important;
  }
}

.promo-banner {
  background-color: #007bff;
  color: white;
}

.promo-banner h3 {
  font-size: 1.8rem;
}

.promo-banner p {
  font-size: 1.1rem;
}

.newsletter {
  background-color: #f8f9fa;
}

.newsletter h4 {
  font-size: 1.5rem;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.scratch-9-numbers-table {
  position: absolute;
  z-index: 0;
  font-size: 18px;
  font-weight: bold;
  width: max-content;
}

#scratch-gallery-tabs {
  border-bottom: none;
}

#scratch-gallery-tabs .nav-link {
  padding: 5px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin: 5px;
  border-radius: 2px;
  color: var(--third);
  background-color: transparent;
}

#scratch-gallery-tabs .nav-link.active {
  background-color: var(--secondary);
}

#games-gallery-tabs {
  border-bottom: none;
}

#games-gallery-tabs .nav-link {
  padding: 5px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin: 5px;
  border-radius: 2px;
  color: var(--secondary);
  background-color: transparent;
}

#games-gallery-tabs .nav-link.active {
  background-color: var(--primary);
  color: black !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.btn-inc,
.btn-dec {
  cursor: pointer;
  font-size: 25px;
}

.scratch-poster {
  border-radius: 20px 20px 0px 0px;
  width: -webkit-fill-available;
  cursor: pointer;
}

.rounded-0px {
  border-radius: 0px !important;
}

.rounded-10px {
  border-radius: 10px !important;
}

.rounded-20px {
  border-radius: 20px !important;
}

.rounded-40px {
  border-radius: 40px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.carousel-indicators li {
  width: 51px;
  height: 4px;
  margin: 0px 5px;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700;
}

@media screen and (max-width: 1000px) {
  #transactions-table-div {
    display: none;
  }
}

#logo-img {
  width: 90px;
  height: auto !important;
}

@media (min-width: 769px) {
  #logo-img {
    width: 150px;
  }
}

@media screen and (min-width: 1000px) {
  #transactions-grouped-div {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  #col-faq-img-desk {
    display: none;
  }
  #col-faq-img-mob {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  #col-faq-img-desk {
    display: block;
  }
  #col-faq-img-mob {
    display: none;
  }
}

.scratch-banner {
  border-top-left-radius: 50px !important;
  border-top-right-radius: 50px !important;
}

/*MOBILE*/
@media screen and (max-width: 1024px) {
  .scratch-banner-sm {
    width: 156px !important;
    max-width: 100% !important;
    height: 210px !important;
  }
  .scratch-banner-md {
    width: 340px !important;
    max-width: 100% !important;
    /* height: 210px!important; */
  }
  .scratch-banner-lg {
    width: 340px !important;
    height: 210px !important;
    max-width: 100% !important;
  }
}
/*DESKTOP*/
@media screen and (min-width: 1024px) {
  .scratch-banner-sm {
    width: 330px !important;
    max-width: 100% !important;
    /* height: 300px !important; */
  }
  .scratch-banner-md {
    width: 420px !important;
    max-width: 100% !important;
    /* height: 300px !important; */
  }
  .scratch-banner-lg {
    width: 644px !important;
    max-width: 100% !important;
    /* height: 300px !important; */
  }
}

.scratch-banner .daily-winners {
  width: fit-content;
  background-color: var(--primary-dark);
  height: 23px;
  border-radius: 20px 0px 20px 0px;
  vertical-align: middle;
  color: white;
  padding: 0px 11px;
  /* position: absolute; */
  aspect-ratio: 2/2;
  right: 0;
  font-size: 14px;
  bottom: 43px;
  display: inline-flex;
}

.howto-dot {
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: -15px;
  border-radius: 50%;
}

@media screen and (max-width: 1000px) {
  .howto-img {
    width: 130px;
  }
}

@media screen and (min-width: 1000px) {
  .howto-img {
    width: 400px;
  }
}

.modal {
  /* padding-top: 75px; */
}

.inc-dec-txt input {
  width: 18px;
}

.winner {
  text-shadow: 0 0 10px #04ff00;
}

.popup {
  position: fixed;
  top: 80px;
  right: -37px;
  background-color: #fffc;
  padding: 5px;
  border-radius: 28px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* display: none; */
  animation: fadein 1s, fadeout 1s 10s forwards;
  z-index: 2;
  padding-right: 44px;
  color: black;
  font-size: 14px;
  padding-left: 8px;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.bet-option-selected {
  /* box-shadow: 0px 0px 15px 5px #5d2cb8 !important; */
  box-shadow: 0px 0px 6px 3px #ffffff !important;
}

:is(#promo2xNotLogin, #promo100LimitedModal) .close {
  position: absolute;
  right: 0;
  color: white !important;
  z-index: 1050;
  top: -1px;
  opacity: 1;
  margin-right: -13px;
  text-shadow: none;
  font-size: 36px;
}

#promo2xNotLogin .close {
  top: 13px !important;
}

:is(#promo2xNotLogin, #promo100LimitedModal) .modal-header {
  display: contents !important;
}

.bullet-notification {
  border-radius: 100px;
  height: 18px;
  aspect-ratio: 1 / 1;
  background: #ff5200;
  position: absolute;
  margin-top: -38px;
  margin-left: -45px;
  min-width: fit-content;
  font-size: 12px;
  text-align: center;
  color: white;
  font-weight: bold;
}

.bullet-notification .bullet-notification-offcanvas {
  margin-top: -88px;
  margin-left: -5px;
  width: auto !important;
  aspect-ratio: auto !important;
  width: 51px !important;
  height: auto;
}

@media (max-width: 769px) {
  .title-layout {
    margin-top: 4.8rem !important;
  }
}

@media (min-width: 770px) {
  .title-layout {
    margin-top: 6rem !important;
  }
}

/* .modal{
  z-index: 10000!important;
} */
/* NAVBAR CSS */
.sc-bottom-bar {
  position: fixed;
  display: flex;
  z-index: 1049;
  padding: 16px 36px;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  bottom: 0;
  height: 60px;
  font-size: 26px;
  background-image: radial-gradient(
    circle at calc(50% - 6.5px) 10px,
    transparent 36px,
    var(--nine) 37px
  );
  backdrop-filter: blur(5px);
  filter: drop-shadow(0px -1px 6px rgba(0, 0, 0, 0.08))
    drop-shadow(0px -2px 12px rgba(0, 0, 0, 0.12));
  transition: cubic-bezier(0.57, 0.23, 0.08, 0.96) 0.45s;
}

.sc-nav-indicator {
  position: absolute;
  width: 56px;
  height: 56px;
  bottom: 28px;
  margin: auto;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08), 0px 3px 6px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transition: cubic-bezier(0.45, 0.73, 0, 0.59) 0.3s;
}

.sc-menu-item:focus,
.sc-menu-item:hover {
  color: currentColor !important;
  text-decoration: none !important;
}
.sc-menu-item {
  color: var(--six);
  transition: ease-in-out 0.5s;
  cursor: pointer;
}
.sc-current {
  position: relative;
  z-index: 3;
  transform: translate3d(-7px, -31px, 0px);
  background-color: var(--nine);
  /* rgba(255, 255, 255, 0.8); */
  backdrop-filter: blur(5px);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08), 0px 3px 6px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transition: cubic-bezier(0.45, 0.73, 0, 0.59) 0.3s;
  width: 56px;
  height: 56px;
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas {
  z-index: 1049 !important;
}

#offcanvasProfileMob .offcanvas-body {
  padding-bottom: 75px;
}

:is(#offcanvasProfile, #offcanvasProfileMob)
  :is(.offcanvas-items, .offcanvas-items-link) {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
  border-radius: 10px;
}

:is(#offcanvasProfile, #offcanvasProfileMob) .offcanvas-body {
  overflow-y: auto;
  max-height: 80%;
}

:is(#offcanvasProfile, #offcanvasProfileMob) .offcanvas-items-link:hover {
  background-color: var(--primary-dark);
  color: white;
}

:is(#offcanvasProfile, #offcanvasProfileMob) .offcanvas-header {
  background-color: var(--primary);
  border-radius: 0px 0px 30px 30px;
}

.h-100vw {
  height: 100vw !important;
}

:is(#offcanvasProfile, #offcanvasProfileMob)
  .offcanvas-transaction
  .arrow-icon {
  /* margin-left: -12px */
}

.change-mode {
  width: 63px;
  border-radius: 100px !important;
}

.mode-dark,
.mode-light {
  border: none;
}

.container-set-theme-nav .mode-dark {
  border: 2px solid black;
}

.mode-dark {
  color: black !important;
}

.mode-light {
  color: white !important;
}

.container-set-theme-nav .mode-light {
  border: 2px solid white;
}

/* DEMO STYLES ONLY */
.whiskey-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.whiskey-cards::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
  height: 5px;
}

.whiskey-cards::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}

.whiskey-cards:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}
.whiskey-card.combo-card {
  width: 90% !important;
  max-width: 369px !important;
  flex-basis: auto !important;
  padding: 21px 0px !important;
  transition: none !important;
}

.whiskey-card {
  display: flex;
  flex-direction: column;
  min-width: 244px;
  flex-basis: 244px;
  margin: 0px 8px;
  padding: 16px 0px;
  transition: all 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.whiskey-card.first-whiskey-card {
  padding-left: 0px !important;
  margin-left: 0px !important;
}

.whiskey-card:not(.combo-card):hover {
  transform: scale(1.04) translateY(-16px);
}

.whiskey-card h3 {
  padding-top: 0;
  line-height: 1.35;
}

.whiskey-card .whiskey-card--content {
  line-height: 1.5;
  font-size: 15px;
  font-weight: 300;
}

.whiskey-card .whiskey-card--content img {
  max-width: 100%;
}

.whiskey-card .whiskey-card--link {
  line-height: 1.5;
  font-size: 15px;
  font-weight: 700;
  opacity: 0.7;
  margin: auto 0 0 0;
}

.whiskey-card h3 a,
.whiskey-card .whiskey-card--link a {
  color: #ffffff;
}

.whiskey-card .whiskey-card--link a svg {
  --arrowSpacing: 5px;
  --arrowHoverTransition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  --arrowHoverOffset: translateX(3px);
  --arrowTipTransform: none;
  --arrowLineOpacity: 0;
  position: relative;
  top: 1px;
  margin-left: var(--arrowSpacing);
  stroke-width: 2px;
  fill: none;
  stroke: currentColor;
}

.HoverArrow__linePath {
  opacity: var(--arrowLineOpacity);
  transition: opacity var(--hoverTransition, var(--arrowHoverTransition));
}

.HoverArrow__tipPath {
  transform: var(--arrowTipTransform);
  transition: transform var(--hoverTransition, var(--arrowHoverTransition));
}

.whiskey-card:hover .HoverArrow__linePath {
  --arrowLineOpacity: 1;
}

.whiskey-card:hover .HoverArrow__tipPath {
  --arrowTipTransform: var(--arrowHoverOffset);
}

/* DEMO STYLES END  */

.fade {
  background-color: rgba(0, 0, 0, 0.5);
}

#containerdepositAmount2,
#containerwithdrawAmount2 {
  border: none;
  text-align: center;
  /* width: 132px; */
  color: #757575 !important;
  margin: auto;
  font-size: 40px;
  border-bottom: 2px solid gray !important;
}

#containerdepositAmount2 {
  border-bottom: none !important;
}

#hidden-span,
#hidden-span-withdraw {
  visibility: hidden;
  white-space: pre;
  position: absolute;
  left: -9999px;
}

.input-group-edit-deposit {
  height: 57px;
  width: 200px;
  max-width: 100%;
}

.input-group-text,
#depositAmount {
  font-size: 33px;
}

#depositAmount,
#withdrawAmount {
  color: #757575 !important;
}

#depositAmount:focus {
  border-color: currentColor !important;
}

#withdrawAmount {
  border: none !important;
}

:is(#depositAmount, #withdrawAmount):focus {
  /* border: none!important;
  border-bottom: 2px solid gray!important; */
  outline: 0 !important;
}

#rangeDeposit::-webkit-slider-thumb {
  background-color: var(--secondary);
  height: 20px;
  width: 20px;
  margin-top: -7px;
}

.btn-secondary-my:hover {
  color: white;
}

.btn-default-amount {
  background-color: var(--eight);
  /* border: none; */
  /* border: 2px solid sgray; */
  height: 61px;
  font-size: 21px;
}

.input-register-login {
  border: none;
  color: var(--secondary);
}

.input-register-login:focus {
  box-shadow: 1px 1px 1px black;
}

.container-group-register-login-input {
  color: #9a9a9a;
  border-bottom: 1px solid gray;
}

.green-checked {
  border-radius: 2px !important;
  border: 1px solid var(--secondary) !important;
}

.accordion-button {
  z-index: 0;
}

.z-0 {
  z-index: 0 !important;
}

.green-checked:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.tutorial-container img {
  max-width: 450px;
}

.accordion-button {
  z-index: 0 !important;
}

:is(.accordion-secondary, #accordionFaq, #accordionTutorial) .accordion-button {
  font-weight: 600;
  color: var(--secondary) !important;
}

:is(.accordion-secondary, #accordionFaq, #accordionTutorial)
  .accordion-button::after {
  opacity: 0.3;
}

:is(.accordion-secondary, #accordionFaq, #accordionTutorial)
  .accordion-button:not(.collapsed),
.accordion-body.accordion-green {
  background-color: #e1ffe3 !important;
}

.step-howto {
  background-color: var(--secondary);
  color: white;
  text-align: center;
  width: fit-content;
  margin-top: -26px;
  margin-bottom: 22px;
}

.container-step-howto {
  background-color: #fff0c4;
  border-radius: 14px;
}

.container-text-howto {
  color: black;
  text-align: center;
}

@media (min-width: 769px) {
  .step-howto {
    font-size: 20px;
  }

  .container-step-howto h4 {
    font-size: 30px;
  }
  .container-step-howto p {
    font-size: 20px;
  }
}

@media (min-width: 1096px) {
  .container-step-howto {
    height: 100%;
    align-content: center;
    min-height: 300px;
  }

  .container-text-howto {
    text-align: start;
  }

  .step-howto {
    position: absolute;
    top: 10px;
  }
}

.gift-daily {
  animation: animationSkip infinite 0.5s;
}

@keyframes animationSkip {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.box-real-balance {
  font-size: 16px;
  display: inline-block;
  vertical-align: super;
}

@media (max-width: 768px) {
  .btn-nav-deposit {
    font-size: 12px;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (min-width: 769px) {
  .box-real-balance {
    font-size: 20px;
  }
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: var(--secondary) !important;
}

.swal2-actions {
  min-width: 90% !important;
}

.container-win-chance {
  background-image: url("/img/gold_confetes.webp");
  background-size: cover;
  background-position: center;
}
.container-next-chance,
.container-win-chance {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  text-align: center;
  align-content: center;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 10px black;
  color: white;
  /* color: var(--secondary); */
  font-family: fantasy;
}

.combo-img {
  width: 67px;
  border-radius: 6px;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.3);
}

.combo-img:nth-child(2) {
  transform: rotate(13deg);
  margin-top: -77px;
  position: relative;
  margin-left: 38px;
}

@media (min-width: 438px) {
  .combo-img:nth-child(2) {
    transform: rotate(13deg);
    margin-top: 25px;
    position: relative;
    margin-left: -44px;
  }
}

.combo-img:nth-child(3) {
  z-index: 1;
  position: relative;
  margin-left: 53px;
  margin-top: -71px;
  transform: rotate(32deg);
}

#pageNotFound .title {
  font-size: 150px;
}

#pageNotFound .description {
  font-size: 30px;
}

#pageNotFound .link {
  font-size: 26px;
  color: var(--secondary) !important;
}

@media (max-width: 769px) {
  #pageNotFound .title {
    font-size: 70px;
  }

  #pageNotFound .description {
    font-size: 26px;
  }

  #pageNotFound .link {
    font-size: 21px;
    color: var(--secondary) !important;
  }
}

.vibrate-1 {
  animation: vibrate-1 0.3s linear infinite both;
}

/* .table-success{
  --bs-table-bg: #489773!important;
  --bs-table-striped-bg: #54ad84!important;
} */
@keyframes vibrate-1 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.pulsate-fwd {
  -webkit-animation: pulsate-fwd 0.8s ease-in-out infinite both;
  animation: pulsate-fwd 0.8s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.video-container {
  /* height: 70%; */
  padding-bottom: 56.25%;
  width: 100%;
  aspect-ratio: 1 / 1.8;
  position: relative;
  border-radius: 26px;
}

.video-principal {
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 26px;
}

.btn-play-testimonial {
  /* border-radius: 200px;
  background-color: #4caf50ad;
  color: white;
  margin-left: 37%;
  margin-top: -138px;
  border: none;
  font-size: 21px;
  width: 44px;
  height: 44px;
  text-align: center;
  z-index: 2;
  position: relative; */

  /* margin-top: -122px; */
}

.btn-play-testimonial {
  border: none;
  color: white;
  font-size: 22px;
}

.btn-pause-testimonial {
  border-radius: 200px;
  background-color: #f1000066;
  color: #ffffff;
  margin-left: 37%;
  /* margin-top: -103px; */
  border: none;
  font-size: 21px;
  width: 44px;
  height: 44px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.backdrop-filter {
  margin-top: -156%;
  position: absolute;
  /* position: relative; */
  background: linear-gradient(2deg, #000000d9, #00000000, transparent);
  border-radius: 26px;
  z-index: 1;
}

.backdrop-filter-others {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 26px;
  height: 100%;
}

.btn-play-second {
  border: none;
  font-size: 33px;
  padding: 0;
  /* text-align: center; */
  color: rgba(255, 255, 255, 0.5);
}

.btn-play-second:hover {
  color: rgba(255, 255, 255, 0.5);
}

.infinite-carousel .list {
  /* width: 200px; */
  /* height:1400px; */
  overflow: visible;
}
.infinite-carousel .viewport {
  /* width: 200px; */
  /* height: 410px; */
  overflow: hidden;
}
.item {
  width: 100%;
  /* height: auto; */
  text-align: center;
  vertical-align: middle;
  line-height: 200px;
  float: left;
  margin-bottom: 10px;
}

.progress-bar {
  width: 82%;
  height: 5px;
  background: #e0e0e0;
  position: relative;
  z-index: 2;
  border-radius: 26px;
  top: 18px;
}
.progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
}

#formTestimonial {
  background-color: #fccf2e;
  border-radius: 11px;
}

#formTestimonial .label-send-video {
  background-color: #80808029;
  border: 2px dashed #7b7b7b;
}

.path-video-container {
  background-color: #80808038;
  border-radius: 4px;
}

#carouselScratchCards .carousel-indicators {
  margin-bottom: -30px !important;
}

#carouselScratchCards .carousel-indicators button.buy-more-indic {
  width: 5px;
  border-radius: 51px;
  border: 0;
  margin-top: 10px;
}
#carouselScratchCards .carousel-indicators button {
  background-color: rgba(0, 0, 0, 0.3) !important;
  height: 4px !important;
}
#carouselScratchCards .carousel-indicators button.active {
  background-color: var(--secondary) !important;
}
#carouselScratchCards .carousel-control-next-icon,
#carouselScratchCards .carousel-control-next-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23039834'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
#carouselScratchCards .carousel-control-prev-icon,
#carouselScratchCards .carousel-control-prev-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23039834'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

#carouselMessagesSystem .carousel-indicators button {
  background-color: gray !important;
}

#carouselMessagesSystem .carousel-indicators {
  margin-bottom: -2.5rem !important;
}

#downloadAppBtnBtn {
  z-index: 100;
  background-color: var(--primary);
  border-radius: 100px;
  padding: 3px;
  left: 1rem;
  bottom: 5rem;
  width: 53px;
  color: white;
  aspect-ratio: 1 / 1;
  align-content: center;
  text-align: center;
  box-shadow: 0 .125rem .25rem rgb(0 0 0 / 47%) !important;
}


/* CSS ANIMATION  */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.skeleton {
    background-color: #e0e0e0;
    height: 200px; /* ou a altura que você desejar */
    width: 100%; /* ou a largura que você desejar */
}

/* Adicione animação para parecer um skeleton */
.skeleton::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #e0e0e0, #f0f0f0, #e0e0e0);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}
:root {
}

.heading-1 {
  color: var(--text-total-black);
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
}

.heading-2 {
  color: var(--text-total-black);
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
}

.text-4xl {
  font-size: 36px!important;
  line-height: 2.5rem;
}

.heading-3 {
  color: var(--text-total-black);
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}

.text-5xl {
  font-size: 3rem; /* 48px */
  line-height: 1;
}

.text-3xl {
  font-size: 1.875rem; /* 30px */
  line-height: 2.25rem; /* 36px */
}

.heading-4 {
  color: var(--text-total-black);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.text-l {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: var(--text-total-black);
}

.text-m {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: var(--text-total-black);
}

.text-caption {
  font-size: 18px;
  line-height: 18px;
  /* letter-spacing:1px; */
}

.text-n {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--text-total-black);
}

.text-sm {
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
}

.text-s {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: var(--text-total-black);
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600 !important;
}

.text-normal {
  font-weight: 400 !important;
}

.login-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  color: rgba(0, 0, 0, 0.8);
}

.overflow-wrap-anywhere {
  overflow-wrap: anywhere;
}

.text-transform-none {
  text-transform: none !important;
}


.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}