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

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

  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: #66727c;

  background: #2c4357;

  font-size: 15px;
}


/* =================================
   TRENDING LIST
================================= */

.trending-list {
  width: 100%;

  padding: 0 8px;
}


/* =================================
   TRENDING ITEM
================================= */

.trending-item {
  width: 100%;

  margin-top: 10px;
  margin-bottom: 80px;
}


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

.trending-image {
  display: block;

  width: 100%;

  height: auto;

  max-height: 120px;

  object-fit: cover;

  border: none;

  cursor: pointer;
}


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

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