.button-add {
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #34974d;
    background-color: #3aa856;
  }
  
  .button-add, .button__icon, .button__text {
    transition: all 0.3s;
  }
  
  .button-add .button__text {
    transform: translateX(30px);
    color: #fff;
    font-weight: 600;
  }
  
  .button-add .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: #34974d;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-add .svg {
    width: 30px;
    stroke: #fff;
  }
  
  .button-add:hover {
    background: #34974d;
  }
  
  .button-add:hover .button__text {
    color: transparent;
  }
  
  .button-add:hover .button__icon {
    width: 148px;
    transform: translateX(0);
  }
  
  .button-add:active .button__icon {
    background-color: #2e8644;
  }
  
  .button-add:active {
    border: 1px solid #2e8644;
  }