﻿.side-container h1 {
}

  .side-container h1::before {
    font-family: var(--font-icon);
    content: "\f059";
    padding-right: 8px;
  }

  .side-container h1.activity::before {
    content: "\f5f8";
  }

.text-collapse {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: .4s all ease-out;
}

  .text-collapse::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(transparent, var(--background-color) 80%);
    content: "Expand";
    padding: 100px 0 0 0;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
  }

  .text-collapse.active {
    max-height: 100%;
    padding-bottom: 10px;
  }

    .text-collapse.active::after {
      background: none;
      content: "Shrink";
    }

.star {
  font: 400 1rem/1rem var(--font-sans-serif);
  color: var(--color-star);
  text-align: center;
  padding: 0 20px;
  cursor: pointer;
  display: inline-block;
}

  .star::before {
    font: 300 2rem/2rem var(--font-icon);
    content: "\f005";
    display: block;
    margin-bottom: 10px;
  }

  .star.filled::before {
    font-weight: 700;
    opacity: .4;
  }

  .star.half::before {
    font-weight: 700;
    opacity: .4;
    content: "\f089";
  }

  .star.selected,
  .star.selected::before {
    font-weight: 700;
    color: var(--reverse-color);
  }

.thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--border-lightest-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  align-content: center;
}

  .thumb i {
    color: var(--border-color);
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .thumb img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
  }

  .thumb .more-images {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: .9rem;
    line-height: .9rem;
    color: var(--sub-text-color);
    background: var(--color-lightest);
    padding: 5px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    align-content: center;
  }

  .thumb.icon,
  .thumb.icon img {
    border-radius: 0;
    aspect-ratio: auto;
    background: none;
  }

.title-subtitle-thumb {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-column-gap: 15px;
  align-items: center;
}

  .title-subtitle-thumb.big {
    display: flex;
    align-content: space-around;
    justify-content: center;
    align-items: center;
  }

    .title-subtitle-thumb.big .thumb {
      width: 75px;
      height: 75px;
    }

  .title-subtitle-thumb.huge {
    display: flex;
    align-content: space-around;
    justify-content: center;
    align-items: center;
  }

    .title-subtitle-thumb.huge .thumb {
      width: 150px;
      height: 150px;
    }

      .title-subtitle-thumb.huge .thumb .more-images {
        bottom: auto;
        right: 5%;
        top: 8%;
        border: 1px solid var(--border-color);
      }

.title {
  font-weight: 500;
  display: block;
  font-size: 1rem;
  line-height: 1rem;
}

.subtitle {
  font-weight: 300;
  color: var(--sub-text-color);
  display: block;
  margin-top: 5px;
}

  .subtitle a {
    color: var(--link-color) !important;
  }

.user-status-circle {
  background-color: var(--color-success);
  color: var(--color-success-reverse);
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  font: 300 2rem/2rem var(--font-icon);
}

  .user-status-circle.vip::after {
    content: "\f521";
  }

h2.vip {
  color: var(--color-success);
  font-weight: 800;
  margin: 10px 0 0 0;
}

.ajax-star {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 5px 0 0 0;
}

  .ajax-star::after {
    content: "\f005";
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-family: var(--font-icon);
  }

  .ajax-star.empty::after {
    color: var(--color-light);
    opacity: .4;
  }

  .ajax-star.filled::after {
    color: var(--color-star);
  }

  .ajax-star.waiting::after {
    color: var(--color-star);
    opacity: .4;
  }
