/* 
 * CMBG3 Law — Branded Podcast Player 
 * Skins the native WordPress MediaElement.js player
 */

.cmbg3-podcast-player {
    width: 100%;
}

/* Container */
.cmbg3-podcast-player .mejs-container {
    background: #1b2332 !important;
    /* Navy */
    border-radius: 8px;
    font-family: inherit;
    height: 50px !important;
}

/* Controls Wrapper */
.cmbg3-podcast-player .mejs-controls {
    background: transparent !important;
    padding: 0 10px;
}

/* Play/Pause Button */
.cmbg3-podcast-player .mejs-playpause-button button {
    background-color: transparent;
}

.cmbg3-podcast-player .mejs-playpause-button button:hover {
    opacity: 0.8;
}

/* Time Rail (The Bar) */
.cmbg3-podcast-player .mejs-time-rail {
    padding-top: 15px;
}

.cmbg3-podcast-player .mejs-time-total {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
}

.cmbg3-podcast-player .mejs-time-current {
    background: #b2956c !important;
    /* Gold */
    border-radius: 4px;
}

.cmbg3-podcast-player .mejs-time-handle-content {
    background: #ffffff !important;
    border: 2px solid #b2956c !important;
}

/* Time Text */
.cmbg3-podcast-player .mejs-time {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 500;
}

/* Volume Slider */
.cmbg3-podcast-player .mejs-horizontal-volume-current {
    background: #b2956c !important;
}