.mdel-fancy-button-holder {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mdel-fancy-button-holder .mdel-fancy-button {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mdel-fancy-button-holder .mdel-button-skin-neon {
  position: relative;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.mdel-fancy-button-holder .mdel-button-skin-neon:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: -1;
  -webkit-filter: blur(17px);
          filter: blur(17px);
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.mdel-fancy-button-holder .mdel-button-skin-neon:hover:before {
  opacity: 1;
}

.mdel-fancy-button-holder .mdel-button-skin-ripple {
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mdel-fancy-button-holder .mdel-button-skin-ripple:after {
  display: none;
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  /* Center the ripple */
  top: 50%;
  left: 50%;
  -webkit-animation: ripple 1s;
          animation: ripple 1s;
  opacity: 0;
}

.mdel-fancy-button-holder .mdel-button-skin-ripple:focus:not(:active):after {
  display: block;
}

.mdel-fancy-button-holder .mdel-button-skin-multigradient {
  background-size: 400%;
}

.mdel-fancy-button-holder .mdel-button-skin-multigradient:hover {
  -webkit-animation: multicolor 8s linear forwards infinite;
          animation: multicolor 8s linear forwards infinite;
}

.mdel-fancy-button-holder .mdel-button-skin-bordertobg {
  border: 3px solid;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.mdel-fancy-button-holder .mdel-button-skin-bordertobg:hover i,
.mdel-fancy-button-holder .mdel-button-skin-bordertobg:hover svg,
.mdel-fancy-button-holder .mdel-button-skin-bordertobg:hover span {
  color: #fff !important;
}

.mdel-fancy-button-holder .mdel-btn-clipbg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
  margin: 0 !important;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-image {
  position: relative;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-image span.mdel-btn-text {
  margin: 0 !important;
  background-size: cover !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  z-index: 10;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-image:hover .mdel-btn-text {
  color: rgba(255, 255, 255, 0.5) !important;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-image:hover .mdel-btn-clipbg {
  opacity: 1;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-gradient {
  position: relative;
  border: 4px solid transparent;
  border-image-slice: 1 !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-gradient span.mdel-btn-text {
  margin: 0 !important;
  background-size: cover !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  z-index: 10;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-gradient:hover .mdel-btn-text {
  color: rgba(255, 255, 255, 0.85) !important;
}

.mdel-fancy-button-holder .mdel-button-skin-cliptobg.mdel-cliptobg-gradient:hover .mdel-btn-clipbg {
  opacity: 1;
}

@-webkit-keyframes multicolor {
  from {
    background-position: 0;
  }
  to {
    background-position: 400%;
  }
}

@keyframes multicolor {
  from {
    background-position: 0;
  }
  to {
    background-position: 400%;
  }
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}
/*# sourceMappingURL=fancy-button.css.map */