:root {
/* colors  */
  --bg-one: #35745F;
  --bg-two: #8DD5BD;
  --bg-three: #35745F;
  --btn-width: fit-content;
  --btn-color: #ccc;
  --btn-color-dark: #666;
}

.elementor-widget-button {
  
}

.btn-flash {
  width: var(--btn-width);
}

.wsf-form button.wsf-button.wsf-button-primary {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  border: 0;
}

.btn-flash a, .wsf-form button.wsf-button.wsf-button-primary {
  background-image: linear-gradient(to right, var(--bg-one) 0%, var(--bg-two) 51%, var(--bg-three) 100%);
  background-size: 200% auto;
  background-position: left top;
  border-color: transparent;
  color: #fff!important;
  transition: all 0.3s ease-in-out;
}
.btn-flash a:hover, .wsf-form button.wsf-button.wsf-button-primary:hover {
    background-position: right bottom;
    color: #fff;

}






@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

.btn-11 a {
  position: relative;
  color: var(--btn-color);
}
.btn-11 a:before, .btn-11:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--btn-color);/*#012151;*/
  border-radius: 50%;
}
.btn-11 a:before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.btn-11 a:after {
  right: -20px;
  transform: translate(50%, -50%);
}
.btn-11 a:hover {
  color: #c0c8d4;
}
.btn-11 a:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
          animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.btn-11 a:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
          animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}