.three-bounce {
    text-align: center;
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%
}

.three-bounce div {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background-color: #fff;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both
}

.three-bounce .one {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s
}

.three-bounce .two {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s
}

.btnDiv {
    text-align: center;
    margin: 10px 0
}

.btnDiv button {
    margin: 4px 8px;
    padding: 20px;
    border: 0;
    background-color: dodgerblue;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    cursor: pointer
}

.btnDiv button:active {
    background-color: #006dd8
}

.btnDiv button:hover {
    box-shadow: 0 0 8px 1px #1b8eff
}

.btnDiv button:focus {
    outline: 0
}

.btnDiv button:before,
.btnDiv button.pause:after,
.btnDiv button.plus:after,
.btnDiv button.right:after,
.btnDiv button.left:after {
    position: absolute;
    content: ""
}

.btnDiv button.play:before,
.btnDiv button.left:before,
.btnDiv button.right:after {
    border: 11px solid transparent;
    border-left-color: inherit;
    left: 16px;
    top: 24%
}

.btnDiv button.pause:before,
.btnDiv button.pause:after {
    left: 12px;
    top: 28%;
    width: 6px;
    height: 19px;
    background: #fff
}

.btnDiv button.pause:after {
    right: 12px;
    left: auto
}

.btnDiv button.stop:before {
    left: 11px;
    top: 25%;
    width: 45%;
    height: 50%;
    background: #fff
}

.btnDiv button.plus:before {
    left: 17px;
    top: 27%;
    background: #fff;
    width: 6px;
    height: 20px
}

.btnDiv button.plus:after,
.btnDiv button.minus:before,
.btnDiv button.right:before,
.btnDiv button.left:after {
    left: 9px;
    top: 44%;
    background: #fff;
    width: 22px;
    height: 6px
}

.btnDiv button.left:after {
    left: 11px;
    width: 21px
}

.btnDiv button.right:before {
    width: 20px
}

.btnDiv button.left:before,
.btnDiv button.play.leftNav:before {
    border-right-color: inherit;
    border-left-color: transparent;
    left: -4px
}

.btnDiv button.right:after {
    left: 22px
}

.btnDiv button.play.leftNav:before {
    left: 1px;
    top: 21%
}

.btnDiv.navDiv {
    text-align: left
}

.btnDiv.navDiv button {
    position: absolute;
    top: 50%
}

.btnDiv.navDiv button.rightNav {
    right: 0
}

img.draggable {
    cursor: e-resize
}

img.keys {
    cursor: pointer
}

@keyframes bouncedelay {

    0%,
    80%,
    100% {
-webkit-transform: scale(0);
transform: scale(0)
    }

    40% {
transform: scale(1);
-webkit-transform: scale(1)
    }
}

@-webkit-keyframes bouncedelay {

    0%,
    80%,
    100% {
-webkit-transform: scale(0);
transform: scale(0)
    }

    40% {
transform: scale(1);
-webkit-transform: scale(1)
    }
}
