.content {
  padding-top: 18px;
  padding-bottom: 18px;

  &__win {
    min-height: 360px;
    height: 70vh;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    background-color: $c-black;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &__play {
    max-width: 300px;
    width: 100%;
    background-color: $c-gray-2;
    padding: 30px 20px 30px 20px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: none;
    min-height: 130px;
    height: 20vh;

    img {
      max-width: 60px;
      object-fit: contain;
    }

    &-text {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      max-width: 100%;
      width: 100%;
      height: max-content;

      p {
        position: absolute;
        top: 100%;
        right: 20px;
        text-align: right;
        color: $c-white;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  }

  &__name {
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: $c-white;
    text-align: center;
    width: 100%;
  }

  &__pay {
    position: absolute;
    top: calc(100% + 10px);
    color: $c-gray;
    right: 15px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  &__date {
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: $c-white;
  }

  &__player {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 3px;
  }

  &__like {
    background: $c-gray-4;
  }

  &__share {

  }
}

.player {
  &__line {
    width: 100%;
    height: 3px;
    background-color: $c-gray-3;
  }

  &__panel {
    display: flex;
    justify-content: space-between;
    padding: 11px 5px;
    align-items: center;
  }

  &__left {
    display: flex;
    color: $c-white;
    align-items: center;
  }

  &__play {
    margin-right: 20px;
  }
  &__voice {
    margin-right: 20px;
  }

  &__time {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.like {
  padding: 10px;
  padding-top: 4px;
  padding-bottom: 7px;

  &__view {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: $c-white;
  }

  &__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  &__stat {
    margin-bottom: 2px;
  }

  &__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  &__win, &__loos {
    color: $c-white;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  &__win {
    margin-right: 10px;
  }

  &__line {
    max-width: 100%;
    width: 100%;
    height: 3px;
    display: flex;
    justify-content: space-between;

    span {
      &:nth-child(1) {
        display: block;
        background: $c-green;
        width: 70%;
        height: 100%;
      }
      &:nth-child(2) {
        display: block;
        background: $c-red;
        width: 30%;
        height: 100%;
      }
    }
  }
}

.share {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: $c-black;
  padding-top: 10px;
  padding-bottom: 10px;

  &__container {
    display: flex;
    align-items: center;
  }

  &__icon {
    margin-right: 5px;
  }
}