/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');






:root {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  font-weight: 400;
  /* font-synthesis: none; */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --primary: #ffcb7f;
  --white: #fff;
  --black: #000;
  --darker: color-mix(in oklab, var(--primary), var(--black, #000) 15%);
  --lighter: color-mix(in oklab, var(--primary), var(--white, #fff) 20%);
}

/* :is(*, *::before, *::after) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */




.w-100 {
    border-radius: 22px;
}


.content h5 {
    font-size: 4em;
}

h3 {
    font-family: "Caveat", cursive;
    font-weight: normal;
    font-size: 3.5em;
    color: #ffcb7f;
}
.content h6 {
    font-size: 27px;
}

.main-wrapper {
  display: grid;
  place-items: center;
  padding: 20px 15px;
}

.token-counter-heading {
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.token-count {
  color: var(--primary);
  font-weight: 700;
}

.lucky-draw-count {
  color: #ffcb7f;
  font-weight: 700;
}

.token-complete {
  margin-block-start: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: #ffcb7f;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Reward History Modal */
#rewardHistoryModal .modal-content {
  background-color: #0d121a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#rewardHistoryModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#rewardHistoryModal .modal-header .modal-title {
  color: #ffcb7f;
  font-weight: 600;
}

#rewardHistoryModal .btn-close {
  filter: invert(1);
}

.reward-history-table {
  margin-bottom: 0;
}

.reward-history-table thead th {
  background-color: rgba(255, 203, 127, 0.15);
  color: #ffcb7f;
  border-bottom: 2px solid rgba(255, 203, 127, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.reward-history-table tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
}

.reward-history-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

.reward-history-table tbody tr:hover {
  background-color: rgba(3, 169, 244, 0.1);
}

.status-claimed {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  background-color: rgba(76, 175, 80, 0.2);
  color: #66bb6a;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-unclaimed {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  font-size: 0.85rem;
  font-weight: 600;
}

.steps-wrapper {
  /* max-width: 600px; */
  width: 100%;
}
.steps-wrapper .steps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.steps-wrapper .steps .step {
  position: relative;
  z-index: 1;
  width: clamp(56px, 14vw, 85px);
  height: clamp(56px, 14vw, 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0d14;
  border-radius: 50%;
  overflow: hidden;
  color: #878787;
  background: #0d121a;
  font-size: 24px;
  font-weight: 600;
  transition: 200ms ease;
  transition-delay: 0ms;
}
.steps-wrapper .steps .step.active {
color: #ffcb7f;
    border-color: hsl(35.63deg 100% 74.9%);
    box-shadow: 0 0 16px rgb(255 203 127);
    transition-delay: 100ms;
    z-index: 2;
}
.steps-wrapper .steps .progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  z-index: 0;
}
.steps-wrapper .steps .progress-bar .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(3, 169, 244, 0.6);
  transition: 300ms ease;
}
.btn:hover {
color: #0dbaf0;
}

/* Login button loader */
#btnLogin.loading {
    pointer-events: none;
    opacity: 0.85;
    cursor: wait;
}

#btnLogin .btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}



.header2-img {
    background-image: url(../images/header-bg2.jpg);
    /* min-height: 926px; */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
    background-size: cover;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 50px;
}





.content {
    background-color: #00000000!important;
}



canvas {
    position: fixed;
    top: 0;
    /*z-index: -1;*/
  }
  
  .pulsate-fwd {
    /*-webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;*/
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
  }
  
  @-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
  
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  }
  
  @keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
  
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  }
  
  .noSpnEr span {
    max-width: 300px;
    width: 100%;
    padding: 10px;
    background-color: #000;
    border-radius: 6px;
    color: #f00;
    margin: 0px auto 20px;
    display: block;
  }
  
  .seeNow {
    opacity: 1 !important;
    z-index: 100 !important;
    position: relative;
  }
  
  .promoLogo {
    display: block !important;
    max-width: 800px;
    margin: 10px auto;
  }
  
    .promoLogo svg {
        display: none;
    }
  
  .promoLogo02 {
    max-width: 500px;
    margin: 10px auto;
  }
  
  .promoInfo {
    background-color: rgba(0,0,51,0.8);
    color: #FFF;
    padding: 10px 10px 25px;
    max-width: 800px;
    width: 97%;
    margin: 0 auto 10px;
    border-radius: 6px;
  }
  
    .promoInfo h1 {
        color: #33ff00;
        font-size: 30px;
        line-height: 35px;
    }
  
    .promoInfo h2 {
        font-size: 22px;
        line-height: 23px;
    }
  
    .promoInfo p {
        font-size: 16px;
        line-height: 20px;
        margin: 15px auto;
    }
  
  
  .promoModal .modal-content {
    background-image: url('/promos/2024/pumpkin-payouts/images/img-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
  }
  
  .promoModal .rewardInfo {
    min-height: 200px;
  }
  
  .promoModal h1 {
    font-size: 26px;
    color: #0099ff;
  }
  
  .promoModal .btn-secondary {
    color: #fff;
    background-color: #f42fad;
    border-color: #f42fad;
  }
  
  .promoModal .rewardBlk {
    background-color: rgba(0,0,51,0.6);
    color: #FFF;
    padding: 5px;
    border-radius: 6px;
  }
  
    .promoModal .rewardBlk b {
        color: #33ff00;
    }
  
  
  .promoTnc .modal-content {
    background-color: #03031f;
    font-size: 14px;
    color: #FFF;
    padding: 10px;
  }
  
  
  .promoTnc ul {
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
  }
  
  .promoTnc h1 {
    font-size: 26px;
    color: #0099ff;
  }
  
  .promoTnc .btn-secondary {
    color: #fff;
    background-color: #f42fad;
    border-color: #f42fad;
  }
  
  .modal-backdrop.show {
    opacity: 0.8;
  }
  
  .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  
    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #fff;
        -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }
  
        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            -webkit-animation: lds-ellipsis1 0.6s infinite;
            animation: lds-ellipsis1 0.6s infinite;
        }
  
        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            -webkit-animation: lds-ellipsis2 0.6s infinite;
            animation: lds-ellipsis2 0.6s infinite;
        }
  
        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            -webkit-animation: lds-ellipsis2 0.6s infinite;
            animation: lds-ellipsis2 0.6s infinite;
        }
  
        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            -webkit-animation: lds-ellipsis3 0.6s infinite;
            animation: lds-ellipsis3 0.6s infinite;
        }
  
  @-webkit-keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
  
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  }
  
  @keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
  
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  }
  
  @-webkit-keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
  }
  
  @keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
  }
  
  @-webkit-keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
  
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
  }
  
  @keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
  
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
  }
  
  .spinny {
    display: block;
    color: #000033;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    background-color: #33ff00;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: bold;
    border: 0px;
    margin: auto;
    max-width: 230px;
    width: 100%;
  }
  
  
  .slotWrap {
    position: relative;
    max-width: 310px;
    width: 100%;
    margin: 30px auto;
  }
  
  .slotImgWrap {
    max-width: 100px;
    padding: 10px;
    margin: 0;
  }
  
  #canvas2 {
    display: none;
  }
  
  h1 {
    color: #FFF;
  }
  
  .keyWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    margin: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .keyBlk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 240px;
    width: 100%;
    margin: 5px auto 0;
    color: #FFF;
    font-size: 16px;
  }
  
  .keyIcon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);
    width: 80px;
    margin: 0px;
    border-radius: 6px 0 0 6px;
  }
  
  .keyInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    background-color: rgba(0,0,51,0.8);
    padding: 0 5px;
    border-radius: 0 6px 6px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
    .keyInfo p {
        width: 100%;
        font-size: 15px;
        margin: 0;
        padding: 5px 0;
    }
  
    .keyInfo b {
        color: #33ff00;
    }
  
  .screen02 {
    position: relative;
  }
  
  .promoModal .rewardBlk {
    font-family: 'Amatic SC', sans-serif;
    background-color: rgb(0 0 0 / 60%);
    color: #FFF;
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto 20px;
    font-size: 20px;
    line-height: 25px;
  }
  
  .promoModal svg {
    display: none;
  }
  
  /*.promoModal .rewardBlk b, .promoModal .rewardBlk strong {
    color: #66bd48;
  }*/
  
  .rewardIcon {
    max-width: 100px;
    margin: 20px auto;
  }
  
  
  @media (min-width:481px) {
    .promoLogo {
        max-width: 600px;
    }
  }
  
  @media (min-width:768px) {
    /* body {
        background-image: url('/Scratch Card ~ 0.2/1.0/img/tablet-bg.jpg?ver01');
    } */
  
    .screen02 {
        position: relative;
        top: -40px;
    }
    
    .spinnyBtn01 {
        max-width: 250px;
    }
  
  }
  
  @media (min-width:1000px) {
  
    .screen01 {
        position: relative;
        top: -40px;
    }
  
    .screen02 {
        position: relative;
        top: -70px;
    }
  
    .promoLogo02 {
        max-width: 700px;
        margin: 10px auto;
    }
  
    .promoLogo {
        margin: 50px auto;
        max-width: 700px;
    }
  }
  
  @media (min-width:1025px) {
    /* body {
        background-image: url('/Scratch Card ~ 0.2/1.0/img/desktop-bg.jpg?ver01');
    } */
  
    .promoLogo {
        margin: 20px auto;
    }
  }
  
  @media (min-width:1441px) {
  }
  
  .scratchWrap {
    max-width: 277px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    gap: 5px;
  }
  
  .scratch-container {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .clickswrap {
    max-width: 300px;
    margin: auto;
  }
  
  .scratchpad {
    position: relative;
    background-color: #e9ecef;
    border-radius: 8px;
    /*padding:5px;*/
    width: 85px;
    height: 85px;
  }
  
    .scratchpad img {
        border-radius: 10px;
    }
  
  .tile-disabled {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: not-allowed;
  }
  
    .tile-disabled:hover {
        cursor: not-allowed;
        animation: none;
    }
  
  .clicks {
    color: #000;
    font-size: 16px;
    padding: 5px;
    border-radius: 6px;
    margin: 5px 0;
    text-align: center;
    font-weight:bold;
  }
  
  .avail {
background-color: #000000;
    color: #FFFFFF;
  }
  
  .comp {
background-color: #ffffff;
    color: #000000;
  }
  
  .promoModal .modal-content {
    background-image: url('/Scratch Card ~ 0.2/1.0/img/rewards-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
    background-color: #050f3e;
  }
  
  .promoModal .rewardInfo {
    min-height: 200px;
  }
  
  .promoModal h1 {
    font-size: 26px;
    color: #FFF;
  }
  
  .promoModal .btn-secondary {
    color: #fff;
    background-color: #8014a0;
    border-color: #8014a0;
  }
  
  .promoModal .rewardBlk {
    background-color: rgb(0 0 0 / 60%);
    color: #FFF;
    padding: 5px;
    border-radius: 10px;
    margin: 0 auto 10px;
  }
  
    .promoModal .rewardBlk b, .promoModal .rewardBlk strong {
        color: #febf0d;
    }
  
  .keyInfo {
    display: flex;
    width: 100%;
    background-color: rgb(0 0 0 / 80%);
    padding: 2px;
    border-radius: 0 10px 10px 0;
    align-items: center;
  }
  
    .keyInfo p {
        margin: 0;
        color: #fff;
    }
  
  .rewardIcon {
    max-width: 200px;
    margin: 10px auto;
  }
  
    .rewardIcon img {
        border-radius: 50%;
    }
  
  .rkBtn {
    margin: 30px auto 10px;
    display: block;
    background-color: #000033;
    border: 0;
    font-size: 20px;
  }
  
  /*.cardBorder {
    padding: 10px;
    border: 5px solid #aaaaff;
    -o-border-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #aaaaff 6px, #aaaaff 15px, transparent 16px, transparent 20px) 20/5px
    border-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #aaaaff 6px, #aaaaff 15px, transparent 16px, transparent 20px) 20/5px;
  }*/
  
  .box {
    padding: 5px;
    --border-size: 2px;
    --border-angle: 0turn;
    background-image: conic-gradient(from var(--border-angle), #213, #112 50%, #213), conic-gradient(from var(--border-angle), transparent 20%, #d3d3d3, #484848);
    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)), cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: bg-spin 3s linear infinite;
    animation: bg-spin 3s linear infinite;
  }
  
  @-webkit-keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
  }
  
  @keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
  }
  
  /*.box:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }*/
  
  @property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
  }
        
  
  @media (min-width:481px) {
  }
  
  @media (min-width:768px) {
  
    .scratchWrap {
        max-width: 622px;
    }
  
    .clickswrap {
        max-width: 600px;
    }
  
    .scratchpad {
        width: 200px;
        height: 200px;
    }
  
    .scratchpad img {
        border-radius: 8px;
    }
  
    .clickswrap {
        display: flex;
        flex-direction: row;
    }
  
    .clicks {
        margin: 5px;
        width: 100%;
    }
  
    .tile-selected::after {
        font-size: 16px;
    }
  }
  
  @media (min-width:1000px) {
  }
  
  @media (min-width:1025px) {
  }
  
  @media (min-width:1441px) {
  }
  
  .ssHead {
    position:relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    z-index: 100 !important;
  }
  
    .ssHead a {
        text-decoration: none;
    }
  
  .img-respon {
    width: 100%;
  }
  
  .hidden {
    display: none;
  }
  
  .seen {
    display: initial;
  }
  
  .unseen {
    display: none;
  }
  
  .logo {
    max-width: 85px;
    display: block;
  }
  
  .part2 {
    display: flex;
    width: 100%;
    max-width: 250px;
    justify-content: space-around;
  }
  
  .ssBtn {
    padding: 5px;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    margin: 2px;
    height: 35px;
    width: 100%;
    max-width: 80px;
  }
  
  .playBtn {
    background-color: #33ff00;
    color: #000033;
  }
  
  .stdBtn {
    background-color: #0099ff;
    color: #FFF;
    cursor: pointer;
  }
  
  
  .promoTxtblk {
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    border: 0;
    height: 40px;
    width: 200px;
  }
  
  .promoBtn {
    height: 40px;
    padding: 5px;
    border-radius: 4px;
    border: 0;
    width: 200px;
    background-color: #0199ff;
    color: #ffffff;
    font-weight: bold;
  }
  
  .promoFooter {
    position:relative;
    background-color: rgba(0,0,51,0.8);
    color: #FFF;
    padding: 5px;
    max-width: 800px;
    width: 97%;
    margin: 50px auto 10px;
    border-radius: 6px;
    z-index: 100 !important;
  }
  
    .promoFooter a {
        text-decoration: underline;
    }
  
  .starsInfo {
    background-color: rgba(0,0,51,0.8);
    padding: 5px;
    max-width: 300px;
    width: 97%;
    margin: auto;
    border-radius: 6px;
  }
  
    .starsInfo h1 {
        font-size: 24px;
        line-height: 24px;
        color: #33ff00;
        margin: 0 auto 10px;
        text-align: center;
    }
  
  .starsWrap {
    max-width: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
  }
  
  .star {
    max-width: 150px;
    width: 100%;
  }
  
    .star:hover {
        cursor: pointer;
        animation: pulse 0.9s infinite ease-out;
        -webkit-animation: pulse 0.9s infinite ease-out;
    }
  
  
  @-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
  
    50% {
        -webkit-transform: scale(1.2);
    }
  
    100% {
        -webkit-transform: scale(1);
    }
  }
  
  @keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
  
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  }
  
  .promoModal .modal-content {
    background-image: url('/Scratch Card ~ 0.2/1.0/img/rewards-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
    background-color: #050f3e;
  }
  
  .promoModal .rewardInfo {
    min-height: 200px;
  }
  
  .promoModal h1 {
    font-size: 26px;
    color: #0099ff;
  }
  
  .promoModal .btn-secondary {
    color: #fff;
    background-color: #f42fad;
    border-color: #f42fad;
  }
  
  .promoModal .rewardBlk {
    background-color: rgba(0,0,51,0.6);
    color: #FFF;
    padding: 5px;
    border-radius: 6px;
  }
  
    .promoModal .rewardBlk b {
        color: #33ff00;
    }
  
  
  .promoTnc .modal-content {
    background-color: #03031f;
    font-size: 14px;
    color: #b2b2c8;
    padding: 10px;
  }
  
  
  .promoTnc ul {
    padding-inline-start: 20px;
  }
  
  .promoTnc h1 {
    font-size: 26px;
    color: #0099ff;
  }
  
  .promoTnc .btn-secondary {
    color: #fff;
    background-color: #f42fad;
    border-color: #f42fad;
  }
  
  .modal-backdrop.show {
    opacity: 0.8;
  }
  
  .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  
    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #fff;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }
  
        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }
  
        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }
  
        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }
  
        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }
  
  @keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
  
    100% {
        transform: scale(1);
    }
  }
  
  @keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
  
    100% {
        transform: scale(0);
    }
  }
  
  @keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
  
    100% {
        transform: translate(24px, 0);
    }
  }
  
  .error {
    color: #dd1717;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    display: block;
  }
  
  #textTogg {
    display: none;
  }
  
  .howto {
    background-color: #000333;
    color: #33fb01;
    max-width: 110px;
    width: 100%;
    margin: 20px auto;
    cursor: pointer;
    font-weight: bold;
  }
  
  .retogBtn {
    margin: 0px auto 10px;
    text-decoration: underline;
    cursor: pointer;
  }
  
  
  @media (min-width:481px) {
  }
  
  @media (min-width:768px) {
    /* body {
        background-image: url('/Scratch Card ~ 0.2/1.0/img/tablet-bg.jpg');
    } */
  
    .starsWrap {
        max-width: 600px;
    }
  
    .star {
        max-width: 200px;
    }
  
    .claimed::before {
        content: url('/img/claimed-200.png');
    }
  
    .starsInfo {
        max-width: 600px;
    }
  
    .clickswrap {
        display: flex;
        flex-direction: row;
    }
  
    .clicks {
        margin: 5px;
        width: 100%;
    }
  }
  
  @media (min-width:1000px) {
  }
  
  @media (min-width:1025px) {
    /* body {
        background-image: url('/Scratch Card ~ 0.2/1.0/img/desktop-bg.jpg');
    } */
  }
  
  @media (min-width:1441px) {
  }
  

/*
#gameArea {
    max-width: 700px;
}*/

.plogo {
    margin: 0 auto;
    width: 360px;
    padding-top: 25px;
}


#loginScreenErrorMessage{
    font-weight: bold;
    color: rgb(255, 0, 0);
}


#loginErrorMessage{
    color: #c50000;
    font-weight: 600;  
}

#loginScreenErrorMessage a{
    color: #c50000;
    font-weight: 600;  
}

#loginScreenErrorMessage a:hover{
    color: #008dc5;
    font-weight: 600;  
}


.one p, .two p {
    font-size: 22px;
    background-color: #000000;
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 250px;
    color: white;
}

#gameAreaContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*  margin-bottom: 10px;*/
    flex-direction: column;
    /*    margin: 15px;*/
}



.gameScreen {
    /*position:relative;
    z-index: 1;*/
    /*max-width: 800px;*/
}


#gameCover {
z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 680px;
    max-height: 750px;
    /* margin-top: -42px; */
    /* border-radius: 30px;*/
}


.game-cover-elements {
    /*margin-top: 470px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.cdText {
    text-align: center;
    color: #ffffff;
    font-size: 160px;
}

.gcText {
    text-align: center;
    font-size: 16px;
    color: #ffc107;
    padding: 40px;
}


.stGame {
    background-color: #1e52a3;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 6px;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.tncIcons {
    max-width: 40px;
    display: inline-block;
}
/*-------------Game End-------------------------------*/





h1 {
    font-family: 'Amatic-Bold';
    font-size: 120px;
    color: #fff700;
    margin-bottom: 20px;
    text-shadow: 2px 2px #000000;
}




h6 {
    color: #000000;
}




/**
 * Icon
 */

.icon {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin: 25px 0 25px 25px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 12px;
    font-family: sans-serif;
}

    .icon:nth-child(1) {
        background: cornflowerblue;
    }

    .icon:nth-child(2) {
        background: salmon;
    }

    .icon:nth-child(3) {
        background: gray;
    }

    /**
 * The "shine" element
 */

    .icon:after {
        animation: shine 5s ease-in-out infinite;
        animation-fill-mode: forwards;
        content: "";
        position: absolute;
        top: -110%;
        left: -210%;
        width: 200%;
        height: 200%;
        opacity: 0;
        transform: rotate(30deg);
        background: rgba(255, 255, 255, 0.13);
        background: linear-gradient( to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100% );
    }

    /* Hover state - trigger effect */


    /* Active state */

    .icon:active:after {
        opacity: 0;
    }

/* @keyframes shine {
    10% {
        opacity: 1;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
        transition-duration: 0.7s, 0.7s, 0.15s;
        transition-timing-function: ease;
    }

    100% {
        opacity: 0;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
    }
}


 */






#reshoot, #restart, #shoot {
    margin: 0 auto;
    font-size: 2.7rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
    display: none;
    color: black;
    border: 3px solid black;
    background-color: yellow;
    /*    top: 192px;*/
    /*    right: 46px;*/
    position: relative;
    border-radius: 54px;
    line-height: 22px;
}

    #reshoot:hover, #restart:hover {
        cursor: pointer;
        background-color: black;
        color: yellow;
    }


#startShoot {
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 3rem;
    border-radius: 0.3rem;
    color: white;
    border: 3px solid black;
    background-color: #0a58ca;
    position: relative;
    /* border-radius: 54px; */
    line-height: 22px;
}



#restart, #shoot {
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 3rem;
    border-radius: 0.3rem;
    color: white;
    border: 3px solid black;
    background-color: #0a58ca;
    position: relative;
    /* border-radius: 54px; */
    line-height: 22px;
}

    #startShoot:hover, #restart:hover, #shoot:hover {
        cursor: pointer;
        background-color: #005d32;
        color: #e9ecef;
    }

#time {
    margin: auto;
    display: block;
    text-align: center;
    font-size: 3rem;
    font-family: sans-serif;
    font-weight: bold;
}


.cups {
    margin: auto;
    width: 300px;
    padding-bottom: 185px;
}

.cup {
    width: 100px;
    position: relative;
}

.row2 {
    margin-top: -10rem;
    margin-left: 50px;
}

.row3 {
    margin-top: -10rem;
    margin-left: 100px;
}



.cup1 {
    top: 5rem;
}

.cup2 {
    top: 5rem;
}

.cup3 {
    top: 5rem;
}


.cup4 {
    top: 14rem;
}

.cup5 {
    top: 14rem;
}

.cup6 {
    top: 23rem;
}

.ball {
    width: 100px;
    height: 100px;
    position: relative;
    transform: scaleY(-1);
}

.shooter {
    position: relative;
    top: 400px;
    left: 0;
    right: 0;
    width: 100px;
    margin: auto;
    /*overflow: hidden;*/
}

.shooterbtn {
    position: relative;
    top: 400px;
    width: 204px;
    margin: auto;
    height: 70px;
}

.shooterbtn-info {
    position: relative;
    top: 400px;
    width: 300px;
    margin: auto;
}

.shootX {
    animation: shootX 2.2s infinite linear;
}

@keyframes shootX {
    0% {
        left: 0px
    }

    25% {
        left: 125px
    }

    50% {
        left: 0px
    }

    75% {
        left: -125px
    }

    100% {
        left: 0px
    }
}

.shootY {
    animation: shootY 1.75s infinite linear;
}

@keyframes shootY {
    0% {
        top: 0px
    }

    50% {
        top: -225px
    }

    100% {
        top: 0px
    }
}

.fadeAway {
    animation: fadeAway 1s;
    opacity: 0
}

@keyframes fadeAway {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.marginTop {
    animation: marginTop 1s;
    animation-timing-function: ease;
}

@keyframes marginTop {
    0% {
        top: var(--top)
    }

    100% {
        top: var(--topFinal)
    }
}



.form-control {
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
    height: 60px;
    border: none;
    color: #000000 !important;
    border-radius: 0rem;
    box-shadow: 0px 1px 2px 2px #00000045;
}


.button-cover2 {
    background: #1e52a3;
    box-shadow: none;
    width: 300px;
    color: #000000 !important;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #1e52a3;
    opacity: 1;
}

.log-cont {
    display: flex;
    position: relative;
    width: 69%;
}


.stairs {
    width: 100%;
    position: relative;
    bottom: 106px;
    right: 5px;
}


.promoLogo {
    position: absolute;
    left: 0;
    right: 448px;
    margin-left: auto;
    margin-right: auto;
    width: 100px; /* Need a specific value to work */
}



.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}



@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

#playerGameData {
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 53%,rgba(0,0,0,0) 100%);
}

#loginErrorMessage a {
    font-size: 18px;
    color: #0dbaf0;
    font-weight: bold;
}
#LoginScreenErrorMessage {
    font-size: 18px;
/*    color: #0dbaf0;*/
    font-weight: bold;
}






.d-lg-block {
    display: none !important;
}

.lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: -38px 0 0 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
    bottom: 16px;
}

    .lightrope li {
        position: relative;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        list-style: none;
        margin: 0;
        padding: 0;
        display: block;
        width: 12px;
        height: 28px;
        border-radius: 50%;
        margin: 20px;
        display: inline-block;
        background: #00f7a5;
        box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
        -webkit-animation-name: flash-1;
        animation-name: flash-1;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

        .lightrope li:nth-child(2n+1) {
            background: aqua;
            box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.5);
            -webkit-animation-name: flash-2;
            animation-name: flash-2;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
        }

        .lightrope li:nth-child(4n+2) {
            background: #f70094;
            box-shadow: 0px 4.6666666667px 24px 3px #f70094;
            -webkit-animation-name: flash-3;
            animation-name: flash-3;
            -webkit-animation-duration: 1.1s;
            animation-duration: 1.1s;
        }

        .lightrope li:nth-child(odd) {
            -webkit-animation-duration: 1.8s;
            animation-duration: 1.8s;
        }

        .lightrope li:nth-child(3n+1) {
            -webkit-animation-duration: 1.4s;
            animation-duration: 1.4s;
        }

        .lightrope li:before {
            content: "";
            position: absolute;
            background: #222;
            width: 10px;
            height: 9.3333333333px;
            border-radius: 3px;
            top: -4.6666666667px;
            left: 1px;
        }

        .lightrope li:after {
            content: "";
            top: -14px;
            left: 9px;
            position: absolute;
            width: 52px;
            height: 18.6666666667px;
            border-bottom: solid #222 2px;
            border-radius: 50%;
        }

        .lightrope li:last-child:after {
            content: none;
        }

        .lightrope li:first-child {
            margin-left: -40px;
        }

@-webkit-keyframes flash-1 {
    0%, 100% {
        background: #00f7a5;
        box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
    }

    50% {
        background: rgba(0, 247, 165, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
    }
}

@keyframes flash-1 {
    0%, 100% {
        background: #00f7a5;
        box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
    }

    50% {
        background: rgba(0, 247, 165, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
    }
}

@-webkit-keyframes flash-2 {
    0%, 100% {
        background: aqua;
        box-shadow: 0px 4.6666666667px 24px 3px aqua;
    }

    50% {
        background: rgba(0, 255, 255, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.2);
    }
}

@keyframes flash-2 {
    0%, 100% {
        background: aqua;
        box-shadow: 0px 4.6666666667px 24px 3px aqua;
    }

    50% {
        background: rgba(0, 255, 255, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.2);
    }
}

@-webkit-keyframes flash-3 {
    0%, 100% {
        background: #f70094;
        box-shadow: 0px 4.6666666667px 24px 3px #f70094;
    }

    50% {
        background: rgba(247, 0, 148, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2);
    }
}

@keyframes flash-3 {
    0%, 100% {
        background: #f70094;
        box-shadow: 0px 4.6666666667px 24px 3px #f70094;
    }

    50% {
        background: rgba(247, 0, 148, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2);
    }
}










.bucket-wrapper {
    font-size: 17px;
    font-weight: bold;
    color: white;
    position: relative;
    top: 42px;
}


.ball-drop-bg {
    background-color: #a52a2a85;
    position: absolute;
    padding-bottom: 35px;
    width: 100%;
    z-index: 0;
}


/* BALL DROP GAME START */
.game-area-wrapper {
    margin: 0 auto;
    max-width: 720px;
}

    .game-area-wrapper img {
        width: 100%;
        position: relative;
        /*        bottom: 106px;
        right: 5px;*/
    }


    .game-area-wrapper > div {
        position: relative;
    }

.game-area {
    /*    background-image: url('../images/background.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 600px;
}

canvas {
    position: absolute;
    /* width: 100%; */
    margin: 0 auto;
    border: 0px solid gray;
    background: unset !important;
    inset: 0px !important;
    z-index: 0 !important;
}

.bucket-labels {
    display: flex;
    justify-content: space-around;
}

    .bucket-labels > div {
        z-index: 10;
        margin-top: -67px;
        min-width: 79.5px;
        text-align: center;
    }

.wrapper {
    margin: 20px;
}
/* BALL DROP GAME END */


/*--------------------
Leaderboard
--------------------*/



.earn h6 {
    font-weight: normal;
    font-size: 35px;
    color: #ffffff;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#45484d+0,000000+52,000000+100&0+0,0+24,1+52,0+81,0+100 */
background: linear-gradient(to right,  rgba(69,72,77,0) 0%,rgba(37,39,41,0) 24%,rgba(0,0,0,1) 52%,rgba(0,0,0,0) 81%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    padding: 10px;
    text-align: center;
}



.modal-body a {
    font-size: 18px;
}


.nowheel {
    filter: grayscale(1) opacity(0.2);
}



.wheel {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.wheel-cover {
    position: absolute;
}




.wheel {
    margin: 0 auto;
    position: relative;
    text-align: center;
    /*    top: 33px;*/
    /*left: 251px;*/
    display: block;
}

    .wheel img {
        max-width: 100%;
    }


     

.spinny {
    display: block;
    color: #FFF;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    background-color: #dd121d;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: bold;
    border: 0px;
    margin: auto;
    max-width: 200px;
    width: 100%;
}




#spinBtn {
    background: #1e52a300;
}

#modalOffer {
    text-align: center;
}

#gameScreenErrorMessage {
    color: #ffffff;
    text-shadow: 1px 1px 3px #000;
    max-width: 590px;
    margin: 0 auto;
    text-align: center;
}

    #gameScreenErrorMessage p {
        font-weight: 100;
        font-size: 2em;
        color: #e1e1e1;
        padding: 5px 0px 5px;
        text-align: center;
    }

    #gameScreenErrorMessage a {
/*        color: #0dcaf0;*/
    }

        #gameScreenErrorMessage a:hover {
            color: #ffe185;
        }
#rewardLoader p {
    font-weight: 100;
    font-size: 3em;
    color: #1e52a3;
    padding: 5px 0px 5px;
}








.pulse-button {
    -webkit-animation: pulse 1.5s infinite;
    cursor: pointer;
}

    .pulse-button:hover {
        -webkit-animation: none;
    }

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}


.pulse:hover {
    animation: pulse 1s infinite;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.slotwrapper {
    overflow: hidden;
    /*display: inline-block;*/
    border: none;
    height: 90px;
    margin: 425px auto 91px;
    display: table;
}

    .slotwrapper ul {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
        float: left;
    }

    .slotwrapper ul {
        width: 97px;
        height: 90px;
        font-size: 190px;
        line-height: 190px;
        text-align: center;
    }

        .slotwrapper ul li img {
            vertical-align: top;
        }

.promo-slot {
    position: absolute;
    z-index: 999;
    overflow: hidden;
    /*display: inline-block;*/
}


#promo-spin {
}

.greyscale {
    filter: grayscale(1);
}


.sloticons {
    position: relative;
}



.paytable {
    padding-bottom: 180px;
}


#playerGameData {
    z-index: 999;
}

[type=button], [type=reset], button {
    -webkit-appearance: button;
    cursor: pointer;
    /*    background-color: #1e52a300;*/
    border: none;
}

.pay {
    padding-right: 2px;
    padding-left: 2px;
}


.payPIC {
    padding: 6px;
    border-radius: 20px;
}

    .payPIC img {
        width: 100%;
    }


.pay1 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#001f68+0,00767c+100 */
    background: rgb(0,31,104); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(0,31,104,1) 0%, rgba(0,118,124,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,31,104,1) 0%,rgba(0,118,124,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,31,104,1) 0%,rgba(0,118,124,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001f68', endColorstr='#00767c',GradientType=0 ); /* IE6-9 */
    padding-right: 2px;
    padding-left: 2px;
    border-radius: 20px;
}

    .pay1 p {
        font-size: 20px;
        line-height: 76px;
        color: #fff;
        text-align: center;
        font-family: 'Holtwood One SC', serif;
        margin: 0 0 2px;
        font-weight: normal;
    }

    .pay1 h3 {
        font-size: 50px;
        line-height: 37px;
        color: #fff;
        text-align: center;
        font-weight: normal;
        font-family: 'Holtwood One SC', serif;
        text-shadow: 2px 2px 2px #000
    }




.glow {
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}



.lbBG {
    background-image: url('../images/header-bg-lb.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
    /* background-color: #fff; */
    padding: 20px;
}

    .lbBG h3 {
        font-family: 'Barlow Semi Condensed', sans-serif;
        font-weight: bold;
        font-size: 50px;
/*        color: #fff;
        text-shadow: 2px 2px 3px #000;*/
    }

/*.form-control {
    width: 100%;
    display: inline-block;
    margin-bottom: 25px;
    height: 40px;
    background: #373d4a;
    border: none;
    color: #000000;
}*/
.content a {
    /*    color: #000000;*/
    /*    text-shadow: 2px 2px 3px #000;*/
    cursor: pointer;
}

.content {
    padding: 0px 0px;
}

.table > :not(caption) > * > * {
    color: #ffffff;
    font-size: 24px;
}

h1 {
    font-family: 'Marcellus SC', serif;
    font-weight: bold;
    font-size: 12em;
    color: #ffffff;
    line-height: 0px;
    text-shadow: 2px 2px 3px #000;
}

.content ul li, ol li {
    color: #ffffff;
}

.leaderboard {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a7cfdf+0,23538a+100;Blue+3d+%238 */
    background: linear-gradient(to bottom, rgba(167,207,223,1) 0%,rgba(35,83,138,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */


    border-radius: 10px;
    box-shadow: 0 7px 30px rgba(62, 9, 11, 0.3);
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}

    .leaderboard h1 {
        font-weight: 100;
        font-size: 2em;
        color: #e1e1e1;
        padding: 5px 0px 5px;
    }

        .leaderboard h1 svg {
            width: 60px;
            height: 60px;
            position: relative;
            top: 3px;
            margin-right: 6px;
            vertical-align: baseline;
        }

    .leaderboard ol {
        counter-reset: leaderboard;
    }

        .leaderboard ol li {
            position: relative;
            z-index: 1;
            font-size: 14px;
            counter-increment: leaderboard;
            padding: 18px 10px 18px 50px;
            cursor: pointer;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translateZ(0) scale(1, 1);
            transform: translateZ(0) scale(1, 1);
        }

            .leaderboard ol li::before {
                content: counter(leaderboard);
                position: absolute;
                z-index: 2;
                top: 15px;
                left: 15px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                color: #c24448;
                background: #fff;
                border-radius: 20px;
                text-align: center;
            }

            .leaderboard ol li mark {
                position: absolute;
                z-index: 2;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                padding: 18px 10px 18px 50px;
                margin: 0;
                background: none;
                color: #fff;
            }

                .leaderboard ol li mark::before, .leaderboard ol li mark::after {
                    content: '';
                    position: absolute;
                    z-index: 1;
                    bottom: -11px;
                    left: -9px;
                    border-top: 10px solid #c24448;
                    border-left: 10px solid transparent;
                    -webkit-transition: all .1s ease-in-out;
                    transition: all .1s ease-in-out;
                    opacity: 0;
                }

                .leaderboard ol li mark::after {
                    left: auto;
                    right: -9px;
                    border-left: none;
                    border-right: 10px solid transparent;
                }

            .leaderboard ol li small {
                position: relative;
                z-index: 2;
                display: block;
                text-align: right;
            }

            .leaderboard ol li::after {
                content: '';
                position: absolute;
                z-index: 1;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #fa6855;
                box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
                -webkit-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
                opacity: 0;
            }

            .leaderboard ol li:nth-child(1) {
                background: #fa6855;
            }

                .leaderboard ol li:nth-child(1)::after {
                    background: #fa6855;
                }

            .leaderboard ol li:nth-child(2) {
                background: #e0574f;
            }

                .leaderboard ol li:nth-child(2)::after {
                    background: #e0574f;
                    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
                }

                .leaderboard ol li:nth-child(2) mark::before, .leaderboard ol li:nth-child(2) mark::after {
                    border-top: 6px solid #ba4741;
                    bottom: -7px;
                }

            .leaderboard ol li:nth-child(3) {
                background: #d7514d;
            }

                .leaderboard ol li:nth-child(3)::after {
                    background: #d7514d;
                    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.11);
                }

                .leaderboard ol li:nth-child(3) mark::before, .leaderboard ol li:nth-child(3) mark::after {
                    border-top: 2px solid #b0433f;
                    bottom: -3px;
                }

            .leaderboard ol li:nth-child(4) {
                background: #cd4b4b;
            }

                .leaderboard ol li:nth-child(4)::after {
                    background: #cd4b4b;
                    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
                }

                .leaderboard ol li:nth-child(4) mark::before, .leaderboard ol li:nth-child(4) mark::after {
                    top: -7px;
                    bottom: auto;
                    border-top: none;
                    border-bottom: 6px solid #a63d3d;
                }

            .leaderboard ol li:nth-child(5) {
                background: #c24448;
                border-radius: 0 0 10px 10px;
            }

                .leaderboard ol li:nth-child(5)::after {
                    background: #c24448;
                    box-shadow: 0 -2.5px 0 rgba(0, 0, 0, 0.12);
                    border-radius: 0 0 10px 10px;
                }

                .leaderboard ol li:nth-child(5) mark::before, .leaderboard ol li:nth-child(5) mark::after {
                    top: -9px;
                    bottom: auto;
                    border-top: none;
                    border-bottom: 8px solid #993639;
                }

            .leaderboard ol li:hover {
                z-index: 2;
                overflow: visible;
            }

                .leaderboard ol li:hover::after {
                    opacity: 1;
                    -webkit-transform: scaleX(1.06) scaleY(1.03);
                    transform: scaleX(1.06) scaleY(1.03);
                }

                .leaderboard ol li:hover mark::before, .leaderboard ol li:hover mark::after {
                    opacity: 1;
                    -webkit-transition: all .35s ease-in-out;
                    transition: all .35s ease-in-out;
                }


.leaves {
    z-index: 1058;
}

.mt {
    /* z-index: 1059; */
    position: relative;
    padding-bottom: 20px;
}




section .set {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
}

    section .set.set2 {
        filter: blur(2px);
        transform: rotateY(180deg);
    }

    section .set.set3 {
        filter: blur(2px);
        transform: rotateY(160deg);
    }

    section .set div {
        animation-name: animate;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        display: block;
        opacity: 0;
        position: absolute;
        top: -10%;
        transform: rotateZ(0) translateX(20px);
    }

        section .set div:nth-child(1) {
            animation-delay: -7s;
            animation-duration: 15s;
            left: 20%;
        }

        section .set div:nth-child(2) {
            animation-delay: -5s;
            animation-duration: 20s;
            left: 50%;
        }

        section .set div:nth-child(3) {
            animation-duration: 20s;
            left: 70%;
        }

        section .set div:nth-child(4) {
            animation-delay: -5s;
            animation-duration: 15s;
            left: 0;
        }

        section .set div:nth-child(5) {
            animation-delay: -10s;
            animation-duration: 18s;
            left: 85%;
        }

        section .set div:nth-child(6) {
            animation-duration: 12s;
            left: 0;
        }

        section .set div:nth-child(7) {
            animation-duration: 14s;
            left: 15%;
        }

        section .set div:nth-child(8) {
            animation-duration: 15s;
            left: 60%;
        }

@keyframes animate {
    10% {
        opacity: 1;
    }

    20% {
        transform: rotateZ(45deg) translateX(-20px);
    }

    40% {
        transform: rotateZ(90deg) translateX(-20px);
    }

    60% {
        transform: rotateZ(180deg) translateX(20px);
    }

    80% {
        transform: rotateZ(180deg) translateX(-20px);
    }

    100% {
        top: 110%;
        transform: rotateZ(225deg) translateX(-20px);
    }
}

@media screen and (max-width: 990px) {


    .promoLogo {
        left: 0;
        right: 0;
        width: 47%;
    }


        .promoLogo img {
            width: 100%;
            margin-top: 50px;
        }




    section h2 {
        font-size: 9rem;
    }
}

@media screen and (max-width: 768px) {

    .promoLogo {
        left: 0;
        right: 0;
        width: 44%;
    }


        .promoLogo img {
            width: 100%;
            margin-top: 50px;
        }


    section h2 {
        font-size: 6rem;
    }

    section .set div img {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 550px) {

    .promoLogo {
        left: 0;
        right: 0;
        width: 100%;
    }


        .promoLogo img {
            width: 100%;
            margin-top: 50px;
        }


    section h2 {
        font-size: 4rem;
    }

    section .set div img {
        width: 75px;
        height: 50px;
    }

    .snowflake img {
        height: 40px;
    }

    .plogo {
        padding-top: 69px;
    }
}

@media screen and (min-width: 240px) and (max-width: 480px) and (orientation: portrait) {

.content h5 {
    font-size: 1.5em;
}


.steps-wrapper {
  max-width: 400px;
  width: 100%;
}

.steps-wrapper img {
  width: 100%;
}

.table > :not(caption) > * > * {
    font-size: 14px;
}


    .earn h6 {
        font-size: 27px;
        background-color: #1e52a3;
    }


    .promoLogo {
        left: 0;
        right: 0;
        width: 100%;
    }


        .promoLogo img {
            width: 100%;
            margin-top: 50px;
        }



    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 40px;
        margin: 0;
    }

    table th, table td {
        font-size: 13px;
    }

    .snowflake img {
        height: 40px;
    }

    .plogo {
        padding-top: 15px;
    }

    .game-area {
        height: 500px;
        width: 320px;
    }


    .game-area-wrapper img {
        bottom: 0px;
        right: 0px;
    }
}


/*------------Leaderboard start-------------------------*/

.lbWrap {
  position: relative;
  width: 100%;
}

  .lbWrap h1 {
      color: #FFF;
      font-size: 34px;
      line-height: 34px;
      margin-bottom: 15px;
  }

  .lbWrap h3 {
      color: #0099ff;
      font-size: 26px;
      line-height: 26px;
      margin: 10px 0 10px;
  }

  .lbWrap h5 {
      color: #0099ff;
      text-align: center;
      margin: 10px auto;
      max-width: 400px;
  }


.vpArea {
  margin: 20px auto;
}

.pospts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  max-width: 270px;
  width: 100%;
  background-color: rgba(0,0,51, 0.7);
  border-radius: 6px;
  padding: 10px;
  color: #FFF;
  font-size: 16px;
  line-height: 17px;
  margin: 5px auto 20px;
  text-align: left;
}

.yourPos, .yourPts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #33ff00;
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
}

  .yourPos span:last-child, .yourPts span:last-child {
      color: #FFF;
  }

.lbBlk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*max-width: 390px;*/
  width: 100%;
  color: #FFF;
  margin: 5px auto;
}

.lbInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  border-radius: 0 6px 6px 0px;
  background-color: rgba(0, 153, 255, 0.8);
  width: 100%;
}

  .lbInfo .blk {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: left;
      width: 20%;
      padding: 10px;
  }

      .lbInfo .blk span:last-child {
          font-weight: bold;
          font-size: 15px;
          line-height: 16px;
      }


  .lbInfo .nme {
      width: 35%;
  }

  .lbInfo .pts:last-child {
      width: 45%;
  }

.pt01 {
  color: #000033;
  font-weight: bold;
  font-size: 13px;
}

.lbPrize {
  border-radius: 0 0 6px 6px;
  background-color: rgba(51, 255, 0, 0.8);
  width: 100%;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  color: #000033;
  font-size: 24px;
  line-height: 27px;
  text-transform: uppercase;
}

.lbInfoWrap {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 30px auto 50px;
}

.blkPos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(51, 255, 0, 0.8);
  padding: 10px;
  border-radius: 6px 0 0 6px;
  font-weight: bold;
  text-align: center;
  color: #000033;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lb-winner-icon {
  width: 25px;
  margin-right: 10px;
}

/*------------Leaderboard finito-------------------------*/


/*------------tabbed start------------------------------*/
.gameLbWrap .nav-tabs {
  border-bottom: 0px solid #dee2e6;
  padding: 0 0 1px;
  margin: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gameLbWrap .nav-item {
  width: 50%;
  text-align: center;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #FFF;
  background-color: #0099ff;
  border-color: #0099ff;
}

.nav-tabs .nav-link {
  color: #0099ff;
  background-color: #FFF;
  margin-bottom: -1px;
  border: 0px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.gameLbWrap .tab-content {
background-color: #000000ab;
  padding: 10px 10px 25px;
  border-radius: 0px 0px 6px 6px;
  text-align: center;
}
/*------------tabbed finito------------------------------*/
/*-------------Game start-------------------------------*/
canvas {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  border: 0px solid gray;
  /* padding: 7px; */
  background: unset !important;
  border-radius: 7px;
  /*z-index:4;*/
}

.gameWrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 10px auto 0;
}

.gameArea {
  /*    width: 100%;*/
  max-width: 500px;
  /*    margin: auto;*/
}

.gameScreen {
  width: 100%;
  z-index: 2;
}

.gameCover {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}


.game-cover-elements {
  /*margin-top: 470px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.cdText {
  text-align: center;
  color: #ffffff;
  font-size: 160px;
}

.gcText {
  text-align: center;
  font-size: 16px;
  color: #ffc107;
  padding: 40px;
}


.stGame {
background-color: #065798;
  font-size: 18px;
  font-weight: bold;
  /* color: #000033; */
  padding: 5px 20px;
  border-radius: 6px;
}

.tncIcons {
  max-width: 40px;
  display: inline-block;
}

.audio_icon {
    position: absolute;
    right: 0;
    top: 10%;
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    background-color: #000;
    padding: 5px;
    border-radius: 6px;
    margin-right: 10px;
	z-index: 10;
}

/*-------------Game End-------------------------------*/
@media (min-width:481px) {




  .promoLogo {
      max-width: 600px;
  }
}

@media (min-width:768px) {
  body {
      background-image: url('/Tower Stack ~ 0.2/3.0/img/tablet-bg.jpg?ver01');
  }

  .screen02 {
      position: relative;
  }


  .clickswrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      max-width: 600px;
  }

  .clicks {
      margin: 5px;
      width: 100%;
  }

  .ufo {
      max-width: 90px;
  }

  /* canvas {
      padding: 7px;
  } */
}

@media (min-width:1000px) {

  .screen01 {
      position: relative;
  }

  .screen02 {
      position: relative;
  }

  .promoLogo02 {
      max-width: 700px;
      margin: 10px auto;
  }

  .promoLogo {
      margin: 50px auto;
      max-width: 700px;
  }
}

@media (min-width:1025px) {
  body {
      background-image: url('/Tower Stack ~ 0.2/3.0/img/desktop-bg.jpg?ver01');
  }

  .promoLogo {
      margin: 20px auto;
  }
}

@media (min-width:1441px) {
}



