.clean_btn {
    position: relative;
    width: 150px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 0;
    border: 1px solid #cc0000;
    background: linear-gradient(180deg, #ec5d5d 0%, #e82b2b 50%, #b50a0a 100%) !important;
    overflow: hidden;
}

.clean_btn, .clean_btn__icon, .clean_btn__text {
  transition: all 0.3s;
}

.clean_btn .clean_btn__text {
  transform: translateX(35px);
  color: #fff;
  font-weight: 600;
}

.clean_btn .clean_btn__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: linear-gradient(180deg, #e64b4b 0%, #de2020 50%, #cc0000  100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean_btn .svg {
  width: 20px;
}

.clean_btn:hover {
  background: #cc0000;
}

.clean_btn:hover .clean_btn__text {
  color: transparent;
}

.clean_btn:hover .clean_btn__icon {
  width: 148px;
  transform: translateX(0);
}

.clean_btn:active .clean_btn__icon {
  background-color: #b20000;
}

.clean_btn:active {
  border: 1px solid #b20000;
}