.theme-btn {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transition: all 300ms ease;
}
.theme-btn .btn-title {
  position: relative;
  display: flex;
  align-items: center;
}

/*Btn Style 3*/
.btn-style3 {
  background-color: var(--theme-color2);
  border: 1px solid rgba(248, 248, 248, 0.2);
  border-radius: 60px;
  color: var(--text-color-bg-theme-color2);
  overflow: hidden;
  padding: 4px 5.5px;
  padding-right: 27px;
  position: relative;
}
.btn-style3 .icon {
  align-items: center;
  background-color: var(--theme-color1);
  color: var(--text-color-bg-theme-color1);
  border-radius: 50%;
  display: flex;
  height: 45px;
  justify-content: center;
  overflow: hidden;
  width: 45px;
  z-index: 1;
  transition: all 400ms ease;
}
.btn-style3 .icon svg {
  fill: var(--text-color-bg-theme-color1);
}
.btn-style3 .icon i,
.btn-style3 .icon svg {
  transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 10px;
}
.btn-style3 .icon i:first-child,
.btn-style3 .icon svg:first-child {
  transform: translateX(5px);
  transition-delay: 0s;
}
.btn-style3 .icon i:last-child,
.btn-style3 .icon svg:last-child {
  transform: translateX(-100px);
  transition-delay: 0s;
}
.btn-style3:before {
  background-color: var(--theme-color1);
  bottom: 10px;
  border-radius: 50px;
  content: "";
  height: 45px;
  left: 5.5px;
  position: absolute;
  right: 5.5px;
  top: 4px;
  width: 45px;
  z-index: 0;
  transition: all 400ms ease;
}
.btn-style3:hover {
  color: var(--text-color-bg-theme-color1);
}
.btn-style3:hover i:first-child,
.btn-style3:hover svg:first-child {
  transform: translateX(200px);
  transition-delay: 0s;
}
.btn-style3:hover i:last-child,
.btn-style3:hover svg:last-child {
  transform: translateX(0);
  transition-delay: 0.1s;
}
.btn-style3:hover:before {
  left: 11px;
  width: calc(100% - 16px);
}