:root {
  --brand:  #1E88E5 ;
  --sub: #20C997;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.btn-07 {
  width: fit-content;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #20C997;
  background-color:  #1E88E5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.icon-wrap-07 {
  width: 40px;
  height: 30px;
  background: linear-gradient(to bottom, #1E88E5, #20C997);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
  color: white;
}

.text-07 {
  height: 100%;
  width: 100%;
  padding: 0px 10px;
  margin: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
}

.btn-07:hover .icon-wrap-07 {
  width: 120px;
  transition-duration: 0.3s;
}

.btn-07:hover .text-07 {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.btn-07:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}
