





/* Continusly rotate */



@keyframes animation-1 {

  0% {

    transform: rotate(360deg);

  }

  100% {

    transform: rotate(0deg);

  }

}



.animation-1 {

  animation: animation-1 20s linear infinite;

}



/*-----------------------------------------------------*/



@keyframes animation-2 {

  0% {

    transform: rotate(360deg);

  }

  100% {

    transform: rotate(0deg);

  }

}



.animation-2 {

  animation: animation-1 40s linear infinite;

}



/*------------------------------------------------------*/

  

.ripple-effect {

  position: relative;

  display: flex;

  flex-direction: row;

  justify-content: center;

  align-items: center;

  height: 150px;

  width: 150px;

  border-radius: 100%;

  background: #ffffff;

  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);

}

.request-loader span {

  position: relative;

  font-size: 72px;

  top: 5px;

  left: -5px;

}

.ripple-effect{ position: relative; z-index: 9; }

.ripple-effect::after {

  opacity: 0;

  display: flex;

  flex-direction: row;

  justify-content: center;

  align-items: center;

  position: absolute;

  top: 0px;

  left: 0px;

  right: 0;

  bottom: 0;

  content: "";

  height: 100%;

  width: 100%;

  border: 4px solid rgba(0, 0, 0, 0.2);

  border-color: #945c87;

  border-radius: 100%;

  -webkit-animation-name: ripple;

          animation-name: ripple;

  -webkit-animation-duration: 3s;

          animation-duration: 3s;

  -webkit-animation-delay: 0s;

          animation-delay: 0s;

  -webkit-animation-iteration-count: infinite;

          animation-iteration-count: infinite;

  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);

          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);

  z-index: -9;



}

.ripple-effect::before {

  opacity: 0;

  display: flex;

  flex-direction: row;

  justify-content: center;

  align-items: center;

  position: absolute;

  top: 0px;

  left: 0px;

  right: 0;

  bottom: 0;

  content: "";

  height: 100%;

  width: 100%;

  border: 4px solid rgba(0, 0, 0, 0.2);

  border-color: #945c87;

  border-radius: 100%;

  -webkit-animation-name: ripple;

          animation-name: ripple;

  -webkit-animation-duration: 3s;

          animation-duration: 3s;

  -webkit-animation-delay: 0.5s;

          animation-delay: 0.5s;

  -webkit-animation-iteration-count: infinite;

          animation-iteration-count: infinite;

  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);

          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);

  z-index: -9;

}



@-webkit-keyframes ripple {

  from {

    opacity: 1;

    transform: scale3d(0.75, 0.75, 1);

  }

  to {

    opacity: 0;

    transform: scale3d(1.5, 1.5, 1);

  }

}



@keyframes ripple {

  from {

    opacity: 1;

    transform: scale3d(0.75, 0.75, 1);

  }

  to {

    opacity: 0;

    transform: scale3d(1.5, 1.5, 1);

  }

}

/* --------------------------------------------------------- */
 

.btn-dc:before,
.btn-dc:after {
  z-index: -1;  box-sizing: border-box;
  transition: 0.3s ease-in-out;
}

.btn-dc {
  color: #fff; background-color: #f89824; position: relative;overflow: hidden;display: inline-block; padding: 12px 30px; border-radius: 4px; text-transform: uppercase;
}
.btn-dc:before, .btn-dc:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.btn-dc:before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #f89e32;
  transform: translateX(-100%);
}
.btn-dc:after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #f78f13;
  transform: translateX(100%);
}
.btn-dc:hover {
  background-color: transparent; color:#fff;
}
.btn-dc:hover:before {
  transform: translateX(-49%);
}
.btn-dc:hover:after {
  transform: translateX(49%);
}