
.admin-bar{
	display: flex;
	gap: 15px;
	background-color: #338b33;
	text-align: center;
	justify-content: center;
	color: white;
	padding: 3px 15px;
	align-items: center;
}
.admin-bar p{
	margin-bottom: 0px;
	color: white;
	font-size: 14px;
}
.admin-bar .link{
	color: white;
	background-color: rgba(0,0,0,0.1);
	padding: 1px 10px;
	border: 1px solid transparent;
	display: inline-block;
	font-size: 14px;


}
.admin-bar .link:hover{
	border-color: rgba(255,255,255,0.5);
}
.admin-bar .link.logout{
	justify-self: flex-end;
	margin-left: auto;
	background-color: rgba(54,9,9,0.5);
}

.admin-bar .link.logout:hover{
	background-color: rgba(137,24,24,0.8);
}

@media screen and (max-width: 991px){
	.admin-bar{
		padding-top: 10px;
		flex-wrap: wrap;
		gap: 10px;
		padding-bottom: 10px;
	}
}


body:has(.admin-bar) .header-area.style-1 .header-menu-area.sticky_menu{
	margin-top: 0px!important;
}

.quick-action{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50px;
	z-index: 99999999999;

}

.quick-action .sub-actions{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 70px;
	height: 50px;
	position: fixed;
	bottom: 0;
	left: 0;
}


.quick-action .background img{
	width: auto;
	max-width: none;
}
.quick-action .background{
	display: -webkit-box;
	display: flex;
	justify-content: center;
	overflow: hidden !important;	
}
.quick-action .main-action{
	position: fixed;
	bottom: 17px;
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
	z-index: 1;
}

.quick-action .sub-actions a i{
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #292929;
	line-height: 1;
	font-size: 16px;
	color: white;
}

.quick-action .sub-actions a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #292929;
}

.quick-action .main-action a{
	background: #1e9331;
	width: 67px;
	height: 67px;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	border-radius: 100px;
	display: -webkit-box;
	display: flex;
	color: white;

	font-size: 25px;
	line-height: 1;

	box-shadow: 0 0 0 0 rgba(93, 215, 70, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}



@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(93, 215, 70, 0.7);
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(93, 215, 70, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(93, 215, 70, 0);
	}
}




@media screen and (min-width: 769px){
	.quick-action{
		display: none;
		visibility: hidden;
		height: 0px;
		width: 0px;
		opacity: 0px;
		border: none;
		pointer-events: none;
	}
}


form .response-message p{
	margin-top: 15px!important;
	width: 100%!important;
	padding: 10px 15px;
	border-radius: 15px;
}

form .response-message p.success{
	color: #289d47;
	background-color: #ecfff1;
	border: 1px solid #289d47;  
}

form .response-message p.error{
	color: #9d2828;  
	background-color: #fff6f6;
	border: 1px solid #9d2828;  
}