/**
* @package widget-studio-for-elementor
*/

/* Register Form Start */
.wsfe-register-form p {
	margin: 0 !important;
}

.wsfe-register-form input {
    width: 100% !important;
}

.wsfe-register-form .wsfe_submit_btn {
    display: flex;
}

.wsfe-register-form button {
    cursor: pointer;
}

.wsfe-register-form .wsfe_spinner {
  animation: rotate 2s linear infinite;
  width: 15px;
  height: 15px;
  & .path {
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
  }
  
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Register Form End */

/* Picture Scroller Start */

.wsfe-picture-scroll-wrapper {
  width: 100%;             
}

.wsfe-picture-scroll-image{
  width: 100%;
  background-position: top center !important;
  background-size: cover !important;
}

.wsfe-picture-scroll-wrapper .wsfe-picture-scroll-image:hover {
  background-position: bottom center !important;
}

/* Picture Scroller End */

/* Back To Top Start */
.widget-studio-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 999999;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.widget-studio-back-to-top svg{
    width: 100%;
    height: 100%;
}

.wsfe_back_to_top_editor.widget-studio-back-to-top {
    display: block;
}

.widget-studio-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Back To Top End */

/* Shadow Heading Start */

.shadow-heading {
  display: block;
}

.heading-element{
  position: relative;
  display: inline-block;
}

.shadow-heading .background-text {
  font-size: 100px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 8px;
}
.shadow-heading .front-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 600;
  white-space: nowrap;
}

/* Shadow Heading End */