
/* PAUSE BUTTON STYLES*/

body .mmc_paused_slide{
  z-index: 999 !important;
  display: block !important;
  opacity: 1 !important;
}

.mmc_carousel_pausebutton{
  box-sizing: border-box;
  position: absolute;
  z-index: 1000;
  bottom: 10px;
  right: 10px;
  background: red;
  height: 32px;
  width: 32px;
  background: currentColor;
  border: none;
  cursor: pointer;
  transform: scale(0.75);
}

.mmc_carousel_pausebutton span{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mmc_carousel_pausebutton:after,
.mmc_carousel_pausebutton:before{
    content: ''; position: absolute; pointer-events: none;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
    transition: all 0.25s;
    background: transparent;
  }

.mmc_carousel_pausebutton:not(.this--paused):after,
.mmc_carousel_pausebutton:not(.this--paused):before{
  border: none;
  width: 3px;
  height: 16px;
  left: calc(50% - 4px);
  background: white;
}

.mmc_carousel_pausebutton:not(.this--paused):after{
  left: calc(50% + 4px);
}

.et_pb_toggle_title:focus{
  outline: 2px solid currentColor;
}
