:root {
    --swiper-pagination-bullet-horizontal-gap: 2px;
    --swiper-navigation-size: 18px;
    --wp--preset--font-size--small: 14px;
}
:target {
    scroll-margin-top: 110px;
}

.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}
.elementor-widget-text-editor a {
    color: inherit
}
.elementor-button-icon svg {
    width: auto;
}
.elementor-button-icon+.elementor-button-text {
	line-height: normal;
}
.she-header {
    -webkit-box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
}

.mega-menu .current {
	color: var(--n-menu-title-color-active) !important;
}

.elementor-button {
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.elementor-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1;
}
.elementor-button:hover::after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.rotating-text {
  transform-origin: center;
  animation: rotateText 10s linear infinite;
}

.user-registration {
	border: 0 !important;
	border-radius: 3px !important;
	font-family: var(--e-global-typography-text-font-family);
	font-size: var(--e-global-typography-text-font-size);
	color: #151515;
}
.user-registration #ur-frontend-form,
.user-registration#user-registration-form-2160 {
	background: #FFFAEF !important;
	padding: 20px;	
}
.user-registration .user-registration-login-title,
.user-registration#user-registration-form-2160 .user-registration-login-title {
	text-transform: uppercase;
}
.user-registration div[data-field="login-title"],
#user-registration-form-2160 {
	border-bottom: 2px solid #D6D6D6;
	margin-bottom: 20px;
}
.user-registration .user-registration-form-row label,
.user-registration#user-registration-form-2160 .form-row label {
	font-size: 16px !important;
	color: #151515 !important;
}
.user-registration .user-registration-form-row input,
.user-registration#user-registration-form-2160 .form-row input,
.user-registration #ur-frontend-form input:not([type="submit"]) {
	min-height: 46px !important;
	border-color: rgba(28, 55, 90, 0.08) !important;
	background-color: #fff !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
}
.user-registration .user-registration-form-row input:focus,
.user-registration#user-registration-form-2160 .form-row input:focus,
.user-registration #ur-frontend-form input:not([type="submit"]):focus {
	border-color: rgba(28, 55, 90, 1) !important;
	
}
.user-registration#user-registration-form-2160 .ur-button-container {
	width: 100% !important;
}
.user-registration .user-registration-Button,
.user-registration#user-registration-form-2160 .ur-submit-button {
	display: block;
	text-transform: uppercase;
	width: 100%;
}
.user-registration a:hover {
	color: var(--e-global-color-accent) !important;
}

.user-registration input[type="submit"] {
	background-color: var(--e-global-color-accent) !important;
}

.saap-country-field {
    display: grid;
    gap: 10px;
    width: 100%;
}

.saap-country-other {
    display: none;
}

#search-form:not(.show) {
    display: block;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
#search-form.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

@-webkit-keyframes btn_shine {
  100% {
    left: 200%;
  }
}
@keyframes btn_shine {
  100% {
    left: 200%;
  }
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
@keyframes rippleEffect2 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes imgUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes imgDownUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}
 
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}