.btn {
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  transition: all .1s linear;
  outline: none;
  text-decoration: none;
  display: inline-block;
  margin: 0;

  &.btn-green {
    border-radius: 2px;
    background-color: #70ad4d;
    box-shadow: 0 1px 13px 0 rgba(0, 0, 0, 0.2);
    color: #ffffff;
  }

  &:active {
    top: 1px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
}
