.view-btn {
  background: linear-gradient(90deg, #833ab4 0%, #2badc9 0%, #9757a3 100%);
  text-align: center;
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}

.view-btn:before {
    content: "";
    position: absolute;
    top: 45%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.view-btn:after {
    content: '';
    height: 100%;
    width: 0;
    vertical-align: middle;
    display: inline-block;
}

.info-btn {
  background: #fff;
  text-align: center;
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
}

.info-btn:before {
    content: "";
    position: absolute;
    top: 45%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.info-btn:after {
    content: '';
    height: 100%;
    width: 0;
    vertical-align: middle;
    display: inline-block;
}