.watch {
  &__container {
    border-radius: 0px 0px 4px 4px;
    border: 1px solid $c-grey-3;
    background: $c-black-2;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 13px;
    padding-right: 18px;
  }

  &__hr {
    max-width: 96%;
    height: 1px;
    margin: 0 auto;
    background: #999;
    margin-bottom: 10px;
  }

  &__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
  }

  &__btn {
    max-width: 48%;
    width: 100%;
    padding-left: 10px;
    padding-top: 5px;

    button {
      padding: 4px;
      max-width: 130px;
      width: 100%;
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      border: none;
      color: $c-white;
      border-radius: 2px;
      background: $c-red;
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        margin-right: 4px;
      }
    }
  }

  &__panel {
    max-width: 48%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  &__stat {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 5px;
    margin-bottom: 10px;
  }

  &__like {
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    color: $c-yellow;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  &__dislike {
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    color: $c-white;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  &__line {
    display: flex;
    justify-content: flex-end;
  }

  &__eye {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-white-smoke;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-right: 30px;
  }

  &__description {
    margin-top: -20px;
    p {
      font-size: 15px;
      font-style: normal;
      line-height: normal;
      font-weight: 500;
      color: $c-yellow-2;

      .white {
        font-weight: 900;
        color: $c-white;
      }
    }
  }

  &__tab {
    padding: 0 10px;
  }
}