
/* Auto-Scrolling Logo Slider Carousel */
.swiper-wrapper {
	transition-timing-function: linear !important; 
}

/* go-back to previous screen button */
.back-button {
	background-color: #1257D4;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02rem;
	color: #FFFFFF;
}

/* Zoom In an image when hovering over */
.imagehover {
  transition: all 0.3s ease-in-out;
}

.imagehover:hover
{
  transform: scale(1.3);
}

/* promotion image with pulse animation */
.pulse-image {
	box-shadow: 0 0 0 rgba(255, 255, 255, 0.9);
	animation: pulse 2s infinite;
}

.pulse-image:hover {
	animation: none;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	}

	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	}

	70% {
		-moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 25544, 0);
	}

	100% {
		-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

/* CSS - Forgot your password? */
.elementor-kit-5 a {
  color: #81A3E8 !important;
}

/* Hide "Forgot password" */
a.wpsc-link.wpsc-forgot-password {
	display: none !important;
}

/* Hide logout button support candy */
.wpsc-tickets-nav.log-out {
	display: none !important;
}

/* Hide link from Wordpress Admin Bar */
/*right side*/
span.display-name.edit-profile {
  display: none !important;
}
#scebtbar>#nappstoolbar>#nappsadmin-bar-top-secondary>#nappsadmin-bar-search #adminbarsearch input.adminbar-input {
	display: none !important;
}
/*left side*/
#scebtbar #nappsadmin-bar-site-name a.ab-item, #scebtbar #nappsadmin-bar-nappslogo>.ab-item, #scebtbar #nappsadmin-bar-nappslogo>.ab-item .ab-icon {
  display: none !important;
}

/* To hide a div element with the class post-tags */
.post-tags {
  display: none;
}

/* Change style of the back button */
[type=button], [type=submit], button {
    background-color: #1257D4 !important;
    border: 1px solid #1257D4 !important;
    border-radius: 0px !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #002F83 !important;
}