.toggleBtn {
    background-color: lightblue;
	width:100px;
	text-align: center;
	font-size: 10pt;
   	box-shadow: 2px 1px 2px gray;
	borderStyle: outset;
}

/* popupPausecontainer - can be anything you want */
.popupPause{
    position: absolute;
    top: --510px;
    left: -85px;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popupPause*/
.popupPause .popupPausetext {
    visibility: hidden;
    width: 650px;
    background-color: none;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1001;
    top: --510px;
    <!--top: -290px;-->
    <!--left: 5px;-->
    /* margin-left: 80px; */
}

/* Toggle this class - hide and show the popupPause*/
.popupPause .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
