/* animated Success */
.checkmark-green__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #24cff5;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-green {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #24cff5;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #24cff5;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-green__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}
/* END animated success */


/* Vertical progress step */
.stepProgressWrapper {
  /* width: 330px; */
  font-family: 'roboto';
  font-size: 14px;
}
.StepProgress {
  position: relative;
  padding-left: 45px;
  list-style: none;
  counter-reset: progress;
}
.StepProgress::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 10px;
  height: 100%;
  border-left: 2px solid #CCC;
}
.StepProgress-item {
  position: relative;
  counter-increment: none;
  font-weight: normal;
}
.StepProgress-item:not(:last-child) {
  padding-bottom: 20px;
}
.StepProgress-item::before {
  display: inline-block;
  content: '';
  position: absolute;
  left: 30px;
  height: 100%;
  width: 10px;
}
.StepProgress-item::after {
  content: '';
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 0;
  left: -37px;
  width: 15px;
  height: 15px;
  border: 2px solid #24cff5;
  border-radius: 50%;
  background-color: #24cff5;
  /* content: counters(progress,".") " "; */
  color:#fff;
}
.StepProgress strong {
  display: block;
  font-weight: normal;
}
/* END Vertical progress step */

/* scroll menu */
.scrollmenu {
  overflow: auto;
  white-space: nowrap !important;
}.scrollmenu::-webkit-scrollbar {
  display: none;
} 

.scrollmenu .s-m-item {
  display: inline-block !important;
  margin-left: 4px;
}


/* ========== */
@keyframes fast-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.fast-rotate {
  animation: fast-rotate 1.5s infinite linear;
}

.site-loader-icon{
  background: #24cff5;
  height: 50px;
  text-align: center;
  transform:rotate(45deg);
	width:50px;
  border-radius: 8px;
  padding: 14px 12px 10px 12px;
}
.site-loader-icon-inner{
  height: 30px; width: 30px;
  margin: auto;
}

/* ====================================== */
/* step progress bar*/
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 13px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 13px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #24cff5 ;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #24cff5 ;
  width: 100%;
  top: 13px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

/* ================================== */
/* .cool-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
} */

.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #24cff5;
  transition: width .3s;
}

.cool-link:hover::after {
  width: 100%;
  transition: width .3s;
}

/* vertical carousel */
.vert .carousel-item-next.carousel-item-left,
.vert .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.vert .carousel-item-next,
.vert .active.carousel-item-right {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100% 0);
}

.vert .carousel-item-prev,
.vert .active.carousel-item-left {
-webkit-transform: translate3d(0,-100%, 0);
        transform: translate3d(0,-100%, 0);
}
/* END */

.curve-top{
  border-radius: 20px 20px 0px 0px;
}



/* formal yellow  #e3ac3b */