/* Plugin front-end CSS */

@import "fontawesome.css"; 

*, ::after, ::before {
    box-sizing: inherit;
}

.lock-staging.locked-notice-bar{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0;
	z-index: 99999999999;
}

.lock-staging.locked-notice-bar .container {
	text-align: center;
	margin: 35px 50px 10px;
	padding: 10px;
	background: #E04744;
	
	-webkit-box-shadow: 0px 8px 16px 3px rgba(0,0,0,0.3);
		 -moz-box-shadow: 0px 8px 16px 3px rgba(0,0,0,0.3);
		 			box-shadow: 0px 8px 16px 3px rgba(0,0,0,0.3);
	-webkit-border-radius: 5px;
		 -moz-border-radius: 5px;
		 			border-radius: 5px;
}

.lock-staging.locked-notice-bar .container .circle {
	background: #FFF;
	padding: 5px;
	width: 35px;
	height: 35px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.lock-staging.locked-notice-bar .container i {
	display: inline-block;
	color: #E04744;
	font-size: 21px;
	line-height: 25px;
}

.lock-staging.locked-notice-bar .container i {
	-webkit-animation: heart-beats 3s infinite;
	animation: heart-beats 3s infinite;
	transform-origin: center;
}

@keyframes heart-beats {
  0%	 { font-size: scale(1);}
  7%   { transform: scale(1.2); }
  12%  { transform: scale(1.1); }
  20%  { transform: scale(1.3); }
  60%  { transform: scale(1); } 
  100% { transform: scale(0.99); }
}

@-webkit-keyframes heart-beats {
  0%   { -webkit-transform: scale(1); }
  7%   { -webkit-transform: scale(1.2); }
  12%  { -webkit-transform: scale(1.1); }
  20%  { -webkit-transform: scale(1.3); }
  60%  { -webkit-transform: scale(1); }
  100% { -webkit-transform: scale(0.99); }
}

.lock-staging.locked-notice-bar .container p{
	font-size: 16px;
	color: white;
	display: inline-block;
	text-shadow: 1px 1px #bd3a37;
	font-family: Arial, sans-serif;
	font-weight: 400;
	    -webkit-font-smoothing: antialiased;
	    line-height: 1;
	    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}


.login-action-login .lock-staging.locked-notice-bar .container .circle {
	padding: 0;
}

.login-action-login .lock-staging.locked-notice-bar .container i {
	line-height: 32px;
}