
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: center no-repeat #fff;
}

#instructions,#howToPlayGame{
	display:none;
}
.ring1 {
        margin-top: 7vh;
        height: 15vh;
        /*width:150px;*/
        -webkit-transform-style: preserve-3d;
        -webkit-animation-iteration-count:1;
        -webkit-animation-timing-function: linear;
        -ms-transform-style: preserve-3d;
        -ms-animation-iteration-count: 1;
        -ms-animation-timing-function: linear;
        -moz-transform-style: preserve-3d;
        -moz-animation-iteration-count: 1;
        -moz-animation-timing-function: linear;
      }
.ring2 {
        margin-top: 7vh;
        height: 15vh;
        /*width:150px;*/
        -webkit-transform-style: preserve-3d;
        -webkit-animation-iteration-count:5;
        -webkit-animation-timing-function: linear;
        -ms-transform-style: preserve-3d;
        -ms-animation-iteration-count:5;
        -ms-animation-timing-function: linear;
        -moz-transform-style: preserve-3d;
        -moz-animation-iteration-count: 5;
        -moz-animation-timing-function: linear;
      }
#rotate1, #rotate2
{
        /* margin:0 auto; */        
        -webkit-transform-style: preserve-3d; 
        -ms-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
}

#stage1,#stage2
{
      display:block;
      -webkit-perspective:1200;
        -ms-perspective:1200;
        -moz-perspective:1200;
         -webkit-transform-style: preserve-3d; 
        -ms-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
}

.slowring
      {
        -webkit-animation-name: x-spin;
        -webkit-animation-duration:3s;
        -ms-animation-name: x-spin;
        -ms-animation-duration:3s;
        -moz-animation-name: x-spin;
        -moz-animation-duration:3s;
        animation-duration:3s;
      }
.fastring
      {

        -webkit-animation-name: x-spin;
        -webkit-animation-duration:1s;
        -ms-animation-name: x-spin;
        -ms-animation-duration:1s;
        -moz-animation-name: x-spin;
        -moz-animation-duration:1s;
        animation-duration:1s;
        
      }
.extraSlow
        {
                -webkit-animation-name: x-spin;
                -webkit-animation-duration:10s;
                -ms-animation-name: x-spin;
                -ms-animation-duration:10s;
                -moz-animation-name: x-spin;
                -moz-animation-duration:10s;
                animation-duration:10s;
        }
@-webkit-keyframes x-spin {
        0%    { -webkit-transform: rotateX(0deg); 
                -ms-transform: rotateX(0deg);
                -moz-transform: rotateX(0deg);}
        50%   { -webkit-transform: rotateX(180deg); 
                -ms-transform: rotateX(180deg);
                -moz-transform: rotateX(180deg);}
        100%  { -webkit-transform: rotateX(360deg); 
                -ms-transform: rotateX(360deg);
                -moz-transform: rotateX(360deg);}
      }

      @-webkit-keyframes y-spin {
        0%    { -webkit-transform: rotateY(0deg);
                  -ms-transform: rotateY(0deg);
                -moz-transform: rotateY(0deg); }
        50%   { -webkit-transform: rotateY(180deg);
                -ms-transform: rotateY(180deg);
                -moz-transform: rotateY(180deg); }
        100%  { -webkit-transform: rotateY(360deg);
                -ms-transform: rotateY(360deg);
                -moz-transform: rotateY(360deg);}
      }

@-webkit-keyframes back-y-spin
 {
        0%    { -webkit-transform: rotateY(360deg); 
                -ms-transform: rotateY(360deg);
                -moz-transform: rotateY(360deg);}
        50%   { -webkit-transform: rotateY(180deg);
                -ms-transform: rotateY(180deg);
                -moz-transform: rotateY(180deg); }
        100%  { -webkit-transform: rotateY(0deg); 
                -ms-transform: rotateY(0deg); 
                -moz-transform: rotateY(0deg); }
}
      

/* 3D Bouncing ball */

#ballWrapper {
    width: 140px;
    height: 300px;
    position: fixed;
    left: 50%;
    top: 35%;
    margin-left: -70px;
    z-index: 100;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 5s linear 0s;
    -moz-transition: all 5s linear 0s;
    transition: all 5s linear 0s;
    cursor: pointer;
}

#ballWrapper:active {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    cursor: pointer;
}

#ball {
    width: 140px;
    height: 140px;
    border-radius: 70px;
    background:#9C2626;
    background: url("ball2.png");
    box-shadow: inset 0 -5px 15px rgba(255,255,255,0.4), 
                inset -2px -1px 40px rgba(0,0,0,0.4), 
                0 0 1px #000;   
    position: absolute;
    top: 0; 
    z-index: 11;
    -webkit-animation: jump 1s infinite;
    -moz-animation: jump 1s infinite;
    -o-animation: jump 1s infinite;
    -ms-animation: jump 1s infinite;
    animation: jump 1s infinite;
    cursor: pointer;
}

#ball::after {
    width: 80px; 
    height: 40px; 
    position: absolute;
    left: 30px;
    top: 10px;
    z-index: 10;
    background: url("ball2.jpg");
    border-radius: 40px / 20px; 
}

#ballShadow {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 10;
    margin-left: -30px;
    width: 60px;
    height: 75px;
    background: rgba(20, 20, 20, .1);
    box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
    border-radius: 30px / 40px; 
    -webkit-transform: scaleY(.3);
    -moz-transform: scaleY(.3);
    -ms-transform: scaleY(.3);
    -o-transform: scaleY(.3);
    transform: scaleY(.3);
    -webkit-animation: shrink 1s infinite;
    -moz-animation: shrink 1s infinite;
    -o-animation: shrink 1s infinite;
    -ms-animation: shrink 1s infinite;
    animation: shrink 1s infinite;
}

/* Animations */

@-webkit-keyframes jump {
    0% {top: 0;
        -webkit-animation-timing-function: ease-in;
    }
    40% {}
    50% {top: 140px;
        height: 140px;
        -webkit-animation-timing-function: ease-out;
    }
    55% {top: 160px; height: 120px; border-radius: 70px / 60px;
        -webkit-animation-timing-function: ease-in;}
    65% {top: 120px; height: 140px; border-radius: 70px;
        -webkit-animation-timing-function: ease-out;}
    95% {
        top: 0;     
        -webkit-animation-timing-function: ease-in;
    }
    100% {top: 0;
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes jump {
    0% {top: 0;
        -moz-animation-timing-function: ease-in;
    }
    40% {}
    50% {top: 140px;
        height: 140px;
        -moz-animation-timing-function: ease-out;
    }
    55% {top: 160px; height: 120px; border-radius: 70px / 60px;
        -moz-animation-timing-function: ease-in;}
    65% {top: 120px; height: 140px; border-radius: 70px;
        -moz-animation-timing-function: ease-out;}
    95% {
        top: 0;     
        -moz-animation-timing-function: ease-in;
    }
    100% {top: 0;
        -moz-animation-timing-function: ease-in;
    }
}

@-o-keyframes jump {
    0% {top: 0;
        -o-animation-timing-function: ease-in;
    }
    40% {}
    50% {top: 140px;
        height: 140px;
        -o-animation-timing-function: ease-out;
    }
    55% {top: 160px; height: 120px; border-radius: 70px / 60px;
        -o-animation-timing-function: ease-in;}
    65% {top: 120px; height: 140px; border-radius: 70px;
        -o-animation-timing-function: ease-out;}
    95% {
        top: 0;     
        -o-animation-timing-function: ease-in;
    }
    100% {top: 0;
        -o-animation-timing-function: ease-in;
    }
}

@-ms-keyframes jump {
    0% {top: 0;
        -ms-animation-timing-function: ease-in;
    }
    40% {}
    50% {top: 140px;
        height: 140px;
        -ms-animation-timing-function: ease-out;
    }
    55% {top: 160px; height: 120px; border-radius: 70px / 60px;
        -ms-animation-timing-function: ease-in;}
    65% {top: 120px; height: 140px; border-radius: 70px;
        -ms-animation-timing-function: ease-out;}
    95% {
        top: 0;     
        -ms-animation-timing-function: ease-in;
    }
    100% {top: 0;
        -ms-animation-timing-function: ease-in;
    }
}

@keyframes jump {
    0% {
        top: 0;
        animation-timing-function: ease-in;
    }
    50% {
        top: 140px;
        height: 140px;
        animation-timing-function: ease-out;
    }
    55% {
        top: 160px; 
        height: 120px; 
        border-radius: 70px / 60px;
        animation-timing-function: ease-in;
    }
    65% {
        top: 120px; 
        height: 140px; 
        border-radius: 70px;
        animation-timing-function: ease-out;
    }
    95% {
        top: 0;     
        animation-timing-function: ease-in;
    }
    100% {
        top: 0;
        animation-timing-function: ease-in;
    }
}



@-webkit-keyframes shrink {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -webkit-animation-timing-function: ease-in;
    }
    50% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.3);
        border-radius: 20px / 20px;
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes shrink {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -moz-animation-timing-function: ease-in;
    }
    50% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.3);
        border-radius: 20px / 20px;
        -moz-animation-timing-function: ease-out;
    }
    100% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -moz-animation-timing-function: ease-in;
    }
}

@-o-keyframes shrink {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -o-animation-timing-function: ease-in;
    }
    50% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.3);
        border-radius: 20px / 20px;
        -o-animation-timing-function: ease-out;
    }
    100% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -o-animation-timing-function: ease-in;
    }
}

@-ms-keyframes shrink {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -ms-animation-timing-function: ease-in;
    }
    50% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.3);
        border-radius: 20px / 20px;
        -ms-animation-timing-function: ease-out;
    }
    100% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        -ms-animation-timing-function: ease-in;
    }
}

@keyframes shrink {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        animation-timing-function: ease-in;
    }
    50% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.3);
        border-radius: 20px / 20px;
        animation-timing-function: ease-out;
    }
    100% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0px 0 20px 35px rgba(20,20,20,.1);
        border-radius: 30px / 40px;
        animation-timing-function: ease-in;
    }
}
.optionsAtRightSide
            {
                color:black;
                font-family: cursive;
                margin: -25px !important
            }
#background
         {
            /*background-image: url('back.png');*/
            user-select: none;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            overflow: hidden;
         } 
#CoverPage
{
           /* background-image: url('BackgroundImage.gif');*/
            user-select: none;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            overflow: hidden;
}
.shake {
            animation: buttonShake 0.8s ease;
            -webkit-animation: buttonShake 0.8s ease;
            -moz-animation: buttonShake 0.7s ease;
            -ms-animation: buttonShake 0.7s ease;
            -o-animation: buttonShake 0.7s ease;
        }

@keyframes buttonShake 
{
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
}

@-webkit-keyframes buttonShake {
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
}

@-moz-keyframes buttonShake {
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
}

@-ms-keyframes buttonShake {
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
}

@-o-keyframes buttonShake {
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
} 
.poster1,.poster2 
      {
        background-image: url('ball2.jpg');
        display: flex;
        align-items: center;
        justify-content: center;
        position:absolute;
        width:7vw;
        height:14vh;
        opacity: 1.7;
        user-select: none;
        background-position: center;
        background-attachment: fixed;
        /* background-repeat: no-repeat; */     /* don't apply this property bcoz of rotate animation */
        background-size: 100% 100%;
        overflow: hidden;     
}

.rotateAnimation{
    -webkit-border-radius: 50%;
    -ms-border-radius:50%;
    -moz-border-radius:50%;
    animation-name: rotate;
    animation-duration: 4s;
    opacity: 1.7;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotate {
  from { background-position-y: 0px; }
  to { background-position-y: 210px; }
}

#info0,#info2,#info4,#info6,#info1,#info3,#info5,#info7{
    background-color: white;
}
#info8,#info9{
    background-color: rgb(1,160,226);
}
#howToPlayGame{
    background-color: #ff6933;
    margin-top: 3vh;
    height:6vh;
    padding-top: 3vh;
    padding-bottom: 3vh;
    border-radius: 2vw;
    font-size: 1.6vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
#instructionDiv{
    display: none;
}
#instructions
{
    padding-left: 0vw;
    padding-right: 0vw;
    padding-top: 4vh;
    padding-bottom: 4vh;
    font-size:2vw;
    color:black;
    font-family: cursive;
    text-align: center;
    margin-top:6vh;
    background-color:rgba(1,129,192,0.8);
}
.playBtn{
    margin-top: 12vh;
}
.scoreBoard{
    
}
#nameOfPlayer, #dummyPlayer {
    color: black;
    font-size:2vw;
    font-family: Georgia;
    text-align: center;
}
#TotalOver {
    margin-top: 0px;
    font-size: 2vw;
    font-family: Georgia;
    color: white;
}
#over, #strikeRate {
    font-size: 2vw;
    color: black;
    font-family: Georgia;
    text-align: center;
}
#showStrikeRate {
    margin-top: 3px;
    font-size: 2vw;
    font-family: Georgia;
    color: white;
}
#playerScore {
    margin-top: 3px;
    font-size:2vw;
    font-family: Georgia;
    color: white;
}
#dummyPlayerScore {
    margin-top: 3px;
    font-size: 2vw;
    font-family: Georgia;
    color: white;
}
#nameOfCountry {
    font-size: 2vw;
    color: black;
    margin-top: 2px;
    text-align: center;
    font-family: Georgia;
}
  #runs {
    font-size: 2vw;
    font-family: Georgia;
    margin-top: -1px;
    margin-bottom: 5px;
     /*border-color: black; 
     border-radius: 21px; 
     border-style: solid; */
    /* width: 130px; */
    color: white;
}
  #showItsDotBallMessage {
    display: none;
    font-size: 3vw;
    font-weight: bold;
    color:#FF4500;
    background-color: yellow;
    border-radius: 1vw;
    padding: 3%;
    outline: 1px solid black;
}
#playAgain {
    /* font-size: 21px;
    font-family: Georgia;
    height: 36px;
    background-color: #ff6933;
    color: black; */
    margin-top: 2%;
    /* min-width: 21%;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center; */
}
#p1,#p2,#p3,#p4,#p5,#p6,#p7,#p8,#p9,#p10,#p11,#p12,#p13,#p14,#p15,#p16,#p17,#p18,#p19,#p20,#p21,#p22,#p23,#p24
{
        font-family: 'Georgia', serif;
        font-size:2vw;
        font-weight: bold;
        color:rgb(229 252 5);
        display: flex;
        align-items: center;
        justify-content: center;
}
#Lastmessage
{
    text-align:center;
    opacity:1.5;
    font-size: 3vw;
    font-weight: bold;
    font-family: Georgia;
    background-color: white;
}
#showFieldChangedMessage
{
    display: none; 
    font-size: 2.5vw;
    font-weight: bold;
    font-family: Georgia;
    color:red;
    background-color: yellow;
    border-radius: 1vw;
    padding: 1.5%;
    text-align: center;
    outline: 1px solid black;
}
 
#btnno1{
    height:55px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.glyphicon 
{
    position: relative;
    top:6px;
}
.infoOfPlayer
{   font-family: Georgia;
    font-size:2vw; 
    text-align:center;
    color:black;
    margin-top: 1vh;
    font-weight: bold;
}
#scoreBoard {
    background-color: #1e90ff;
    position: fixed;
    bottom: 0px;
    padding: 5px;
}
#showOnStrikePlayer {
    /* display: none;  */
    font-size: 3vw;
    font-weight: bold;
    font-family: Georgia;
    color:green;
    background-color: rgb(255, 213, 0);
    border-radius: 1vw;
    padding: 1.5%;
    text-align: center;
    outline: 1px solid black;
}

#part1,#part2,#part3{
    padding:0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#part1-1,#part1-2,#part1-3,#part1-4,#part2-1,#part2-2,#part3-1,#part3-2,#part3-3,#part3-4{
    padding:0px;
}
.scorePart_align{
    text-align: left;
}
.nopadding{
    padding: 0 !important;
}
#divShowingTimer{
    margin-top:-120px;
}
#buttondiv{
    margin-top: 20vh;
}
#StopTheWheel {
    height: 14vh;
    font-size: 2vw;
    font-family: Georgia;
    text-align: center;
    border-radius: 1vw;
    background-color: rgb(116,22,14);
    color: white;
}
#smalldiv
{
    display: flex;
    justify-content: center;
    align-items: start; 
}
#no1,#no2,#no3,#no4
{
    font-family: 'Georgia', serif;
    font-size:2vw;
    font-weight: bold;
    text-align: center;
    height: 10vh;
    color:white;
    margin-top:2vh;
    margin-bottom:2vh;
    background-color:rgb(35,31,101);
    display: flex;
    align-items: center;
    justify-content: center;
}
#ansMessage {
    display: none; 
    margin-top:-15%;
    font-size: 2.5vw;
    font-weight: bold;
    font-family: Georgia;
    color:#0b13af;
    background-color: yellow;
    border-radius: 1vw;
    padding: 1.5%;
    text-align: center;
    outline: 1px solid black;
}

/* @media screen  and (min-device-width :501px) and (max-device-width:680px){
	#stage1,#stage2{
		height:0px;
	}
	#buttondiv{
		height:0px;
		margin-top: 0px;
	}
	#StopTheWheel {
		margin-top:15%;
	}
	#divofOptions
	{
		margin-top:-15%;
	}
	#no1,#no2,#no3,#no4{
		height:50px;
		font-size:25px;
	}
	#divShowingTimer {
    margin-top: -102px;
}
#showItsDotBallMessage {
    font-size: 35px;
    color: #FF4500;
    margin-top: -65%;
}
#ansMessage {
    font-size: 45px;
    color: #FF4500;
    font-family: Georgia;
    text-align: center;
    margin-top: -25%;
}
}
@media screen and (max-device-width:1024px)and (min-device-width:768px){
	#stage1,#stage2{
		height:0px;
	}
	#buttondiv{
		height:0px;
		margin-top: 0px;
	}
	#StopTheWheel {
		margin-top:15%;
	}
	#divofOptions
	{
		margin-top:-15%;
	}
	#no1,#no2,#no3,#no4{
		height:50px;
		font-size:25px;
	}
	#divShowingTimer {
    margin-top: -50px;
}
#showItsDotBallMessage {
    font-size: 35px;
    color: #FF4500;
    margin-top: -65%;
}
#ansMessage {
    font-size: 45px;
    color: #FF4500;
    font-family: Georgia;
    text-align: center;
    margin-top: -25%;
}

#home{
	height:100px;
}
}

@media screen  and (min-device-width :681px) and (max-device-width:767px){
	
		#stage1,#stage2{
		height:0px;
	}
	#buttondiv{
		height:0px;
		margin-top: 0px;
	}
	#StopTheWheel {
		margin-top:15%;
	}
	#divofOptions
	{
		margin-top:-15%;
	}
	#no1,#no2,#no3,#no4{
		height:50px;
		font-size:25px;
	}
	#divShowingTimer {
    margin-top: -80px;
}
#showItsDotBallMessage {
    font-size: 35px;
    color: #FF4500;
    margin-top: -65%;
}
#ansMessage {
    font-size: 45px;
    color: #FF4500;
    font-family: Georgia;
    text-align: center;
    margin-top: -25%;
}
#home{
	height:80px;
}
} */


