@import "../../../variables";
.content-page {
  padding-top: 1em;
  padding-bottom: 6em;
  .icon-header {
    color: $light-theme-text-color;
    display: flex;
    padding-bottom: 3em;
    .cover {
      height: 4em;
      width: 4em;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1em;
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      img {
        width: 2em;
      }
    }
    .title {
      .headline {
        font-size: 2.5em;
        line-height: 1.1;
        margin-bottom: .15em;
      }
      .sub {
        opacity: .9;
        font-size: 0.85em;
        color: $light-theme-text-color;
      }
    }
  }
}

.player--dark,
.v-application.theme--dark {
  .content-page {
    .icon-header {
      color: $dark-theme-text-color;
      .title {
        .sub {
          color: $dark-theme-text-color;
        }
      }
    }
  }
}