body {
    text-align: center;
    font-family: "lato"
}
/***

Modal style
*/
.modal {
    display: none; /* Hidden by default */
    position:fixed; /* Stay in place */
    z-index:10; /* Sit on top */
 /*    left: 20; */
    direction: center;
    bottom: 10;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.0); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.7s
}
.score-panel > *  {
    margin-right: 20px;
    margin-bottom: 10px;
}
.fa-heartbeat{
    color: red;
}
.fa-play-circle{
size: 20px;

}
.score-panel{
    font-weight: bold;
}
.tooltip .tooltiptextpause,.tooltiptextstart {
    visibility: hidden;
    width: 120px;
    font-size: 15px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .fa-pause .tooltiptextpause  {
    visibility: visible;
}
.tooltip:hover .fa-play-circle .tooltiptextstart  {
    visibility: visible;
}



/* Modal Content */
.modal-content {
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    width: 30%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name:slidIn;
    animation-duration: 0.4s
}
.yesBtn{
    background:grey;
    border: none;
    text-decoration: black
}
#refConfirm{
width: 50px;
height: 50px;
color: red;
}
/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.score{
    color: gold;
}
.stage{
    color: blue;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
   /*  background-color: #5cb85c; */
   background: linear-gradient(160deg, #02ccba 0%, #aa7ecd 100%); 
   color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background: linear-gradient(160deg, #02ccba 0%, #aa7ecd 100%); 
    color: white;
}




/***
add some animations
*/
@-webkit-keyframes slideDown {
    from {bottom: 900; opacity: 0} 
    to {bottom: 700; opacity: 1}
}

@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}
@keyframes slideDown {
    from {bottom: 900; opacity: 0} 
    to {bottom: 700; opacity: 1}
}

@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeOut {
    from {opacity: 1} 
    to {opacity: 0}
}

@keyframes fadeOut {
    from {opacity: 1} 
    to {opacity: 0}
}


@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}