/*******************************************************
*
        Definitions for standard message window
*
*******************************************************/
.RadioControl {
    -ms-grid-columns: auto 5px 1fr 5px 6em 5px auto 5px 1fr;
    grid-template-columns: auto 5px 1fr 5px 6em 5px auto 5px 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    margin-left: 0.2em;
    margin-right: 0.2em;
    margin-bottom: 0.1em;
    padding: 10px;
    width: 90%;
    max-width: 480px;
    height: min-content;
    border-radius: 5px;
    border-color: #555555;
    background-color: #555555;
    border-style: none;
    display: -ms-grid;
    display: grid;
    justify-content: center;
    -ms-grid-column-align: center;
    align-items: center;
    -ms-grid-row-align: center;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    grid-column: 1;
    grid-row: 1;
}

.mp3Player_StartButton {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    position: relative;
    background-image: url(Bitmaps/ButtonPlay.png);
    background-origin: content-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    border: none;
    -webkit-border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    justify-self: end;
}

.mp3Player_PauseButton {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    position: relative;
    background-image: url(Bitmaps/ButtonPause.png);
    background-origin: content-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    border: none;
    -webkit-border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    justify-self: end;
}

.mp3Player_MuteButton {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    position: relative;
    background-image: url(Bitmaps/ButtonMuteNotActive.png);
    background-origin: content-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    border: none;
    -webkit-border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
    -ms-grid-column: 7;
    grid-column: 7;
    -ms-grid-row: 1;
    grid-row: 1;
}

.mp3Player_UnmuteButton {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    position: relative;
    background-image: url(Bitmaps/ButtonMuteActive.png);
    background-origin: content-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    border: none;
    -webkit-border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
    -ms-grid-column: 7;
    grid-column: 7;
    -ms-grid-row: 1;
    grid-row: 1;
}

.mp3Player_progressContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    max-height: auto;
    padding: 2px;
    background-color: black;
    align-self: center;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    -ms-grid-row-align: center;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-grid-column-align: start;
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
}

.mp3Player_progressBar {
    position: relative;
    width: 0px;
    height: 10px;
    background-color:  #FFBA4F;
    border-style: none;
}

.mp3Player_VolumeCtrl {
    position: absolute;
    border: none;
    height: 20px;
    width: 8px;
    border-radius: 3px;
    background: paleturquoise;
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
}

.mp3Player_Volume {
    position: relative;
	width: auto;
    outline: none;
    height: 6px;
    border: none;
    background:  #FFBA4F;
    cursor: pointer;
}

.mp3Player_VolumeContainer {
    position: relative;
    width: 100%;
    outline: none;
    height: auto;
    border: none;
    padding: 2px;
    background: black;
    cursor: pointer;
    -ms-grid-column: 9;
    grid-column: 9;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: center;
    -ms-grid-row-align: center;
}

.mp3Player_ProgressText {
    width: auto;
    font-family: 'Comic Sans MS';
    font-size: 0.6em;
    text-align: center;
    color: paleturquoise;
    background-color: transparent;
    grid-column: 5;
    grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-row: 1;
    justify-self: center;
    align-self: center;
    -ms-grid-column-align: center;
    -ms-grid-row-align: center;
    white-space: nowrap;
}
