:root {
  --e-global-color-primary: #ba6827;
  --e-global-color-secondary: #5b3516;
  --e-global-color-text: #797979;
  --e-global-color-accent: #FFD012;
  --e-global-color-white: #fff;
  --e-global-typography-primary-font-family: 'Outfit', sans-serif;
  --e-global-typography-secondary-font-family: 'Outfit', sans-serif;
  --transition: all .4s ease;
  --wpte-primary-color: var(--e-global-color-primary);
  --primary-color: var(--e-global-color-primary);
  --wpte-primary-color-rgb: var(--e-global-color-primary);
  --primary-color-rgb: var(--e-global-color-primary);
}

.elementor-button {
  transition: 800ms !important;
}

.react_button {
  background: var(--e-global-color-primary);
  overflow: hidden;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 15px 27px;
  border-radius: 15px;
  transition: 800ms;
}
@media (max-width: 767px) {
  .react_button {
    padding: 12px 20px;
  }
}
.react_button .rt-btn-text-wrap {
  transition: 800ms;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--e-global-color-white);
}
.react_button .rt-btn-text-wrap.rt-btn-dir-left {
  flex-direction: row-reverse;
}
.react_button .rt-btn-text-wrap svg {
  transition: 800ms;
}
.react_button::before {
  content: "";
  position: absolute;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #F2F2F2;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.react_button.button-stretch {
  width: 100%;
}
.react_button:hover {
  background: #F2F2F2;
}
.react_button:hover .rt-btn-text-wrap {
  color: var(--e-global-color-primary);
}
.react_button:hover::before {
  top: -40%;
}/*# sourceMappingURL=button.css.map */