.content {
  width: 100%;

  .content__title {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    color: #e8e8e8;
    text-align: center;
    background-color: #212125;
    padding: 5px;
  }

  .player {
    position: relative;
    margin: 0 auto;
    height: 290px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .75);
    background: #000 url(../img/bg.png) no-repeat center;
    background-size: cover;
  }

  .rate {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background: #111;
    .row {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: 20px;
      img.model {
        width: 100%;
        max-width: 200px;
      }
      .rate-block {
        font-size: 15px;
        color: #222;
        gap: 10px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        .dload-icon {
          border: 1px solid #c7cdd4;
          border-radius: 50%;
          height: 3rem;
          text-align: center;
          width: 3rem;
          box-sizing: border-box;
          padding: 8px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          &.green {
            background-color: #7DB626;
          }
          &.red {
            background-color: #CD3560;
          }
          img {
            width: 100%;
            display: block;
            position: relative;
            height: auto;
          }
        }
      }

    }

    .tabs {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;

      .tabs__item {
        padding: 10px;
        width: auto;
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        &.active {
          border-bottom: 2px solid #EC5F56;
        }
      }
    }


    .more {

    }
  }

}
