/* =================================
   SIDEBAR
================================= */

.trending-sidebar {
  width: 255px;
  height: 92.2vh;

  background: #f8f8f8;

  overflow-y: auto;
  overflow-x: hidden;

  border-left: 1px solid #ddd;

  font-family: Arial, sans-serif;
}


/* =================================
   SECTION
================================= */

.sidebar-section {
  width: 100%;
}


/* =================================
   TITLE
================================= */

.sidebar-title {
  height: 34px;

  display: flex;
  align-items: center;

  padding: 0 8px;

  background: #2c4357;

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  border-top: 2px solid #18a7e0;
}


/* =================================
   FIXTURE
================================= */

.fixture-box {
  min-height: 48px;

  display: flex;
  align-items: center;

  padding: 7px 8px;

  background: #e4e9eb;

  border-bottom: 1px solid #d0d0d0;
}


/* =================================
   FIXTURE ICON
================================= */

.fixture-icon {
  width: 25px;
  min-width: 25px;

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

  font-size: 15px;
}


/* =================================
   FIXTURE CONTENT
================================= */

.fixture-content {
  flex: 1;

  min-width: 0;

  margin-left: 3px;
}


/* =================================
   FIXTURE NAME
================================= */

.fixture-name {
  color: #273746;

  font-size: 12px;
  font-weight: 500;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* =================================
   FIXTURE DATE
================================= */

.fixture-date {
  margin-top: 2px;

  color: #333;

  font-size: 10px;

  white-space: nowrap;
}


/* =================================
   TRENDING SECTION
================================= */

.trending-section {
  margin-top: 10px;
}


/* =================================
   TRENDING TITLE
================================= */

.trending-title {
  border-top: none;

  color: #ffffff;
  background: #2c4357;

  font-size: 15px;
}


/* =================================
   SWIPER CONTAINER
================================= */

.trending-carousel {
  width: 100%;

  padding: 0px;

  box-sizing: border-box;
}


/* =================================
   SWIPER
================================= */

.trending-swiper {
  width: 100%;
  height: 70vh;

  overflow: hidden;
}


/* =================================
   SLIDE
================================= */

.trending-swiper .swiper-slide {
  width: 100%;

  height: auto;

  display: flex;

  align-items: center;
  justify-content: center;
  margin-bottom: 50px !important;
  box-sizing: border-box;
}


/* =================================
   LINK
================================= */

.trending-link {
  display: block;

  width: 100%;
  height: 100%;
}


/* =================================
   IMAGE
================================= */

.trending-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border: none;

  cursor: pointer;
}


/* =================================
   HOVER
================================= */

.trending-image:hover {
  opacity: 0.95;
}

.fixture-swiper {
  height: 62px; 
  overflow: hidden;
}

.fixture-swiper .swiper-slide {
  height: 62px !important;
  display: flex;
  align-items: center;
}

.fixture-box {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 7px 8px;
  background: #e4e9eb;
  border-bottom: 1px solid #d0d0d0;
}

@media (max-width: 768px) {
  .trending-sidebar {
    width: 100% !important;
  }
}