* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 15px
}

html,
body {
    width: 100%;
    height: 100%
}

body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    background-color: #454545;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

@-webkit-keyframes show {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes show {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes hidden {
    100% {
        opacity: 0
    }
}

@keyframes hidden {
    100% {
        opacity: 0
    }
}

.wrapper {
    position: absolute;
    margin-bottom: 100px;
    width: 95%;
    max-width: 350px;
    background: #f2f2f2;
    border-radius: 4px;
    z-index: 100;
    -webkit-animation: show 1.2s steps(1, end) 1;
    animation: show 1.2s steps(1, end) 1
}

.top_wrapper {
    padding: 20px 17px 25px;
    width: 100%;
    text-align: left
}

.top_wrapper h1 {
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight: 700
}

.top_wrapper p {
    margin-top: 12px
}

.button {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: right;
    padding: 0 20px 18px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.button p {
    color: #12b7b1
}

.button p:hover {
    color: #0c9893;
    cursor: pointer
}

.player {
    width: 100%;
    max-width: 850px;
    min-height: 60vh;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    background: #000;
    margin-top:30px;
}

.top_icons {
    position: absolute;
    top: 10px;
    left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.top_icons img {
    width: 35px;
    cursor: pointer
}

.top_icons img:first-child {
    margin-right: 14px
}

.player_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%
}

.player_content img {
    padding-top: 50px;
    position: absolute
}

.player_content .loading {
    width: 35px;
    -webkit-animation: hidden 0.9s steps(1, end) forwards;
    animation: hidden 0.9s steps(1, end) forwards
}

.player_content .play {
    width: 70px;
    opacity: 0;
    -webkit-animation: show 0.9s steps(1, end) forwards;
    animation: show 0.9s steps(1, end) forwards
}

.pause_play {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.pause_play img:first-child {
    position: absolute;
    opacity: 0;
    -webkit-animation: show 0.9s steps(1, end) forwards;
    animation: show 0.9s steps(1, end) forwards
}

.pause_play img:last-child {
    -webkit-animation: hidden 0.9s steps(1, end) forwards;
    animation: hidden 0.9s steps(1, end) forwards
}

.player_navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.player_navigation_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.player_navigation_item img {
    height: 20px;
    cursor: pointer
}

.player_navigation_item p {
    font-size: .8rem;
    margin-left: 12px;
    color: #fff
}

.player_navigation_item:last-child img {
    margin-right: 15px
}

.player_navigation_item:last-child img:last-child {
    margin-right: 0
}

.progress {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, .4);
    margin: 0 12px;
    position: relative;
    cursor: pointer
}

.progress_load {
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, .4);
    -webkit-animation: progress_load 20s linear forwards;
    animation: progress_load 20s linear forwards
}

.progress_line {
    width: 0%;
    height: 100%;
    background: #4080ff;
    -webkit-animation: progress_line 1s linear forwards;
    animation: progress_line 1s linear forwards
}

@-webkit-keyframes progress_load {
    0% {
        width: 0
    }

    100% {
        width: 50%
    }
}

@keyframes progress_load {
    0% {
        width: 0
    }

    100% {
        width: 50%
    }
}

@-webkit-keyframes progress_line {
    0% {
        width: 0
    }

    100% {
        width: 10px
    }
}

@keyframes progress_line {
    0% {
        width: 0
    }

    100% {
        width: 10px
    }
}
.wrapper {
    margin-top : 50px
}
@media screen and (max-width:992px) {
    .player {
        min-height: 75vh
    }
    .wrapper {
     margin-top : 80px;
    }
}

@media screen and (max-width:768px) {
    .player {
        min-height: 42vh
    }
    .wrapper {
        margin-top : 80px;
    }
}

@media screen and (max-width:768px) and (orientation:landscape) {
    .player {
        min-height: 80vh
    }
    .wrapper {
        margin-top : 50px;
    }
}

@media screen and (max-width:440px) {
    .wrapper {
        margin-top : 40px;
    }
    .top_icons {
        top: 10px;
        left: 15px
    }

    .top_icons img {
        width: 28px
    }

    .top_icons img:first-child {
        margin-right: 12px
    }

    .player_content img {
        padding-top: 25px
    }

    .player_content .loading {
        width: 30px
    }

    .player_content .play {
        width: 60px
    }

    .player_navigation_item:last-child img {
        margin-right: 10px
    }

    .player_navigation_item:last-child img:last-child {
        margin-right: 0
    }

    .player_navigation_item img {
        height: 18px
    }
}

@media screen and (max-width:320px),
screen and (max-width:480px) and (orientation:landscape) {
    html {
        font-size: 14px
    }

    .top_icons {
        top: 10px;
        left: 15px
    }

    .top_icons img {
        width: 28px
    }

    .top_icons img:first-child {
        margin-right: 12px
    }

    .player_content img {
        padding-top: 20px
    }
}

@media screen and (max-width:840px) and (max-height:440px) and (orientation:landscape) {
    body {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .player {
        width: 100%;
        height: 100%
    }

    .player_content img {
        padding-top: 0
    }
}

@media screen and (max-width:320px),
screen and (max-width:480px) and (orientation:landscape) {
    .wrapper {
        max-width: 320px
    }

    .top_wrapper {
        padding: 17px
    }

    .top_wrapper h1 {
        font-size: 1.3rem
    }
}

@media screen and (max-width:840px) and (max-height:440px) and (orientation:landscape) {
    .wrapper {
        margin-bottom: 0;
        margin-top: 5px
    }

    .top_wrapper {
        padding: 13px 15px
    }

    .top_wrapper h1 {
        font-size: 1.25rem
    }

    .top_wrapper p {
        margin-top: 8px
    }
}

.footer__img {
    width: 52px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
  }
.footer_container {
    margin-top: 50px;
}
.mo_info > p {
    padding-top:10px;
    color: #787373;
}

@media only screen and (max-width: 767px){
    .prize-title{ font-size: 28px; }

    .cta{
        width: 66%;
        margin: 5px auto 10px;
    }

    #msisdn-input, #pincode-input, #telInput { width: 90%; }

    #cta2{ margin: 5px auto; }

    .main-button, .submit-button, #wapContinue, #wapConfirm, .correctBT, .wrongBT { width: 90%; }


    .mobile #header {
        background: #000;
        color: #fff;
        border-radius: 10px 10px 0 0;
        line-height: 20px;
        font-size: 100%;
        padding: 2px 10px;
    }
    .mobile #header span { padding: 0 10px; }
    .mobile #header img {
        width: 20px;
        vertical-align: bottom;
    }
    .mobile #header .right { float: right; }
    .mobile .body {
        background: #621749;
        padding: 5px 5%;
        border-radius: 0 0 10px 10px;
        position: relative;
    }
    .mobile .box-row {
        display: flex;
        line-height: 1.2;
    }
    .mobile .w40 {
        width: 40%;
        color: #fff;
        font-size: 8px;
    }
    .mobile .w60 {
        width: 100%;
        padding: 2px;
        background: #fff;
        color: #000;
        border-radius: 10px;
        margin-bottom: 3px;
        padding: 2px 10px;
        display: block;
        font-size: 85%;
        text-align: left;
    }

    .w60 .small { letter-spacing:-0.5px; }

    .mobile .inline { display: inline-block !important; }

    .addTextD {
        width: 95%;
        margin: 10px auto;
        color: black;
        font-size: 10px;
        text-shadow: 5px 0px 10px white;
    }

}

@media (max-width: 480px) {
    .disclaimer.mobile { font-size: 8px; }
}

@media (min-width: 700px) {
    .disclaimer.mobile { font-size: 14px; }
}
@media only screen and (max-width: 767px) {
    .disclaimer.online {
        display: none;
    }
}

@media only screen and (min-width: 768px){
    .disclaimer.mobile {
        font-size: 14px;
        display:none;
    }

    .disclaimer.online{ display:block; }
    .addTextD { display:block; }
    .disclaimer.online{
        display: block;
        width: 900px;
        margin: 0 auto;
        font-family: arial, sans-serif;
        background: #621749;
        font-size:11px;
        padding:0 10px;
        border-radius: 10px;
        position:relative;
        transform-origin: 0;
        left: 0;
        right: 0;
        padding-bottom: 10px;
    }

    .online #header {
        background: #000;
        color: #fff;
    }
    .online #header img {
        width: 20px;
        vertical-align: bottom;
    }
    .online .box-row{
        width: 90%;
        display: inline-block;
        font-size: 86%;
        line-height: 1.8em;
    }
    .online .logo{
        float: right;
        width: 10%;
        position: relative;
    }
    .online .logo img{
        width: 100%;
    }

    .online .title{
        display:inline;
        color:#fff;
    }
    .online .text{
        background: #fff;
        color: #000 !important;
        border-radius: 6px;
        padding: 2px 10px;
        display: inline;
        line-height: 2.2;
    }
    .online span.black{
        background: #000;
        border-radius: 10px 0 0 0;
        margin-left: -10px;
        top: -1px;
        position: relative;
        padding: 4px 38px;
        color:#fff;
    }
    .online span img{
        width: 15px;
        position: absolute;
        left: 0%;
        top: 1px;
    }
    .online .logo img {
        width: 70%;
        float: right;
    }
    .online .logo {
        float: right;
        position: relative;
        box-sizing: border-box;
        padding: 10px;
        width: 10%;
    }

    .addTextD {
        font-size: 10px;
        width: 100%;
        max-width: 100%;
        position: fixed;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: 5px;
        color: black;
        text-shadow: 5px 0px 10px white;
    }
}


.smallFontSize {
    font-size: 12px;
    color: white;
}
.disclaimerSection {
    margin-top : 10%;
}

.title a {
    color: #fff;
}
#moView {
    display: none;
}

.min_text, .sec_text, .blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .mobView {
        display: none !important;
    }
    .webView {
        display: block !important;
    }
    .disclaimer.online { max-width: 830px; }
    .online .box-row { font-size: 80%; }



    .content{ margin-top: 15px; }

    .prize-title{ font-size: 80px; }
}

@media only screen and (max-width: 736px){
    .disclaimer.mobile { width: 90%;margin : 0 auto; }
    .mobView {
        display: block !important;
    }
    .webView {
        display: none !important;
    }

    .disclaimerSection {
        margin-top: 50rem;
    }
}
