.live_matches {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-viewport {
  width: 100%;
  overflow: hidden;
}

.banner-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.banner-slide {
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ========================================
   PREVIOUS / NEXT BUTTON
======================================== */

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  z-index: 10;

  width: 42px;
  height: 60px;

  border: none;
  outline: none;

  background: rgba(35, 58, 82, 0.65);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: background 0.2s ease;
}

.banner-arrow:hover {
  background: rgba(35, 58, 82, 0.9);
}

.banner-arrow svg {
  font-size: 22px;
}


/* LEFT */

.banner-prev {
  left: 0;
}


/* RIGHT */

.banner-next {
  right: 0;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  .banner-arrow {
    width: 30px;
    height: 45px;
  }

  .banner-arrow svg {
    font-size: 16px;
  }
}