.mtphr-slider {
  position: relative;
  box-sizing: border-box; }
  .mtphr-slider * {
    box-sizing: border-box; }
  .mtphr-slider__slides {
    position: relative;
    overflow: hidden; }
  .mtphr-slider__slide {
    display: none;
    position: absolute;
    width: 100%;
    line-height: 1; }
  .mtphr-slider__arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
  .mtphr-slider__prev, .mtphr-slider__next {
    position: relative;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 30px;
    height: 30px; }
  .mtphr-slider__bullets {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 10px; }
  .mtphr-slider__bullet {
    position: relative;
    z-index: 9999;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CCC;
    margin: 0 1px;
    transition: background-color .25s ease; }
    .mtphr-slider__bullet--active {
      background: #000; }
