.player {
  &__title {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-yellow;
    padding: 18px 10px 25px;

    &.def {
      display: block;
    }

    &.agree {
      display: none;
    }

    @media (min-width: 468px) {
      border-left: 2px solid $c-yellow;
      text-align: left;
      padding-top: 10px;
      padding-bottom: 10px;
      margin: 10px 0;
      font-weight: 700;
    }
  }

  &__breadcrumbs {
    display: none;
    align-items: center;
    color: white;
    margin: 10px 0;
    
    @media (min-width: 470px) {
      display: flex;
    }

    img {
      width: 13px;
      object-fit: contain;
      display: block;
    }
    span {
      margin-left: 5px;
      font-size: 10px;
    }
  }

  &__container {
    border-bottom: 3px solid #222; background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    //margin-bottom: 6px;
  }

  &__titleImg {
    display: block;
    object-fit: contain;
    width: 100%;
    padding-bottom: 29px;
  }

  &__btn {
    position: absolute;
    bottom: 0;
    max-width: 290px;
    width: 100%;
    transition: opacity .3s ease-in-out;

    @media (min-width: 470px) {
      max-width: 400px;
      bottom: calc(50% - 115px);
    }

    &.def {
      display: block;
    }

    &.agree {
      display: none;
      transition: opacity 1s ease-in-out;
      opacity: 0;
    }

    &.opacity {
      opacity: 1;
    }

    &Bg {
      background: $c-black-o7;
      color: $c-white;
      padding: 65px 10px 44px;
      cursor: pointer;
      user-select: none;
      
      @media (min-width: 470px) {
        min-height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      &.agree {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 53px;

        p {
          margin-right: 30px;
        }
      }
    }

    &Title {
      color: $c-white;
      text-align: center;
      font-size: 26px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }

    &Desc {
      color: $c-white;
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }

    &__pay {
      padding: 5px 0;
      text-align: right;
      font-size: 17px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      color: $c-white-smoke;
    }
  }
}