.button {
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #be5727;
    background-color: #DB5C23 !important;
  }
  
.button, .button__icon, .button__text {
  transition: all 0.3s;
}

.button .button__text {
  transform: translateX(30px);
  color: #fff;
  font-weight: 600;
}

.button .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #be5727;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.button .svg {
    width: 30px;
    stroke: #fff;
}
  
.button:hover {
    background: #be5727;
}

.button:hover .button__text {
  color: transparent;
}

.button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.button:active .button__icon {
  background-color: #be5727;
}

.button:active {
  border: 1px solid #be5727;
}