﻿
.player__wrapper {
    border-radius: 50px;
    background: #e6e6e6;
    box-shadow: 20px 20px 37px #cdcdcd, -20px -20px 37px #ffffff;
    padding: 4vh 5.5vw 4.5vh 5.5vw;
    max-width: 700px;
    width: 80%;
    height: 500px;
/*    align-self: start;
    margin: 20px 2vw;*/
}

.player__viz {
/*    background-image: url('/Media/Images/sealoop.gif');*/
    background-size: cover;
    height: 220px;
}

.ab__controls {
    display: grid;
    align-content: center;
    align-items: baseline;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
}

.ab__spacer {
    height: 10px;
}

button {
    font-size: 1.3rem;
    text-transform: uppercase;
    border: none;
    color: #9b9b9b;
    width: 5rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: #e6e6e6;
    box-shadow: 7px 7px 15px #cdcdcd, -7px -7px 15px #ffffff;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

    button:disabled {
        /*color: #c9c9c9;*/
        color: #9b9b9b;
        font-weight: bold;
        box-shadow: inset 7px 7px 15px #cdcdcd, inset -7px -7px 15px #ffffff;
        transition: all ease-in-out 0.3s;
    }

        button:disabled:hover {
            color: #c9c9c9;
            box-shadow: inset 5px 5px 15px #cdcdcd, inset -5px -5px 15px #ffffff;
        }

    button:hover {
        box-shadow: 4px 4px 15px #cdcdcd, -4px -4px 15px #ffffff;
    }

.a__button {
    width: 8rem;
    border-radius: 12px 0 0 12px;
    justify-self: self-end;
}

.b__button {
    color: #ea4a26 !important;
    width: 8rem;
    border-radius: 0 12px 12px 0;
    justify-self: self-start;
}

.play__button {
    justify-self: self-end;
}

.stop__button {
    width: 5rem;
    color: #966f6f;
    justify-self: self-start;
}

    .stop__button:disabled {
        color: #966f6fd3;
    }

.play__stop__controls {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    grid-gap: 1rem;
}

.progress__container {
    display: inline-flex;
    background: #a8a8a8;
    height: 1rem;
    width: 100%;
/*    margin-bottom: 2.4rem;*/
    border-radius: 10px;
    border-radius: 12px;
    background: #e6e6e6;
    box-shadow: inset 7px 7px 15px #cdcdcd, inset -7px -7px 15px #ffffff;
    cursor: pointer;
    align-self: center;
    overflow: hidden;
}

.progress__bar {
    background: linear-gradient(360deg, #b7b7b7, #c9c7c7);
    border-radius: 12px;
    transition: all ease-in-out 0.03s;
}

.progress__fill {
    width: 0%;
}

@media screen (min-width: 768px) {
    body {
        grid-template-rows: 1fr 1fr;
    }

    #intro {
        margin-bottom: 0;
    }

    .players {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .players {
        grid-template-columns: 1fr;
    }

    .player__viz {
        /*    background-image: url('/Media/Images/sealoop.gif');*/
        background-size: cover;
        height: 180px;
    }
}
