/*----------------------------------------------------------------------
VIDEO CONTROLS
------------------------------------------------------------------------*/
/* PROGRESS BAR COLOR */
.mejs__time-current, .mejs__time-handle-content {
background-color: #7EE583;
}

/* PLAY BUTTON - set color in "modules/videoplayer/bigplay.svg" */

/* Play Button Placement */

.mejs__overlay-button {

/* TURN OFF BELOW FOR DEFAULT CENTRE PLACEMENT */

/* bottom left or right*/
/*
position: absolute;
width: 80px;
height: 80px;
bottom: 5px;
right: 5px;
*/

/* center */
/*
position: absolute;
width: 80px;
height: 80px;
top: 50%;
left: 50%;
margin: -40px 0 0 -40px;
*/
/* each of above must be set to half the width */

/* center bottom */

position: absolute;
width: 80px;
height: 80px;
bottom: 24%;
left: 50%;
margin: 0 0 0 -40px;

/* each of above must be set to half the width */
}