/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

p {
    text-align: center;
}

.pulse {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}




.gifts {
    background-color: rgba(0,0,0,0.7);
    margin: 96px auto 130px;
    border-radius: 20px;
}

#screen3 .gifts {
    margin: 96px auto 30px;
}

.step-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1065px;
}
.step {
  width: 70px;
  height: 70px;
  top: -45px;
  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;
  /* overflow: hidden; */
  position: absolute;
}

.step img{
  width: 140%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

h3.modal-title, .h3.modal-title {
    color: #ffffff;
}

/* Etapas brancas  */
.step-bg {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  /* background-color: white; */
  z-index: -1;
}

/* .step {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0px !important;
    text-shadow: 2px 2px 4px #000000;
  z-index: 3;
  transition: background-color 0.4s;
} */

/* Progress Bar CSS control */
.step-1 {left: 20%;}
.step-2 {left: 40%;}
.step-3 {left: 60%;}
.step-4 {left: 80%;}
.step-5 {left: 100%;}

.step-bg-1 { left: 15%; }
.step-bg-2 { left: 40%; }
.step-bg-3 { left: 65%; }
.step-bg-4 { left: 88%; }
.step-bg-5 { left: 110%; }

.progress {
  padding: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar {
    width: 100%;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 221%);
        -ms-transform: translate(-50%, 221%);
            transform: translate(-50%, 221%);
    background-color: rgba(5, 15, 25, 0.9);
    border-radius: 10px;
    z-index: 2;
    overflow: unset;
}

.progress-bar--step {
  height: 16px;
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  border-radius: 10px 10px 10px 10px;
  -webkit-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}


.progress-bar--stripe {
  height: 100%;
  width: calc(100% + 200px);
  background-size: 100px 100px;
  opacity: 0.3;
  background-image: $stripe;
  &.progress-bar--animate-counter-acclerate {
    width: 200%;
  }
}

#zero:checked ~ .progress-bar > .progress-bar--step {
  width: 0%;
  background-color: #f63a0f;
}

#twenty:checked ~ .progress-bar > .progress-bar--step {
  width: 20%;
  background-color: #f27011;
}

#forty:checked ~ .progress-bar > .progress-bar--step {
  width: 40%;
  background-color: #f2b01e;
}

#sixty:checked ~ .progress-bar > .progress-bar--step {
  width: 60%;
  background-color: #f2d31b;
}

#eighty:checked ~ .progress-bar > .progress-bar--step {
  width: 80%;
  background-color: #90d339;
}

#onehundred:checked ~ .progress-bar > .progress-bar--step {
  width: 100%;
  background-color: #4be01e;
}

.radio {
  display: none;
}

.label {
  display: inline-block;
  margin: 0 5px 20px;
  padding: 3px 8px;
  color: #aaa;
  text-shadow: 0 1px black;
  border-radius: 3px;
  cursor: pointer;
}

.radio:checked + .label {
  color: white;
  background: rgba(0, 0, 0, 0.25);
}

/* .progress-bar--animate {
  animation: progress 4s linear;
} */


@-webkit-keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}


@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes counter-progress {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}

@keyframes counter-progress {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}

@-webkit-keyframes counter-progress-accelerate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes counter-progress-accelerate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

h6 {
    font-size: 16px;
    line-height: 42px;
    margin-bottom: 0;
}

h3 {
    text-align:center;
}

.starsWrap {
    max-width: 600px;
}

.star {
    max-width: 200px;
}

.avail {
    background-color: #e9cb8b;
    color: #FFFFFF;
}

.starsInfo {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    max-width: 380px;
    width: 97%;
    margin: 20px auto 0;
    border-radius: 6px;
}

.comp {
    background-color: #eb1716;
    color: #000033;
}

.img-respon {
    width: 100%;
}

.mobile {
    max-height: 73px;
}

.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: 100px;
    margin: 0px;
    border-radius: 6px 0 0 6px;
}

.keyInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: rgba(5,15,25,0.9);
    padding: 10px;
    border-radius: 0 10px 10px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.keyWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    margin: auto;
    padding-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .keyInfo p {
        width: 100%;
        font-size: 14px;
        margin: 0;
        padding: 0;
    }

.Golddust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: hidden;
    z-index:1;
}



.wheel {
    position: relative;
    max-width: 550px;
    width: 100%;
    margin-top: 50px;
    margin: 100px auto 0;
}


.btn-primary {
    color: #fff;
    background-color: #eb1716 !important;
    border-color: #eb1716 !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        color: #e9cb8b
    }

.rkBtn {
    margin: 30px auto 10px;
    display: block;
    background-color: #000033;
    border: 0;
    font-size: 20px;
}

.gameErrorMessage {
    color: #dd1717;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    display: block;
}

.gameErrorMessage a {
    color: #e9cb8b;
}

.clickswrap {
    /* max-width: 300px; */
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

.clicks {
    color: #fff;
    font-size: 16px;
    padding: 5px;
    border-radius: 6px;
    margin: 5px;
    width:100%;
    text-align: center;
    font-weight: bold;
}

.tile-disabled img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}

/*read more start css only*/

.read-more-target,
.read-more-trigger_opened {
    display: none;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target,
.read-more-state:checked ~ .read-more-trigger_opened {
    display: block;
}

.read-more-state:checked ~ .read-more-trigger_closed {
    display: none;
}

.read-more-trigger_closed, .read-more-trigger_opened {
    color: #01b0c2;
    border: 2px solid #01b0c2;
    padding: 10px;
    max-width: 150px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}



.main-info .read-more-wrap h3 {
    text-align: center;
    font-size: 21px;
    color: #fff;
    margin: 10px auto;
    padding: 4px;
}

#header .container {
    height: 100%;
}

#container {
    overflow: hidden;
}

.overflow {
    overflow: hidden;
}

.center {
    margin: auto;
    /*width: 50%;*/
}

.promo-logo {
    margin-top: 93px;
}

.promo-logo-2 {
     max-width:300px;
    margin: 0 auto;
    display: block;
    padding-bottom: 20px;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.top {
    z-index: 100;
}

#header .container {
    height: 100%;
}

body {

    color: #888;
    overflow-x: hidden;
}


h4 {
    padding: 10px 10px;
    color: #ffffff;
    margin: 0 auto;
}

h5 {
    color: #ffba00;
    font-weight: 600;
    padding: 3px;
    font-size: 22px;
    margin: 50px auto 0px;
    text-transform: uppercase;
}

div.column {
    /* The background image must be 800px wide */
    max-width: 100%;
}

.screen1 {
    background-image: url(../images/bg.jpg?ver=001);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #FFF;
    margin-top: -96px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

body:has(.screen1) .universal-footer {
    margin-top: 0 !important;
}

.screen2 {
    background-image: url(../images/bg2.jpg);
    background-size: cover;
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
/*    min-height: 920px;*/
    /*  background-attachment: fixed;*/
    color: #FFF;
}
.screen3 {
    background-image: url(../images/bg2.jpg);
    background-size: cover;
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
    color: #FFF;
}

    .screenplay h3 {
    margin-top: 0;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px #000000;
    padding-bottom: 10px;
    }

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: #e9cb8b;
    /* text-shadow: 2px 2px 4px #000000; */
    color: #000;
    opacity: 10;
    /* margin: 121px; */
    width: 40px;
    margin-top: -22px;
    height: 40px;
    border-radius: 50%;
}


.close:hover, .close:focus {
    color: yellow;
    filter: alpha(opacity=50);
    opacity: 10;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.promo-nav-link {
    color: #e9cb8b;
    background-color: #113837;
    padding: 5px 10px;
    border-radius: 10px;
    max-width: 140px;
    font-family: Roboto-Black;
    cursor: pointer;
    width: 100%;
    display: inline-block;
}

.promo-logo {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}


.promo-logo2 {
    position: relative;
    margin: 109px auto 0;
    max-width: 350px;
}


#footer {
    background-color: #000;
    padding: 20px 0px;
    color: grey;
    text-align: center;
}

.main-info {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    font-weight: normal;
    z-index: 10;
    max-width: 600px;
    margin: 10px auto 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
    text-indent: 0.1em;
}

#loginErrorMessage {
    color: red;
    margin-top: 10px;
}

#loginErrorMessage a {
    color:#e9cb8b
}

#clicksAvailable {
    color: #fff;
}

#clicksClaimed {
    color: #fff;
}

.screen2 h3 {
    position: relative;
    padding: 20px;
    color: #000;
    font-weight: bold;
    text-align: center;
    font-size: 33px;
    margin-top: 0;
}

.navbar-inverse .navbar-nav > li > a {
    color: #fff !important;
    text-align: center;
    font-size: 16px;
}

    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
        color: #eb1716 !important;
    }



.navbar-inverse {
    background-color: #050f19;
    /*    border-color: #080808;*/
}

.navbar-right {
    padding-top: 15px;
}

.navbar-brand {

    opacity: 1;
    display: table;
    margin-bottom: 0px;
}


.gradient-overlay-sec .nav-light li,
.gradient-overlay-sec .nav-light li:first-of-type,
.gradient-overlay-sec .nav-light li:last-of-type {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.gradient-overlay-sec .nav-light .active a {
    color: #F60 !important;
}

.gradient-overlay-sec .nav-light li a:hover {
    background: rgba(51, 51, 51, 0.5);
}

.gradient-overlay-sec .nav-light li a {
    color: #ffffff;
}

.tile {

    cursor:pointer;
}

    .tile:hover {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: pulse;
        animation-name: pulse;
    }

button.submitPoints {
    cursor: pointer;
    border: 0;
    background:  #113837;
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 3px 0;
    font: 'Open Sans', sans-serif, Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    /* margin-bottom: 25px; */
}

    button.submitPoints:hover {
        background: #e9cb8b;
        -webkit-transition: all 0.4s ease-out;
        -o-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }

input[type="text"] {
    background-color: #fff;
    border: 0;
    padding: 10px 0px;
    text-align: center;
    font-size: 16px;
    color: #000;
    font: 'Open Sans', sans-serif, Helvetica, Arial, sans-serif;
    font-weight: 400;
    border-radius: 0;
}

.field {
    position: relative;
    z-index: 99;
    cursor: pointer;
}


#toScreen3 button{
    margin-top: -110px;
}

.main-info h3 {
    text-align: center;
    font-size: 24px;
    color: #e9cb8b;
    margin: 10px auto;
    padding: 4px;
}

.wrapper {
    margin-top: 115px;
    margin-bottom: 25px;
    max-width: 774px;
    margin: 40px auto 0;
}

    .wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        margin-bottom: 20px;
        border: 2px solid #e9cb8b
    }

ul.cards {
    padding: 0;
}

/*.cards, .card, .view, .details, .details p {
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.cards {
    height: 620px;
    width: 848px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
}

    .cards .card {
        cursor: pointer;
        position: relative;
        -webkit-perspective: 1000px;
                perspective: 1000px;
        -webkit-transform-style: preserve-3d;
                transform-style: preserve-3d;
        height: calc(100% / 4 - 10px);
        width: calc(100% / 4 - 10px);
    }

.card.shake {
    -webkit-animation: shake 0.35s ease-in-out;
            animation: shake 0.35s ease-in-out;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    20% {
        -webkit-transform: translateX(-13px);
                transform: translateX(-13px);
    }

    40% {
        -webkit-transform: translateX(13px);
                transform: translateX(13px);
    }

    60% {
        -webkit-transform: translateX(-8px);
                transform: translateX(-8px);
    }

    80% {
        -webkit-transform: translateX(8px);
                transform: translateX(8px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    20% {
        -webkit-transform: translateX(-13px);
                transform: translateX(-13px);
    }

    40% {
        -webkit-transform: translateX(13px);
                transform: translateX(13px);
    }

    60% {
        -webkit-transform: translateX(-8px);
                transform: translateX(-8px);
    }

    80% {
        -webkit-transform: translateX(8px);
                transform: translateX(8px);
    }
}

.cards .card .view {
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
    position: absolute;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.25s linear;
    transition: -webkit-transform 0.25s linear;
    -o-transition: transform 0.25s linear;
    transition: transform 0.25s linear;
    transition: transform 0.25s linear, -webkit-transform 0.25s linear;
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card .front-view img {
    max-width: 200px;
    border-radius: 7px;
}

.card .back-view {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
}

    .card .back-view img {
        max-width: 200px;
        border-radius: 7px;
    }

.card.flip .front-view {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.card.flip .back-view {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
}

#rewardMessage a {
 
    color: #ffba00;
   
}


#redemptionMsg1 {
    margin: 0;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

#prevRewardModal .modal-body {
    margin: 0 auto;
}

#prevRewardModal button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: #fee00c;
    /* text-shadow: 2px 2px 4px #000000; */
    color: #000;
    opacity: 10;
    margin: 0px !important;
    width: 40px;
    /* margin-top: 91px; */
    height: 40px;
    border-radius: 50%;
}

#prevRewardModal .modal-content {
    background-color: #050F19;
}

    #prevRewardModal .modal-content h3 {
        text-align: center;
        color: #ffba00;
        font-weight: bold;
        /* margin-top: 40px; */
        /* -webkit-text-stroke: 1px black; */
        /* color: white; */
        text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    }




.modal-backdrop.in {
    opacity: .6 !important;
}


.card {
    background-color: transparent;
    border: none;
}

/*.details {
    max-width: 900px;
    width: 100%;
    position: absolute;*/
    /* top: 50%; */
    /*left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
    margin-top: 0;
    top: 0px;
    padding: 0 40px;
    border-radius: 6px;
    border: 2px solid #fff;
    background-color: #fee00c;*/
    /*    background-color: rgba(101,0,160,0.9);*/
    /*height: calc(100% / 5 - 120px);
    justify-content: space-between;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}*/



.details {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* margin: 0; */
    /* display: flex; */
    /* margin-top: 0; */
    top: 0px;
    padding: 0 40px;
    border-radius: 6px;
    border: 2px solid #fff;
    background-color: #fee00c;
    /* background-color: rgba(101,0,160,0.9); */
    /* height: calc(100% / 5 - 120px); */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
            box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}


    .details p {
        font-size: 18px;
        height: 17px;
        padding-right: 18px;
        /* border-right: 1px solid #ccc; */
        color: #000 !important;
        margin: 0px;
    }
.details p span{
  margin-left: 8px;
}
.details p b{
  font-weight: 500;
}
.details button{
  cursor: pointer;
  font-size: 14px;
  color: #6563ff;
  border-radius: 4px;
  padding: 4px 11px;
  background: #fff;
  border: 2px solid #6563ff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.details button:hover{
  color: #fff;
  background: #6563ff;
}

.progstrip {
    display: block;
    max-width: 100%;
    height: 50px;
    /* margin: auto;*/
}


.progstripmobi {
    max-width: 100%;
    height: 50px;
    margin: auto;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#bfc1c5+0,dadde4+9,ffffff+53,dadde4+93,bfc1c5+99 */
    background: #bfc1c5; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#bfc1c5),color-stop(9%, #dadde4),color-stop(53%, #ffffff),color-stop(93%, #dadde4),color-stop(99%, #bfc1c5));
    background: -o-linear-gradient(left, #bfc1c5 0%,#dadde4 9%,#ffffff 53%,#dadde4 93%,#bfc1c5 99%);
    background: linear-gradient(to right, #bfc1c5 0%,#dadde4 9%,#ffffff 53%,#dadde4 93%,#bfc1c5 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfc1c5', endColorstr='#bfc1c5',GradientType=1 ); /* IE6-9 */
    border-radius: 0px;
    padding: 6px 25px 7px 25px;
}

    .progstripmobi p {
        text-transform: uppercase;
        margin-bottom: 0rem;
        text-align: right;
        font-size: 12px;
        line-height: 15px;
    }

    .progstripmobi h4 {
        font-size: 1.8em;
        color: #eb1716;
        font-weight: 800;
        margin-bottom: 0rem;
    }


.cliens .progstrip h4 {
    font-size: 2em;
    color: #eb1716;
    font-weight: 800;
    margin-bottom: 0rem;
}

.cliens .progstrip p {
    text-transform: uppercase;
    margin-bottom: 0rem;
}

/*progressive ticker start*/
#tick li, #tick2 li {
    list-style-type: none;
    float: left;
    padding-right: 20px;
    position: absolute;
    left: 0px;
}

#tick, #tick2 {
    position: relative;
    display: block;
    width: 5000px;
    margin: 0;
    display: table;
    height: 0px;
}

@-webkit-keyframes ticker {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

@keyframes ticker {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

.ticker-wrap {
    top: 0;
    width: 73%;
    overflow: hidden;
    margin-left: 20px;
    position: relative;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    will-change: transform;

    animation: ticker 940s linear infinite;
    -webkit-animation: ticker 940s linear infinite;
}

.ticker_item {
    display: inline-block;
    padding: 6px 2rem;
    font-size: 14px;
    color: #ffffff;
}

.visitors {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.light {
  background-color: #05c220;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 10px;
  -webkit-animation: glow 1s infinite ease-in-out;
          animation: glow 1s infinite ease-in-out;
}

@-webkit-keyframes glow {
  0% {
    background-color: #05c220;
  }
  50% {
    background-color: #05ea25;
    -webkit-box-shadow: 5px 5px 15px #00e320, -5px -5px 15px #00e320;
            box-shadow: 5px 5px 15px #00e320, -5px -5px 15px #00e320;
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
  }
  0% {
    background-color: #05c220;
    -webkit-transform: rotateZ(80deg);
            transform: rotateZ(80deg);
  }
}

@keyframes glow {
  0% {
    background-color: #05c220;
  }
  50% {
    background-color: #05ea25;
    -webkit-box-shadow: 5px 5px 15px #00e320, -5px -5px 15px #00e320;
            box-shadow: 5px 5px 15px #00e320, -5px -5px 15px #00e320;
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
  }
  0% {
    background-color: #05c220;
    -webkit-transform: rotateZ(80deg);
            transform: rotateZ(80deg);
  }
}

.visitors-text {
  color: white;
  font-size: 1em;
  margin: 0;
}

.grey-out {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}

.present {
	width: 212px;
    /* max-width: 49vw; */
    margin: 0 auto;
    cursor: pointer;
  }
  
  .box {
	width: 212px;
	/* max-width: 90vw; */
	/* height: 124px; */
  }
  
  .box,
  .lid {
	/* background: radial-gradient(white 15%, transparent 15.1%),
	  radial-gradient(white 15%, transparent 15.1%), rgb(240, 58, 58);
	background-position: 0 0, 25px 25px;
	background-size: 50px 50px; */
	position: relative;
	margin: 0 auto;
  }
  
  .lid {
	width: 212px;
	/* max-width: 90vw; */
	height: 70px;
	/* box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2); */
	z-index: 1;
	padding: 0 2px;
	/* background-color: rgb(216, 52, 52); */
	top: 0;
	left: 0;
	-webkit-transition: top ease-out 0.5s, left ease-out 0.5s, -webkit-transform ease-out 0.5s;
	transition: top ease-out 0.5s, left ease-out 0.5s, -webkit-transform ease-out 0.5s;
	-o-transition: top ease-out 0.5s, left ease-out 0.5s, transform ease-out 0.5s;
	transition: top ease-out 0.5s, left ease-out 0.5s, transform ease-out 0.5s;
	transition: top ease-out 0.5s, left ease-out 0.5s, transform ease-out 0.5s, -webkit-transform ease-out 0.5s;
  }
  
  .box span,
  .lid span {
	position: absolute;
	display: block;
	/* background: rgba(213, 177, 96, 0.8);
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1); */
  }

  .present.clicked .lid {
	top: -70px;
	-webkit-transform: rotateZ(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotateZ(10deg);
	left: 10px;
  }
  
  .present.clicked .promo {
	top: -60px;
  }

  h3.gifting {
    padding-top: 30px;
  }

  .main-info .ticker-wrap {
    margin: 0 20px;
    width: 94%;
}

/*snow start*/

#snow {
    background: none;
    font-family: Androgyne;
    background-image: url("https://4.bp.blogspot.com/-RGdg1HwjcN0/V0MfveH5tnI/AAAAAAAAV9U/JuZAFpkJmHkhrLHTY3Nzt--f1_D4QUDRACLcB/s1600/s1.png"), url("https://3.bp.blogspot.com/-lLYG_aPYaWI/V0MfvZui2cI/AAAAAAAAV9Q/ivLLay21G6IKLLGEI-bHgpzmPRHFubhwgCLcB/s1600/s2.png"), url("https://3.bp.blogspot.com/-mPW9Z5fvV5w/V0MfvZ1kmnI/AAAAAAAAV9Y/qU7_F2J0XP4bXNi3rIyV55Y1z9RyTRoqQCLcB/s1600/s3.png");
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    -webkit-animation: snow 1s linear infinite;
    animation: snow 12s linear infinite;
}

@keyframes snow {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }

    50% {
        background-position: 500px 500px, 100px 200px, -100px 150px;
    }

    100% {
        background-position: 500px 1000px, 200px 400px, -100px 300px;
    }
}

@-webkit-keyframes snow {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }

    50% {
        background-position: 500px 500px, 100px 200px, -100px 150px;
    }

    100% {
        background-position: 500px 1000px, 200px 400px, -100px 300px;
    }
}


/*snow end*/



@media (max-width: 980px) {
    .screen2 {
        min-height: 920px;
        height: 100%;
    }
    .screen1 {
        height: auto;
        min-height: 620px;
    }
}

@media (max-width: 820px) and (min-width: 421px) and (orientation: portrait) {
 /*   .screen2 {
        padding-top: 20%;
      
        min-height: 1118px;
      
    }
*/
    .screen2 {
        min-height: 700px;
        height: 91%;
    }


    .wrapper {
        max-width: 500px;
    }

        .wrapper img {
            max-width: 100%;
            height: auto;
        }
  

        .wrapper h3 {
            font-size: 3em;
        }

    .promo-logo {
     
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      
    }
}

@media screen and (max-width: 767px) {

    .promo-logo {
        max-width: 366px;
        margin: 94px auto 20px;
    }

    .wrapper {
        max-width: 300px;
    }

        .wrapper img {
            max-width: 100%;
            height: auto;
        }
}

@media screen and (max-width: 667px) {
   

    .screen2 {
        /*min-height: 700px;*/
        height: 100%;
    }

    .wrapper {
      
        max-width: 600px;
      
    }

    .wrapper img {
        /* max-width: 69px; */
        height: auto;
    }
}



@media screen and (max-width: 530px) {
   
    /* .screenplay h3 {
        margin-top: 80px;
       
    } */

    .starsInfo {
        margin: 30px auto 0;
      
    }


    .wrapper img {
        max-width: 68px;
        /* width: 100%; */
        height: auto;
    }
 

    .clickswrap {
           display: block;
    }

    .clicks {
        margin: 5px 0; 
    }

        .details p {
            height: 21px;
            font-size: 17px;
            padding-right: 13px;
            margin-top: -3px;
        }

        .details button {
            font-size: 13px;
            padding: 5px 10px;
            border: none;
            margin: 2px auto;
            color: #fff;
            text-align: center;
            background: #6563ff;
        }

    .main-info .read-more-wrap h3 {
        font-size: 16px;
        line-height: 21px;
    }
    .main-info h3 {
        font-size: 21px;
      
    }

    .screen2 h3 {
        padding: 0px;
        margin-top: 113px;
    }

    #rewardModal h2 {
        font-size: 35px;
    }

  

}

.screen2 {
   height:auto;
}


@media screen and (max-width: 280px) {
    .screen2 h3 {
        font-size: 1em;
    }
}


/********** Game Media Queries **********/
/********** Big Tablet Landscape **********/
@media (max-width: 1024px) and (orientation: portrait) {
.step-container {
    max-width: 864px;
}
}

/********** Tablet Portrait **********/
@media (max-width: 820px) and (min-width: 421px) and (orientation: portrait) {

    .cards {
        height: 454px;
        width: 600px;
    }

    .card .front-view img, .card .back-view img {
        max-width: 150px;
    }

    .ticker-wrap {
    width: 93%;
}
    .step-container {
        max-width: 640px;
    }

    .step img {
    width: 100%;
}
}

/********** Tablet Landscape **********/
@media (max-width: 1024px) and (orientation: landscape) {
    .ticker-wrap {
    width: 70%;
}

.step-container {
    max-width: 864px;
}
}

/********** Mobile Landscape **********/
@media (max-width: 920px) and (orientation: landscape) {
    .card .front-view img, .card .back-view img {
        max-width: 140px;
    }

    .cards {
        height: 464px;
        width: 588px;
    }
}
/********** Mobile Portrait **********/
@media (max-width: 500px) and (orientation: portrait) {
    .screenplay h3 {
    font-size: 30px;
}
    h4 {
    font-size: 16px;
}

    .cards {
        height: 247px;
        width: 320px;
    }

    .card .back-view img, .card .front-view img {
        max-width: 80px;
    }

    .promo-logo {
        margin: 98px auto 20px;
     
    }

    .details {
        width: 100%;
        text-align: center;
        padding: 20px 0px;
        border-radius: 0;
        border: none;
    }

    .screen2 h3 {

        padding: 0px;
        margin-top: 113px;
    }

    #rewardModal h2 {
        font-size: 35px;
    }

    .mobile {
        max-height: 50px;
    }

    .step img {
    width: 55%;
}

.ticker-wrap {
    top: 0;
    width: 90%;
    overflow: hidden;
    margin-left: 20px;
}

.step-container {
        max-width: 95%;
    }

.step-1 {left: 10%;}
.step-2 {left: 30%;}
.step-3 {left: 50%;}
.step-4 {left: 70%;}
.step-5 {left: 90%;}

.main-info .ticker-wrap {
    width: 90%;
}

}