body,
html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background:#7b5c33;
    -webkit-text-size-adjust: none;
}

* {
    outline: none;
}

#container {
    width: 100%;
    max-width: 840px;
    height: auto;
    min-height: 100%;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    margin: auto;
    overflow: hidden;
    background: #7b5c33;
}

#top-wrap {
    width: 100%;
    height: 410px;
    overflow: hidden;
    position: relative;
    background: url("images/1_css_background.gif") left top repeat-x #341b0d;
    background: -moz-linear-gradient(top, #23e2f0 0%, #ffdc5e 75%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #23e2f0), color-stop(75%, #ffdc5e));
    background: -webkit-linear-gradient(top, #23e2f0 0%, #ffdc5e 75%);
    background: -o-linear-gradient(top, #23e2f0 0%, #ffdc5e 75%);
    background: -ms-linear-gradient(top, #23e2f0 0%, #ffdc5e 75%);
    background: linear-gradient(to bottom, #e45410 0%, #e45410 75%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#23e2f0', endColorstr='#ffdc5e', GradientType=0);
}

.offroad-track {
    width: 1680px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 3;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
}

.offroad-track.slow {
    -webkit-animation: trackSlow 0.8s steps(1680) infinite;
    -moz-animation: trackSlow 0.8s steps(1680) infinite;
    -ms-animation: trackSlow 0.8s steps(1680) infinite;
    animation: trackSlow 0.8s steps(1680) infinite;
}

@-webkit-keyframes trackSlow {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes trackSlow {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes trackSlow {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes trackSlow {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.offroad-track.fast {
    -webkit-animation: trackFast 0.3s steps(1680) infinite;
    -moz-animation: trackFast 0.3s steps(1680) infinite;
    -ms-animation: trackFast 0.3s steps(1680) infinite;
    animation: trackFast 0.3s steps(1680) infinite;
}

@-webkit-keyframes trackFast {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes trackFast {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes trackFast {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes trackFast {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.mountains {
    width: 1680px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 80px;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
    z-index: 1;
}

.mountains.slow {
    -webkit-animation: mountainSlow 6s steps(1680) infinite;
    -moz-animation: mountainSlow 6s steps(1680) infinite;
    -ms-animation: mountainSlow 6s steps(1680) infinite;
    animation: mountainSlow 6s steps(1680) infinite;
}

@-webkit-keyframes mountainSlow {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes mountainSlow {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes mountainSlow {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes mountainSlow {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.mountains.fast {
    -webkit-animation: mountainFast 2s steps(1680) infinite;
    -moz-animation: mountainFast 2s steps(1680) infinite;
    -ms-animation: mountainFast 2s steps(1680) infinite;
    animation: mountainFast 2s steps(1680) infinite;
}

@-webkit-keyframes mountainFast {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes mountainFast {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes mountainFast {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes mountainFast {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.rocks {
    width: 2520px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 90px;
    z-index: 2;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
}

.rocks.slow {
    -webkit-animation: rockSlow 3s steps(1680) infinite;
    -moz-animation: rockSlow 3s steps(1680) infinite;
    -ms-animation: rockSlow 3s steps(1680) infinite;
    animation: rockSlow 3s steps(1680) infinite;
}

@-webkit-keyframes rockSlow {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-1680px);
    }
}

@-moz-keyframes rockSlow {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-1680px);
    }
}

@-ms-keyframes rockSlow {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-1680px);
    }
}

@keyframes rockSlow {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-1680px);
    }
}

.rocks.fast {
    -webkit-animation: rockFast 0.8s steps(1680) infinite;
    -moz-animation: rockFast 0.8s steps(1680) infinite;
    -ms-animation: rockFast 0.8s steps(1680) infinite;
    animation: rockFast 0.8s steps(1680) infinite;
}

@-webkit-keyframes rockFast {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-1680px);
    }
}

@-moz-keyframes rockFast {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-1680px);
    }
}

@-ms-keyframes rockFast {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-1680px);
    }
}

@keyframes rockFast {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-1680px);
    }
}

.bgmountains {
    width: 1680px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 40px;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
}

.bgmountains.slow {
    -webkit-animation: bgmountainSlow 10s steps(1680) infinite;
    -moz-animation: bgmountainSlow 10s steps(1680) infinite;
    -ms-animation: bgmountainSlow 10s steps(1680) infinite;
    animation: bgmountainSlow 10s steps(1680) infinite;
}

@-webkit-keyframes bgmountainSlow {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes bgmountainSlow {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes bgmountainSlow {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes bgmountainSlow {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.bgmountains.fast {
    -webkit-animation: bgmountainFast 6s steps(1680) infinite;
    -moz-animation: bgmountainFast 6s steps(1680) infinite;
    -ms-animation: bgmountainFast 6s steps(1680) infinite;
    animation: bgmountainFast 6s steps(1680) infinite;
}

@-webkit-keyframes bgmountainFast {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes bgmountainFast {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes bgmountainFast {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes bgmountainFast {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.wind {
    width: 1680px;
    height: auto;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 4;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
}

.wind.slow {
    -webkit-animation: windslow 0.8s steps(1680) infinite;
    -moz-animation: windslow 0.8s steps(1680) infinite;
    -ms-animation: windslow 0.8s steps(1680) infinite;
    animation: windslow 0.8s steps(1680) infinite;
}

@-webkit-keyframes windslow {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes windslow {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes windslow {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes windslow {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

.wind.fast {
    -webkit-animation: windFast 0.4s steps(1680) infinite;
    -moz-animation: windFast 0.4s steps(1680) infinite;
    -ms-animation: windFast 0.4s steps(1680) infinite;
    animation: windFast 0.4s steps(1680) infinite;
}

@-webkit-keyframes windFast {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-840px);
    }
}

@-moz-keyframes windFast {
    0% {
        -moz-transform: translateX(0px);
    }
    100% {
        -moz-transform: translateX(-840px);
    }
}

@-ms-keyframes windFast {
    0% {
        -ms-transform: translateX(0px);
    }
    100% {
        -ms-transform: translateX(-840px);
    }
}

@keyframes windFast {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-840px);
    }
}

#car-hotspot {
    width: 333px;
    height: 180px;
    left: 0;
    right: 0;
    bottom: 65px;
    margin: auto;
    z-index: 999;
    position: absolute;
    -webkit-animation: hotspot 0.8s ease;
    -moz-animation: hotspot 0.8s ease;
    -ms-animation: hotspot 0.8s ease;
    animation: hotspot 0.8s ease;
    display: block;
}

@-webkit-keyframes hotspot {
    0%,
    99% {
        display: none;
    }
    100% {
        display: block;
    }
}

@-moz-keyframes hotspot {
    0%,
    99% {
        display: none;
    }
    100% {
        display: block;
    }
}

@-ms-keyframes hotspot {
    0%,
    99% {
        display: none;
    }
    100% {
        display: block;
    }
}

@keyframes hotspot {
    0%,
    99% {
        display: none;
    }
    100% {
        display: block;
    }
}

.car-wrap {
    width: 233px;
    left: 0;
    right: 0;
    bottom: 180px;
    margin: auto;
    z-index: 999;
    position: absolute;
    -webkit-animation: carInitial 0.8s ease;
    -moz-animation: carInitial 0.8s ease;
    -ms-animation: carInitial 0.8s ease;
    animation: carInitial 0.8s ease;
}

@-webkit-keyframes carInitial {
    0% {
        -webkit-transform: translate(-880px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes carInitial {
    0% {
        -webkit-transform: translate(-880px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-ms-keyframes carInitial {
    0% {
        -webkit-transform: translate(-880px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

@keyframes carInitial {
    0% {
        -webkit-transform: translate(-880px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

.car-wrap .pointer {
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 999;
    position: absolute;
    -webkit-animation: pointer 0.4s ease infinite;
    -moz-animation: pointer 0.4s ease infinite;
    -ms-animation: pointer 0.4s ease infinite;
    animation: pointer 0.4s ease infinite;
    display: none;
}

@-webkit-keyframes pointer {
    0% {
        -webkit-transform: translateY(-10px);
        opacity: 0.5;
    }
    50% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-10px);
        opacity: 0.5;
    }
}

@-moz-keyframes pointer {
    0% {
        -moz-transform: translateY(-10px);
        opacity: 0.5;
    }
    50% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
    100% {
        -moz-transform: translateY(-10px);
        opacity: 0.5;
    }
}

@-ms-keyframes pointer {
    0% {
        -ms-transform: translateY(-10px);
        opacity: 0.5;
    }
    50% {
        -ms-transform: translateY(0);
        opacity: 1;
    }
    100% {
        -ms-transform: translateY(-10px);
        opacity: 0.5;
    }
}

@keyframes pointer {
    0% {
        transform: translateY(-10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-10px);
        opacity: 0.5;
    }
}

.car-wrap .car {
   left: -2px;
    top: 8px;
    width: 252px;
    height: auto;
    position: absolute;
    z-index: 10;
}

.car-wrap .car.slow {
    -webkit-animation: car 0.5s ease-in-out infinite;
    -moz-animation: car 0.5s ease-in-out infinite;
    -ms-animation: car 0.5s ease-in-out infinite;
    animation: car 0.5s ease-in-out infinite;
}

@-webkit-keyframes car {
    0% {
        -webkit-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(0, 4px);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes car {
    0% {
        -moz-transform: translate(0, 0);
    }
    50% {
        -moz-transform: translate(0, 4px);
    }
    100% {
        -moz-transform: translate(0, 0);
    }
}

@-ms-keyframes car {
    0% {
        -ms-transform: translate(0, 0);
    }
    50% {
        -ms-transform: translate(0, 4px);
    }
    100% {
        -ms-transform: translate(0, 0);
    }
}

@keyframes car {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 4px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.car-wrap .engine {
    right: 33px;
    top: 32px;
    width: 54px;
    height: auto;
    position: absolute;
    z-index: 9;
    -webkit-animation: engine 0.1s ease-in-out infinite;
    -moz-animation: engine 0.1s ease-in-out infinite;
    -ms-animation: engine 0.1s ease-in-out infinite;
    animation: engine 0.1s ease-in-out infinite;
}

@-webkit-keyframes engine {
    0% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes engine {
    0% {
        -moz-transform: translateY(0);
    }
    50% {
        -moz-transform: translateX(1px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@-ms-keyframes engine {
    0% {
        -ms-transform: translateY(0);
    }
    50% {
        -ms-transform: translateX(1px);
    }
    100% {
        -ms-transform: translateY(0);
    }
}

@keyframes engine {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateX(1px);
    }
    100% {
        transform: translateY(0);
    }
}

.car-wrap .rearTyre {
    left: 27px;
    bottom: -110px;
    width: 60px;
    height: auto;
    position: absolute;
    z-index: 11;
}

.car-wrap .rearTyre.slow {
    -webkit-animation: rearTyre 0.1s linear infinite;
    -moz-animation: rearTyre 0.1s linear infinite;
    -ms-animation: rearTyre 0.1s linear infinite;
    animation: rearTyre 0.1s linear infinite;
}

@-webkit-keyframes rearTyre {
    0% {
        -webkit-transform: rotate(0deg) translateY(0);
    }
    50% {
        -webkit-transform: rotate(180deg) translateY(1px);
    }
    100% {
        -webkit-transform: rotate(360deg) translateY(0);
    }
}

@-moz-keyframes rearTyre {
    0% {
        -moz-transform: rotate(0deg) translateY(0);
    }
    50% {
        -moz-transform: rotate(180deg) translateY(1px);
    }
    100% {
        -moz-transform: rotate(360deg) translateY(0);
    }
}

@-ms-keyframes rearTyre {
    0% {
        -ms-transform: rotate(0deg) translateY(0);
    }
    50% {
        -ms-transform: rotate(180deg) translateY(1px);
    }
    100% {
        -ms-transform: rotate(360deg) translateY(0);
    }
}

@keyframes rearTyre {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateY(1px);
    }
    100% {
        transform: rotate(360deg) translateY(0);
    }
}

.car-wrap .rearTyre.fast {
    -webkit-animation: rearTyreFast 0.01s linear infinite;
    -moz-animation: rearTyreFast 0.01s linear infinite;
    -ms-animation: rearTyreFast 0.01s linear infinite;
    animation: rearTyreFast 0.01s linear infinite;
}

@-webkit-keyframes rearTyreFast {
    0% {
        -webkit-transform: rotate(0deg) translateY(0);
    }
    50% {
        -webkit-transform: rotate(90deg) translateY(1px);
    }
    100% {
        -webkit-transform: rotate(180deg) translateY(0);
    }
}

@-moz-keyframes rearTyreFast {
    0% {
        -moz-transform: rotate(0deg) translateY(0);
    }
    50% {
        -moz-transform: rotate(90deg) translateY(1px);
    }
    100% {
        -moz-transform: rotate(180deg) translateY(0);
    }
}

@-ms-keyframes rearTyreFast {
    0% {
        -ms-transform: rotate(0deg) translateY(0);
    }
    50% {
        -ms-transform: rotate(90deg) translateY(1px);
    }
    100% {
        -ms-transform: rotate(180deg) translateY(0);
    }
}

@keyframes rearTyreFast {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(90deg) translateY(1px);
    }
    100% {
        transform: rotate(180deg) translateY(0);
    }
}

.car-wrap .frontTyre {
    right: -7px;
    bottom: -110px;
    width: 62px;
    height: auto;
    position: absolute;
    z-index: 11;
}

.car-wrap .frontTyre.slow {
    -webkit-animation: rearTyre 0.1s linear infinite;
    -moz-animation: rearTyre 0.1s linear infinite;
    -ms-animation: rearTyre 0.1s linear infinite;
    animation: rearTyre 0.1s linear infinite;
}

.car-wrap .frontTyre.fast {
    -webkit-animation: rearTyreFast 0.01s linear infinite;
    -moz-animation: rearTyreFast 0.01s linear infinite;
    -ms-animation: rearTyreFast 0.01s linear infinite;
    animation: rearTyreFast 0.01s linear infinite;
}

.car-wrap .shadow {
    left: 0;
    right: 0;
    margin: auto;
    bottom: -114px;
    position: absolute;
    z-index: 8;
}

.car-wrap .dust {
    left: -50px;
    bottom: -114px;
    position: absolute;
    z-index: 9;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: url("images/2_css_dust.png") left top no-repeat;
    background-position: 0px 0px;
}

.car-wrap .dust.slow {
    -webkit-animation: dust 0.7s steps(15) infinite;
    -moz-animation: dust 0.7s steps(15) infinite;
    -ms-animation: dust 0.7s steps(15) infinite;
    animation: dust 0.7s steps(15) infinite;
}

@-webkit-keyframes dust {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

@-moz-keyframes dust {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

@-ms-keyframes dust {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

@keyframes dust {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

.car-wrap .dust.fast {
    -webkit-animation: dustFast 0.4s steps(15) infinite;
    -moz-animation: dustFast 0.4s steps(15) infinite;
    -ms-animation: dustFast 0.4s steps(15) infinite;
    animation: dustFast 0.4s steps(15) infinite;
}

@-webkit-keyframes dustFast {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

@-moz-keyframes dustFast {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

@-ms-keyframes dustFast {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

@keyframes dustFast {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -900px 0px;
    }
}

.car-wrap #flames {
    left: -20px;
    bottom: -34px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 60px;
    overflow: hidden;
    -webkit-animation: flames 0.3s steps(20) infinite;
    -moz-animation: flames 0.3s steps(20) infinite;
    -ms-animation: flames 0.3s steps(20) infinite;
    animation: flames 0.3s steps(20) infinite;
    background: url("images/3_css_flames.png") left top no-repeat;
    background-position: 0px 0px;
    display: none;
}

@-webkit-keyframes flames {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -1200px 0px;
    }
}

@-moz-keyframes flames {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -1200px 0px;
    }
}

@-ms-keyframes flames {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -1200px 0px;
    }
}

@keyframes flames {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -1200px 0px;
    }
}

.speedometer {
    width: 107px;
    height: 51px;
    position: absolute;
    z-index: 9998;
    left: 0;
    right: 0;
    top: 325px;
    margin: auto;
    background: url("images/4_css_speedometer.png") no-repeat;
    background-size: 107px auto;
}

.speedometer .needle {
    position: absolute;
    left: 3px;
    right: 0;
    bottom: -63px;
    margin: auto;
    -webkit-animation: needle 1.2s infinite;
    -moz-animation: needle 1.2s infinite;
    -ms-animation: needle 1.2s infinite;
    animation: needle 1.2s infinite;
}

@-webkit-keyframes needle {
    0% {
        -webkit-transform: rotate(0deg);
    }
    35% {
        -webkit-transform: rotate(5deg);
    }
    70% {
        -webkit-transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes needle {
    0% {
        -moz-transform: rotate(0deg);
    }
    35% {
        -moz-transform: rotate(5deg);
    }
    70% {
        -moz-transform: rotate(-10deg);
    }
    100% {
        -moz-transform: rotate(0deg);
    }
}

@-ms-keyframes needle {
    0% {
        -ms-transform: rotate(0deg);
    }
    35% {
        -ms-transform: rotate(5deg);
    }
    70% {
        -ms-transform: rotate(-10deg);
    }
    100% {
        -ms-transform: rotate(0deg);
    }
}

@keyframes needle {
    0% {
        transform: rotate(0deg);
    }
    35% {
        transform: rotate(5deg);
    }
    70% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.speedometer .needle img {
    width: 102px;
    height: auto;
}

.speedometer .needle img.slow {
    -webkit-animation: needleRotate 2.5s;
    -moz-animation: needleRotate 2.5s;
    -ms-animation: needleRotate 2.5s;
    animation: needleRotate 2.5s;
}

@-webkit-keyframes needleRotate {
    0% {
        -webkit-transform: rotate(-60deg);
    }
    30% {
        -webkit-transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes needleRotate {
    0% {
        -moz-transform: rotate(-60deg);
    }
    30% {
        -moz-transform: rotate(20deg);
    }
    100% {
        -moz-transform: rotate(0deg);
    }
}

@-ms-keyframes needleRotate {
    0% {
        -ms-transform: rotate(-60deg);
    }
    30% {
        -ms-transform: rotate(20deg);
    }
    100% {
        -ms-transform: rotate(0deg);
    }
}

@keyframes needleRotate {
    0% {
        transform: rotate(-60deg);
    }
    30% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.speedometer .needle img.fast {
    -webkit-animation: needleRotateFast 2s;
    -moz-animation: needleRotateFast 2s;
    -ms-animation: needleRotateFast 2s;
    animation: needleRotateFast 2s;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}

@-webkit-keyframes needleRotateFast {
    0% {
        -webkit-transform: rotate(-20deg);
    }
    100% {
        -webkit-transform: rotate(20deg);
    }
}

@-moz-keyframes needleRotateFast {
    0% {
        -moz-transform: rotate(-20deg);
    }
    100% {
        -moz-transform: rotate(20deg);
    }
}

@-ms-keyframes needleRotateFast {
    0% {
        -ms-transform: rotate(-20deg);
    }
    100% {
        -ms-transform: rotate(20deg);
    }
}

@keyframes needleRotateFast {
    0% {
        transform: rotate(-20deg);
    }
    100% {
        transform: rotate(20deg);
    }
}

.speedometer-preloader {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    top: 390px;
    margin: 5px auto 0;
    padding: 0;
    z-index: 9998;
}

#container.show-subscribe-button .speedometer-preloader,
#container.show-default-state .speedometer-preloader {
    display: block;
}


/*#boost-wrap {
position: absolute;
z-index: 99;
left: 8px;
right: 0;
bottom: 68px;
margin: auto;
width: 245px;
-webkit-animation: boostLoad 2s ease;
-moz-animation: boostLoad 2s ease;
-ms-animation: boostLoad 2s ease;
animation: boostLoad 2s ease;
}

@-webkit-keyframes boostLoad {
0%, 75% {
opacity: 0;
}
100% {
opacity: 1;
}
}

@-moz-keyframes boostLoad {
0%, 75% {
opacity: 0;
}
100% {
opacity: 1;
}
}

@-ms-keyframes boostLoad {
0%, 75% {
opacity: 0;
}
100% {
opacity: 1;
}
}

@keyframes boostLoad {
0%, 75% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#boost-wrap img {
width: 235px;
height: 109px;
-webkit-animation: boostEffect 0.5s infinite;
-moz-animation: boostEffect 0.5s infinite;
-ms-animation: boostEffect 0.5s infinite;
animation: boostEffect 0.5s infinite;
}

@-webkit-keyframes boostEffect {
0% {
-webkit-transform: scale(0.95);
opacity: 0;
}
50% {
-webkit-transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0.95);
opacity: 0;
}
}

@-moz-keyframes boostEffect {
0% {
-webkit-transform: scale(0.95);
opacity: 0;
}
50% {
-webkit-transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0.95);
opacity: 0;
}
}

@-ms-keyframes boostEffect {
0% {
-webkit-transform: scale(0.95);
opacity: 0;
}
50% {
-webkit-transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0.95);
opacity: 0;
}
}

@keyframes boostEffect {
0% {
-webkit-transform: scale(0.95);
opacity: 0;
}
50% {
-webkit-transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0.95);
opacity: 0;
}
}*/

.title {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    top: 30px;
    margin: auto;
    width: 260px;
    height: auto;
}

.price {
    width: 100%;
    top: 10px;
    text-align: center;
    font-size: 11px;
    color: #127e7c;
    position: absolute;
}

#default-state1 .subscribe {
    position: absolute;
    top: 370px;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 23px;
}

.btn {
    width: 247px;
    height: 65px;
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    letter-spacing: -0.5px;
    overflow: hidden;
    background: url("images/5_css_button.png") no-repeat;
    background-size: 247px auto;
    margin: auto;
    -webkit-animation: button 0.8s ease-in-out infinite;
    -moz-animation: button 0.8s ease-in-out infinite;
    -ms-animation: button 0.8s ease-in-out infinite;
    animation: button 0.8s ease-in-out infinite;
}

.btn span {
    /*display: inline-block;*/
    display: block;
    padding: 8px 10px 10px;
}

.btn span b {
    display: block;
    font-size: 14px;
    margin-top: -2px;
    font-weight: bold;
}

@-webkit-keyframes button {
    0% {
        -webkit-transform: scale(0.9, 0.9);
    }
    50% {
        -webkit-transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
    }
}

@-moz-keyframes button {
    0% {
        -moz-transform: scale(0.9, 0.9);
    }
    50% {
        -moz-transform: scale(1, 1);
    }
    100% {
        -moz-transform: scale(0.9, 0.9);
    }
}

@-ms-keyframes button {
    0% {
        -ms-transform: scale(0.9, 0.9);
    }
    50% {
        -ms-transform: scale(1, 1);
    }
    100% {
        -ms-transform: scale(0.9, 0.9);
    }
}

@keyframes button {
    0% {
        transform: scale(0.9, 0.9);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(0.9, 0.9);
    }
}

#click-here {
    display: none;
    text-align: center;
    font-size: 11px;
    color: #f7f3f0;
    padding-top: 30px;
}

#click-here a {
    color:#f7f3f0;
    text-decoration: underline;
}

#click-here .logo {
    width: 119px;
    height: auto;
}

#click-here .tagline {
    display: block;
}

.footer-disclaimer {
    max-width: 780px;
    text-align: justify;
    font-size: 11px;
    color: #f7f3f0;
    padding: 10px;
    margin: auto;
}

.footer-disclaimer a {
    /*color: #b28b64;*/
    color: #f7f3f0;
    text-decoration: underline;
    display: inline;
    padding-top: 10px;
}

#double-confirmation.popUp {
    -webkit-animation: popUp 1.5s;
    -moz-animation: popUp 1.5s;
    -ms-animation: popUp 1.5s;
    animation: popUp 1.5s;
}

@-webkit-keyframes popUp {
    0%,
    90% {
        opacity: 0
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes popUp {
    0%,
    90% {
        opacity: 0
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes popUp {
    0%,
    90% {
        opacity: 0
    }
    100% {
        opacity: 1;
    }
}

@keyframes popUp {
    0%,
    90% {
        opacity: 0
    }
    100% {
        opacity: 1;
    }
}

#subscription-polling,
#number-entry,
#pin-entry,
#mo,
#congrats,
#double-confirmation,
#operator-selection {
    position: absolute;
    width: 290px;
    left: 50%;
    margin-left: -155px;
    bottom: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.1);
    display: block;
    padding: 10px;
    z-index: 99999;
    text-align: center;
    font-size: 13px;
    color: #fff;
    border: none;
    font-family: sans-serif;
    background: rgba(0, 78, 75, 0.95);
}

#container.ar #number-entry,
#container.ar #pin-entry,
#container.ar #mo,
#container.ar #congrats,
#container.ar #double-confirmation,
#container.ar #operator-selection {
    font-family: Tahoma, sans-serif !important;
}

#number-entry label,
#pin-entry label,
#pin-entry .subscription-info,
#double-confirmation .subscription-info {
    margin: 0;
    padding: 0;
    display: block;
    line-height: 16px;
}

#pin-entry .subscription-info {
    padding-top: 5px;
}

#pin-entry h3 {
    margin: 5px 0 0;
    padding: 0;
    color: #ecb113;
}

#double-confirmation {
    width: 290px;
    height: 156px;
    padding: 102px 10px 10px;
    background: url("images/6_css_double-confirmation-bg.png") no-repeat;
    top: 205px;
    box-shadow: none;
    bottom: auto;
}

#double-confirmation h3 {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 2px 0;
    padding: 0;
    letter-spacing: -0.5px;
}

#double-confirmation span.double-confi-des {
    font-size: 11px;
    opacity: 0.6;
    line-height: 15px;
    margin-bottom: 12px;
    display: block;
}

#double-confirmation .btn {
    margin-top: 5px;
}

#double-confirmation .trophy {
    position: absolute;
    left: 115px;
    top: -10px;
    width: 69px;
    height: auto;
}

#double-confirmation .subscription-info {
    padding-bottom: 5px;
}

#double-confirmation-no {
    font-size: 16px;
    display: block;
    text-decoration: underline;
    margin-top: -2px;
    font-weight: bold;
    opacity: 0.7;
}

#number-entry input,
#pin-entry input {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #dfdfdf;
    margin: 7px 0;
    padding: 5px 7px 7px;
    font-family: sans-serif;
    font-size: 18px;
    border: 1px solid #cfcbca;
    /*height: 20px;*/
    width: 235px;
    color: #454545;
    direction: ltr;
}

#pin-entry input {
    text-align: center;
}

#invalid-number-error,
#already-subscribed-error,
#invalid-pin-error {
    margin: 0;
    color: red;
    font-size: 12px;
}

#mo h3 {
    margin: 4px 0;
    padding: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
}

#container.sg #mo h3 {
    margin: 0 0 5px;
}

#mo div {
    display: inline-block;
    font-size: 24px;
    color: #ff932a;
    font-weight: bold;
}

#congrats h3 {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size: 21px;
    display: block;
    color: #ff932a;
}

#congrats h6 {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    padding: 5px 0 0 0;
    color: #fff;
}

#container.show-double-confirmation #click-here,
#container.show-subscribe-button #click-here,
#container.show-default-state #click-here {
    display: block;
}

#container.show-subscribe-button .pointer,
#container.show-default-state .pointer {
    display: block;
}

#container.show-double-confirmation #default-state {
    display: block !important;
}


/*#container.show-double-confirmation .speedometer,
#container.show-pin-entry .speedometer,
#container.show-mo .speedometer,
#container.show-congrats .speedometer {
display: none;
}*/

#mraid-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    z-index: 100;
    color: white;
    background-image: url('images/7_css_close.png');
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    text-align: center;
}

#top-wrap .hotspot {
    width: 100%;
    height: 280px;
    z-index: 999;
    position: absolute;
    top: 140px;
    display: none;
}

#container.show-default-state .hotspot {
    display: block;
}

#iframe-container {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}

#iframe-container iframe {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: 0px;
}


/*---------------- ADDITIONAL CSS FOR UAE RTB PAGE / OMAN MRAID ----------------*/

#container.ae #default-state1 .btn span,
#container.om #default-state1 .btn span {
    margin-top: 6px;
    font-size: 25px;
}

#container.uk #double-confirmation.popUp,
#container.ae #double-confirmation.popUp,
#container.om #double-confirmation.popUp {
    -webkit-animation: popUp 0.3s;
    -moz-animation: popUp 0.3s;
    -ms-animation: popUp 0.3s;
    animation: popUp 0.3s;
}

#container.uk .car-wrap,
#container.ae .car-wrap,
#container.om .car-wrap {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

#container.uk #double-confirmation,
#container.ae #double-confirmation,
#container.om #double-confirmation {
    height: 244px;
    padding: 14px 10px 10px;
    background: url("images/8_css_double-confirmation-bg-ae.png") no-repeat;
    font-size: 12px;
}

#container.uk #double-confirmation .btn,
#container.ae #double-confirmation .btn,
#container.om #double-confirmation .btn {
    margin-top: 90px;
    z-index: 99;
    position: relative;
}

#container.ar #double-confirmation .btn {
    margin-top: 85px;
    z-index: 99;
    position: relative;
}

#container.uk #double-confirmation .trophy,
#container.ae #double-confirmation .trophy,
#container.om #double-confirmation .trophy {
    position: absolute;
    left: 125px;
    top: 103px;
    width: 59px;
    height: auto;
    z-index: 9;
}

#container.ae .btn span,
#container.om .btn span {
    font-size: 37px;
    margin-top: 1px;
}

#container.om.ar .btn span {
    font-size: 30px;
    margin-top: 1px;
}

#container.uk #double-confirmation .hotspot,
#container.ae #double-confirmation .hotspot,
#container.om #double-confirmation .hotspot {
    width: 290px;
    height: 124px;
    top: 100px;
    position: absolute;
    z-index: 999;
}

#container.ae .footer-disclaimer,
#container.om .footer-disclaimer {
    margin: 0 auto 0;
}

#container.uk .footer-disclaimer {
    margin: 0 auto 0;
}


/*---------------- ADDITIONAL CSS FOR OMAN ----------------*/

#container.ar .price {
    direction: rtl;
}

#container.ar #double-confirmation h3 {
    font-size: 26px;
}

#container.ar .btn,
#container.ar .price,
#container.ar #click-here,
#container.ar .footer-disclaimer,
#container.ar #number-entry,
#container.ar #pin-entry,
#container.ar #mo,
#container.ar #congrats,
#container.ar #double-confirmation,
#container.ar #operator-selection {
    direction: rtl;
}

#container.show-subscription-polling .speedometer,
#container.show-number-entry .speedometer,
#container.show-pin-entry .speedometer,
#container.show-mo .speedometer,
#container.show-congrats .speedometer {
    display: none;
}


/*.invalid-number-error input,
.invalid-pin-error input {
-webkit-animation: error 1s infinite;
-moz-animation: error 1s infinite;
-ms-animation: error 1s infinite;
animation: error 1s infinite;
}

@-webkit-keyframes error {
0% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
50% {
border: 1px solid #be1e2d;
background: #f2b3b9;
}
100% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
}

@-moz-keyframes error {
0% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
50% {
border: 1px solid #be1e2d;
background: #f2b3b9;
}
100% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
}

@-ms-keyframes error {
0% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
50% {
border: 1px solid #be1e2d;
background: #f2b3b9;
}
100% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
}

@keyframes error {
0% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
50% {
border: 1px solid #be1e2d;
background: #f2b3b9;
}
100% {
border: 1px solid #cfcbca;
background: #fff7cf;
}
}*/


/*---------------- ADDITIONAL CSS FOR UK FREE TRIAL PAGE ----------------*/

#container.uk-freeTrial .btn span b {
    margin-top: -1px;
    font-size: 12px;
}


/*---------------- ADDITIONAL CSS FOR ITALY PAGE ----------------*/

#container.it #top-wrap {
    height: 310px;
}

#container.it .price {
    display: none;
}

#container.it .title {
    width: 250px;
    top: 10px;
}

#container.it #iframe-container {
    position: relative;
    display: block;
    background: none;
    margin-top: -40px;
    margin-bottom: -20px;
    height: auto;
}

#container.it .terms {
    display: block;
    padding: 0;
    margin-top: 5px;
}

#container.it #iframe-container #iframe {
    min-height: 250px;
    height: auto;
    padding: 5px 0 0;
    max-width: 600px;
    margin: auto;
}


/*---------------- GOOGLE RTB ANIMATION STOP ----------------*/

body.stop-animations *,
body.stop-animations *:before,
body.stop-animations *:after {
    /*CSS transitions*/
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

.hotspot2 {
    left: 0;
    right: 0;
    top: 0;
    width: 250px;
    z-index: 4;
    height: 65px;
    margin: 0 auto;
    display: block;
    position: absolute;
}


/*---------------- UK ADDITIONAL CSS ----------------*/

#container.uk #click-here {
    padding-top: 10px;
}

#container.uk .price {
    top: 5px;
}

#container.uk .title {
    top: 20px;
}

#container.uk #top-wrap {
    height: 350px;
}

#container.uk #default-state1 .subscribe {
    top: 310px;
}

#container.uk .speedometer {
    top: 265px;
}

#container.uk #double-confirmation {
    top: 160px;
}

#container.uk.show-double-confirmation .note {
    margin-top: 85px;
}

.note {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 0 10px;
    margin-top: 25px;
    letter-spacing: -0.3px;
    font-weight: bold;
}

#container.show-number-entry .note,
#container.show-pin-entry .note,
#container.show-mo .note,
#container.show-congrats .note {
    display: none;
}


/*---------------- UK ADDITIONAL CSS for mraid ----------------*/

#container.uk-mraid.show-double-confirmation .note,
#container.uk-mraid.show-pin-entry .note,
#container.uk-mraid.show-mo .note,
#container.uk-mraid.show-congrats .note {
    display: none;
}

#container.uk-mraid.show-number-entry .note {
    display: block;
}

#container.uk-mraid.show-number-entry .pin-price {
    display: none;
}

#container.uk-mraid.show-number-entry .note,
#container.uk-mraid.show-pin-entry .note {
    margin: 8px 0 0;
}

.pin-price {
    display: none;
}

#container.uk-mraid.show-pin-entry .pin-price {
    display: block;
}

#container.uk-mraid .hotspot2 {
    width: 245px;
    height: 60px;
}

#container.uk-mraid #number-entry .btn,
#container.uk-mraid #pin-entry .btn {
    font-size: 23px;
}

#container.uk-mraid #pin-entry .btn span {
    padding: 16px 10px 10px;
}

#container.uk-mraid.show-double-confirmation .footer-disclaimer {
    padding-top: 50px;
}

#container.uk-mraid #double-confirmation .btn,
#container.uk-mraid #pin-entry .btn {
    background: url("images/9_css_button-uk.png") no-repeat;
    background-size: 247px auto;
    color: rgba(52, 27, 13, 0.8);
}


/*---------------- UK ADDITIONAL CSS for GOOGLE RTB ----------------*/

#container.uk-rtb.show-double-confirmation .note,
#container.uk-rtb.show-pin-entry .note,
#container.uk-rtb.show-mo .note,
#container.uk-rtb.show-congrats .note {
    display: none;
}

#container.uk-rtb.show-number-entry .note {
    display: block;
}

#container.uk-rtb.show-number-entry .pin-price {
    display: none;
}

#container.uk-rtb.show-number-entry .note,
#container.uk-rtb.show-pin-entry .note {
    margin: 8px 0 0;
}

.pin-price {
    display: none;
}

#container.uk-rtb.show-pin-entry .pin-price {
    display: block;
}

#container.uk-rtb .hotspot2 {
    width: 245px;
    height: 60px;
}

#container.uk-rtb #number-entry .btn,
#container.uk-rtb #pin-entry .btn {
    font-size: 23px;
}

#container.uk-rtb #pin-entry .btn span {
    padding: 16px 10px 10px;
}

#container.uk-rtb.show-double-confirmation .footer-disclaimer {
    padding-top: 50px;
}

#container.uk-rtb #double-confirmation .btn,
#container.uk-rtb #pin-entry .btn {
    background: url("images/10_css_button-uk.png") no-repeat;
    background-size: 247px auto;
    color: rgba(52, 27, 13, 0.8);
}

#container.uk-rtb #double-confirmation span.double-confi-des,
#container.uk-mraid #double-confirmation span.double-confi-des {
    font-size: 12px;
    opacity: 1;
    margin-bottom: 5px;
}

#container.uk-rtb #double-confirmation,
#container.uk-mraid #double-confirmation {
    background: url("images/11_css_double-confirmation-bg-uk.png") no-repeat;
}

#container.uk-rtb #double-confirmation .trophy,
#container.uk-mraid #double-confirmation .trophy {
    top: 48px;
}

#container.uk-rtb #double-confirmation .btn,
#container.uk-mraid #double-confirmation .btn {
    margin-top: 0;
}

#container.uk-rtb #double-confirmation h3,
#container.uk-mraid #double-confirmation h3 {
    margin-bottom: 94px;
    margin-top: -2px;
}

#container.uk-rtb #default-state1 .btn span,
#container.uk-mraid #default-state1 .btn span {
    text-transform: uppercase;
    padding: 10px 10px 8px;
}

#container.uk-rtb #default-state1 .btn span b,
#container.uk-mraid #default-state1 .btn span b {
    text-transform: none;
}

#container.uk-rtb #default-state1 .btn,
#container.uk-mraid #default-state1 .btn {
    font-size: 21px;
}

#container.uk-rtb .price,
#container.uk-mraid .price {
    color: #341b0d;
}

#container.uk-rtb .btn,
#container.uk .btn,
#container.uk-mraid .btn {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}


/*---------------- QATAR HTML5 ----------------*/

#container.qa-html5 .title {
    width: 240px;
}

#container.qa-html5 #language {
    display: block;
    padding: 0;
}

#container.qa-html5 #language img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

#container.qa-html5 #default-state1 .btn span {
    padding-top: 15px;
    font-size: 25px;
}

#container.qa-html5 .doubl-des {
    font-size: 11px;
    display: block;
}

#container.qa-html5 #number-entry label,
#container.qa-html5 #pin-entry label,
#container.qa-html5 #pin-entry .subscription-info,
#container.qa-html5 #double-confirmation .subscription-info {
    line-height: 15px;
}

#container.ar.qa-html5 #number-entry label,
#container.ar.qa-html5 #pin-entry label,
#container.ar.qa-html5 #pin-entry .subscription-info,
#container.ar.qa-html5 #double-confirmation .subscription-info {
    line-height: normal;
}

#container.qa-html5 #pin-entry .subscription-info {
    padding-top: 0;
}

#container.qa-html5 #double-confirmation {
    top: 185px;
}

#container.qa-html5.show-double-confirmation #click-here {
    display: none;
}

#container.qa-html5.show-double-confirmation .footer-disclaimer {
    margin-top: 45px;
}

#container.qa-html5 #double-confirmation.popUp {
    -webkit-animation: popUp 0.3s;
    -moz-animation: popUp 0.3s;
    -ms-animation: popUp 0.3s;
    animation: popUp 0.3s;
}

#container.ar.qa-html5 #double-confirmation .btn {
    margin-top: 5px !important;
}

#container.ar.qa-html5 #double-confirmation h3 {
    margin: -10px 0 5px;
    height: 30px;
}


/*#container.ar.qa-html5 {
font-family: Arial !important;
}

#container.ar.qa-html5 #number-entry,
#container.ar.qa-html5 #pin-entry,
#container.ar.qa-html5 #mo,
#container.ar.qa-html5 #congrats,
#container.ar.qa-html5 #double-confirmation,
#container.ar.qa-html5 #operator-selection {
font-family: Arial !important;
}*/


/* $$$$$$$$$$$$ DU CHECKBOX FLOW $$$$$$$$$$$$ */


/* Checkbox/Button */

#btn-cbox {
    position: relative;
    display: block;
    width: 280px;
    margin: 0 auto;
    background: url("images/12_css_btns_du.png") center center no-repeat;
    background-position: center -5px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    padding: 11px 0;
    -webkit-animation: dupulse 1.1s 25;
    -moz-animation: dupulse 1.1s 25;
    -ms-animation: dupulse 1.1s 25;
    animation: dupulse 1.1s 25;
}

#btn-cbox span {
    display: block;
    margin-top: -2px;
    padding-left: 85px;
    outline: none;
}

#btn-cbox span#cbox-accept {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

#btn-cbox span#cbox-desc {
    font-size: 12px;
    color: #FAB184;
}

#btn-cbox.disable span#cbox-accept,
#btn-cbox.disable span#cbox-desc {
    color: #6CBD0B;
}

#btn-cbox.disable {
    background: url("images/13_css_btns_du.png") center center no-repeat;
    background-position: center -60px;
    opacity: 0.9;
    pointer-events: none;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}


/* Confirmation Button */

.btn-confirm {
    position: relative;
    display: block;
    width: 280px;
    margin: 0 auto;
    background: url("images/14_css_btns_du.png") center center no-repeat;
    background-position: center -115px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 15px 0;
    opacity: 0.35;
    pointer-events: none;
}

.btn-confirm span {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
}

.btn-confirm.active {
    opacity: 1;
    pointer-events: auto;
    animation: dupulse 1.1s 25;
    -webkit-animation: dupulse 1.1s 25;
    -moz-animation: dupulse 1.1s 25;
    -ms-animation: dupulse 1.1s 25;
}


/* Hint popup */

#wrongspot {
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    width: 290px;
    height: 50px;
    padding: 0;
    z-index: 999 !important;
}

#warning {
    display: none;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: -55px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px;
    color: #ccc;
    font-size: 11px;
    border-radius: 12px;
    text-align: center;
    max-width: 290px;
}

@-webkit-keyframes dupulse {
    0% {
        -webkit-transform: scale(0.98);
    }
    50% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.98);
    }
}

@-moz-keyframes dupulse {
    0% {
        -moz-transform: scale(0.98);
    }
    50% {
        -moz-transform: scale(1);
    }
    100% {
        -moz-transform: scale(0.98);
    }
}

@-ms-keyframes dupulse {
    0% {
        -ms-transform: scale(0.98);
    }
    50% {
        -ms-transform: scale(1);
    }
    100% {
        -ms-transform: scale(0.98);
    }
}

@keyframes dupulse {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.98);
    }
}

#container.qa-html5 .footer-disclaimer p {
    padding: 0 0 10px;
    margin: 0;
}

#container.qa-html5 .footer-disclaimer a {
    display: block;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.preloader1 {
    width: 40px;
    height: 40px;
    display: block;
    padding: 0px;
    text-align: left;
    -webkit-animation: preloader1 1.4s linear infinite;
    animation: preloader1 1.4s linear infinite;
    margin: 10px auto 5px;
}

.preloader1 span {
    position: absolute;
    vertical-align: top;
    border-radius: 100%;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 16px;
    transform-origin: center 20px;
    -webkit-transform-origin: center 20px;
    background: #FBCC01;
}

.preloader1 span:nth-child(2) {
    transform: rotate(36deg);
    -webkit-transform: rotate(36deg);
    opacity: 0.1;
}

.preloader1 span:nth-child(3) {
    transform: rotate(72deg);
    -webkit-transform: rotate(72deg);
    opacity: 0.2;
}

.preloader1 span:nth-child(4) {
    transform: rotate(108deg);
    -webkit-transform: rotate(108deg);
    opacity: 0.3;
}

.preloader1 span:nth-child(5) {
    transform: rotate(144deg);
    -webkit-transform: rotate(144deg);
    opacity: 0.4;
}

.preloader1 span:nth-child(6) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    opacity: 0.5;
}

.preloader1 span:nth-child(7) {
    transform: rotate(216deg);
    -webkit-transform: rotate(216deg);
    opacity: 0.6;
}

.preloader1 span:nth-child(8) {
    transform: rotate(252deg);
    -webkit-transform: rotate(252deg);
    opacity: 0.7;
}

.preloader1 span:nth-child(9) {
    transform: rotate(288deg);
    -webkit-transform: rotate(288deg);
    opacity: 0.8;
}

.preloader1 span:nth-child(10) {
    transform: rotate(324deg);
    -webkit-transform: rotate(324deg);
    opacity: 0.9;
}

@keyframes preloader1 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes preloader1 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}


/* FRANCE CSS */
body.fr {
    height: 680px;
}

.fr .btn{
    width: 247px;
    height: 65px;
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    letter-spacing: -0.5px;
    overflow: hidden;
    background: url("images/15_css_button-fr.png") no-repeat;
    background-size: 247px auto;
    margin: auto;
    -webkit-animation: button 0.8s ease-in-out infinite;
    -moz-animation: button 0.8s ease-in-out infinite;
    -ms-animation: button 0.8s ease-in-out infinite;
    animation: button 0.8s ease-in-out infinite;
}

.fr #default-state1 .subscribe{
    top: 361px;
    line-height: 37px;
}

.fr .price{
    left: 0;
    right: 0;
    top: 426px;
    text-align: center;
    font-size: 12px;
    color: #e4814f;
    position: absolute;
    margin: 0 auto;
    z-index: 99;
}

body.fr .footer-disclaimer {
    max-width: 780px;
    text-align: justify;
    font-size: 11px;
    color: #79614d;
    padding: 10px;
    margin: 0 auto;
    height: 172px;
    position: absolute;
    top: 447px;
    left: 0;
    right: 0;
}

body.fr .partners{
    top: 232px;
}

.footer-disclaimer a{
    display: inline-block;
    margin: 0 12px;
}

.moxigames{
    position: absolute;
    display: block;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 16px;
    width: 134px;
    height: 26px;
    background-size: 134px 26px;
    background: url("images/16_css_moxigames.png") no-repeat;
}

.fr .title{
    top:47px;
}

.tc{
    margin:0 5px;
    text-align: center;
}

.partners{
    position: absolute;
    display: block;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 659px;
    width: 223px;
    height: 80px;
    background-size: 223px 80px;
    background: url("images/17_css_partners.png") no-repeat;
}

.compatible{
    position: absolute;
    display: block;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 322px;
    width: 214px;
    height: 30px;
    background-size: 214px 30px;
    background-repeat: no-repeat;
}

#sub-method-detection-request-preloader {
  width: 100px;
  height: 100px;
  background-color: rgba(0,0,0,0.7);
  border-radius: 5px;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}#container {
    font-family: Arial, sans-serif;
}

#container.ar #subscription-polling {
    direction: rtl;
}

#container.ar .preloader1 {
    text-align: right;
}

#container.ar .preloader1 span {
    margin-left: auto;
    margin-right: 16px;
}

.price-point {
    display: block;
    text-align: center;
    color: #efefef;
    font-size: 12px;
    margin: 5px 0;
}

#default-state1 .price-point {
    margin: 25px 0 5px;
}

#double-confirmation .price-point {
    margin: 10px 0 0;
}

#click-here {
    padding-top: 10px;
}

#language {
    display: none !important;
}

#container.show-subscribe-button #language,
#container.show-default-state #language {
    display: block !important;
}

#click-here {
    display: block !important;
}

#number-entry .btn,
#pin-entry .btn {
    font-size: 25px;
}

#number-entry .btn span,
#pin-entry .btn span {
    padding-top: 15px;
}

#double-confirmation {
    padding: 92px 10px 26px;
}

#double-confirmation-no {
    font-weight: normal;
    font-size: 14px;
    margin-top: 5px;
}

#container.show-double-confirmation #default-state1 {
    display: none !important;
}

#container.show-double-confirmation #click-here {
    margin-top: 50px;
}

#container.show-double-confirmation .footer-disclaimer {
    margin-top: 5px !important;
}

#mraid-close {
    right: 0;
    top: 0;
}

#number-entry .btn {
    background: url("images/18_css_button.png") no-repeat !important;
    background-size: 247px auto !important;
}