/* MarsPlay Player */
html { height: 100%; }
body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #1c2020;
}

/* Loading spinner */
.mp-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mp-spin .8s linear infinite;
}
@keyframes mp-spin {
    to { transform: rotate(360deg); }
}
