.app-card {
  & {
    text-align: center;
    width: 215px;
    height: 261px;
    margin: 0 10px 20px 10px;
    padding: 20px;
    display: inline-block;
    position: relative;
    background-color: white;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.1);
    border-radius: 2px 2px 2px 2px;
    cursor: pointer;

    @include responsive-to('tablet') {
      width: 215px;
    }
    @include responsive-to('mobile') {
      width: 100%;
      height: auto;
      margin: 0 0 20px 0;
      display: table;

      &__feedback {
        text-align: left;
        display: table-cell;
        vertical-align: middle;
      }
      &__message {
        i:before {
          margin-left: 0;
        }
      }
    }
  }

  &:hover{
    i.circle-icon {
      background: $dark-grey;
      &:before {
        content: '\E809';
        color: white;
      }
    }
  }

  h6 {
    margin-top: 20px;
    @include responsive-to('mobile') {
      margin-top: inherit;
    }
  }

  hr{
    margin-top: 0;
  }

  &__wrapper {
    display: table;
    width: 100%;
    height: 180px;
    @include responsive-to('mobile') {
      width: auto;
      height: auto;
      display: table-cell;
      vertical-align: middle;
      width: 74px;
    }
  }

  &__content {
    display: table-cell;
    vertical-align: middle;

    i.circle-icon {
      font-size: 46px;
      @include responsive-to('mobile') {
        font-size: 30px;
        width: 54px;
        height: 54px;
      }
    }
  }

  &__message {
    font-size: 12px;
    line-height: 20px;
    i{
      &:before {
        vertical-align: middle;
        font-size: 17px;
      }
    }
  }

  &__triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 0 40px;
    border-color: transparent transparent transparent #efefef;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #efefef;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    position: absolute;
    top: 0;
    right: 0;
    @include responsive-to('mobile') {
      border-width: 29px 0 0 29px;
    }
  }
}
