.ast-custom-button,
.ast-button,
.ast-builder-button-1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(180deg, #f69322 0%, #37200b 100%);
}

/* animated background layer */
.ast-custom-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #100c0a;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
  z-index: -1;
}

/* hover animation */
.ast-custom-button:hover::after {
  transform: scaleY(1);
}

.ast-custom-button:hover {
  border: 1px solid #fff!important;
}

/* star icon */
.ast-custom-button::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../icons/button-star.svg") no-repeat center;
  background-size: contain;
}