@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
/*Btn Style 1*/
.btn-style1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  border-radius: 30px;
  padding: 10px 8px 10px 25px;
  color: #ffffff;
  background: linear-gradient(90deg, #FF7903 0%, #F55CAD 65.38%, #716CEE 100%);
  text-transform: capitalize;
  overflow: hidden;
  z-index: 0;
  transition: all 300ms ease;
}
.btn-style1 .dot-box {
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: relative;
  width: 30px;
  transition: all 300ms ease;
}
.btn-style1 .dot-box .dot-item {
  background-color: #ffffff;
  border-radius: 50%;
  height: 4px;
  width: 4px;
  display: inline-block;
  position: absolute;
  left: calc(50% + 2px);
  top: calc(50% - 2px);
  transition: all 300ms ease;
}
.btn-style1 .dot-box .dot-item:before {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 4px;
  width: 4px;
  transition: all 300ms ease;
}
.btn-style1 .dot-box .dot-item:after {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: -5px;
  bottom: -5px;
  height: 4px;
  width: 4px;
  transition: all 300ms ease;
}
.btn-style1:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 0;
  transform: scale(0, 1);
  transform-origin: top right;
  background: linear-gradient(270deg, #FF7903 0%, #F55CAD 65.38%, #716CEE 100%);
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.btn-style1:hover {
  color: #ffffff;
}
.btn-style1:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.btn-style1:hover .icon {
  background-color: #000000;
  color: #000000;
}
.btn-style1:hover .dot-box {
  color: #000000;
}
.btn-style1:hover .dot-box .dot-item {
  left: calc(50% - 5px);
  top: calc(50% - 2px);
}
.btn-style1:hover .dot-box .dot-item:before {
  left: 5px;
  top: 5px;
}
.btn-style1:hover .dot-box .dot-item:after {
  left: 5px;
  bottom: 5px;
}