body {
    margin:0px auto;
    height: 650px;
    width: 760px;
    background: white;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

@font-face {
    font-family: Century_Gothic;
    src: url('4_Century Gothic.ttf');
}

*:not(input):not(textarea):not(area):not(map){
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    
}

*:not(input):not(textarea)::selection 
{
    background-color:transparent;
} 
*:not(input):not(textarea)::-moz-selection
{
    background-color:transparent;
}

#loader {
    background: url(../assets/images/loader.gif) no-repeat;
    background-position: center;
    width: 760px;
    height: 422px;
    position: absolute;
    top: 0px;
    display: none;
    z-index: 99;
}

#animation_container{
    background-image: url('../assets/images/the_crowd_went_wild.jpg');
	background-color:rgba(255, 255, 255, 1); 
	width:760px; 
	height:420px; 
	position: absolute;
    border: 1px solid rgb(0, 102, 153);
}

#canvas{
	position: absolute; 
	display: block; 
	background-color:rgba(255, 255, 255, 0);
}

#dom_overlay_container{
	pointer-events:none; 
	overflow:hidden; 
	width:760px; 
	height:420px; 
	position: absolute; 
	left: 0px; 
	top: 0px; 
	display: block;
}

.coverAll {
    display: none;
    position: absolute;    
    margin: 0 auto;
    top: 0;
    width: 762px;
    height: 420px;
    cursor: pointer;
    z-index: 100;
    background-color: rgba(6, 201, 249,0.3);
}

.message {
    border-radius: 10px;
    border: 2px solid #50d9fb;
    background: #06c9f9;
    padding: 15px 5px;
    margin: 180px auto 0;
    width: 120px;
    cursor: pointer;
}

.message p {
    color: #FFF;
    text-align: center;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.story{
    position: absolute;
    top: 335px;
}

#circle_content {
    float: left;
    cursor: pointer;
}

#content-text{
    pointer-events: none;
}

.circle {
    cursor: pointer;
    width: 24px;
    height: 24px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    margin-top: 7px;
    margin-left: 7px;
    background: #00abfd;
    float: left;
}

.IsTouch .circle:hover,
.IsiPad .circle:hover{  
    background: #00abfd;
}

.circle:hover {
    background: #898989;

}

.play {
    margin-top:5px;
    margin-left:8px;
    border-top: 7px solid transparent;
    border-left: 12px solid white;
    border-bottom: 7px solid transparent;
    float: left;
}

.stop {
    width: 12px;
    height: 12px;
    margin-top:6px;
    margin-left:6px;
    background-color: #fff;
    float: left;
}

.button-container{
    width: 370px;
    height: 35px;
    top: 387px;
    position: relative;
    padding-top: 4px;
}

.left-button-container{
    float: left;
    margin-left: 5px;
}

.right-button-container{
    float: right;
    margin-right: 5px;
}


button{
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-weight:bold;
    font-size:20px;
    cursor: pointer;
    background-color: #FFFFFF;
    display:block;
    border-radius: 5px;
    padding-top:0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #006699;
    border: solid 1px #006699;
    text-align: center;
    touch-action: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

button{
    font-size: 18px;
    cursor: pointer !important;
    padding-top: 0px;
    height: 29px;
    min-width: 75px;
    margin-left: 10px;
}

.IsDeskTop button:hover{
    background-color: yellow;
}

/* The animation code */
@keyframes blink-animation {
    from {background-color: white;}
    to {background-color: yellow;}
}
/* The animation code */
@keyframes blink-animation-hover {
    from {background-color: blue; color: #FFFFFF;}
    to {background-color: #000000; color: yellow;}
}

/* The element to apply the animation to */
.blink {
    animation-name: blink-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: steps(2);
}

.IsDeskTop .blink:hover{
    animation-name: blink-animation-hover;
}

footer{
    position: relative;
    top: 387px;
    width: 760px;
    margin: auto;
    text-align: center;
    pointer-events: none;
}

small{
    width: 760px;
    display: inline-block;
}

.play-message{
    position: absolute;
    background: #006699;
    width: 599px;
    height: 30px;
    top: 390px;
}