/**
*
* @package phpBB Extension - PM REG Notify
* @copyright (c) 2016 Stoker
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

@keyframes pound {
	to { transform: scale(1.4); }
}

#pmreginfo {
	z-index:9999;
	position: fixed;
	top: 40px;
    left: 50%;
    width: auto;
	word-break: break-word;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
	text-shadow:0px 0px 0 rgb(150,150,150), 1px 1px 0 rgb(63,63,63),2px 2px 1px rgba(0,0,0,0.8),2px 2px 1px rgba(0,0,0,0.7),0px 0px 1px rgba(0,0,0,0.4);
	border-radius: 15px;
	animation: fadeInpmreg 3s;
	-webkit-animation: fadeInpmreg 3s;
	-moz-animation: fadeInpmreg 3s;
	-o-animation: fadeInpmreg 3s;
	-ms-animation: fadeInpmreg 3s;
}

#notifyinfo {
	z-index:9999;
	position: fixed;
	top: 100px;
    left: 50%;
    width: auto;
	word-break: break-word;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
	color: #ffffff;
	
	
    padding: 8px;
    border: .2em solid #ffffff;
	
	word-break: break-word;
	border-radius: 15px;
	animation: fadeInpmreg 3s;
	-webkit-animation: fadeInpmreg 3s;
	-moz-animation: fadeInpmreg 3s;
	-o-animation: fadeInpmreg 3s;
	-ms-animation: fadeInpmreg 3s;
	background: rgba(0, 0, 0, 0.7);
	filter: alpha(opacity=70);
	list-style: none;
}
#notifyinfo a.dropdown-trigger {
	color: #ffffff;
	font-size: 140%;
	line-height: 2.2em;
	vertical-align: middle;
	font-weight: bold;
	text-align: center;
    text-decoration: none;
	border-radius: 15px;
}

@keyframes fadeInpmreg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeInpmreg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeInpmreg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeInpmreg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeInpmreg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

#pmreginfobar a, #pmreginfobar a:link, #pmreginfobar a:visited, #pmreginfobar a:active {
    color: #ffffff;
	font-size: 140%;
	line-height: 2.2em;
	vertical-align: middle;
	font-weight: bold;
	text-align: center;
    text-decoration: none;
    padding: .5em 0 .5em 0;
    border: .2em solid #ffffff;
	border-radius: 15px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	background: rgba(0, 0, 0, 0.7);
	filter: alpha(opacity=70);
}

#pmreginfobar a:hover {
    color: #ffffff;
	background: rgba(0, 0, 0, 0.5);
	filter: alpha(opacity=50);
	border: .2em solid #ffffff;
	cursor: pointer;
}

.pmregfa {
	font-size: 150%;
	text-shadow:0px 0px 0 rgb(187,187,187),1px 1px 0 rgb(166,166,166),2px 2px 0 rgb(144,144,144),3px 3px 0 rgb(122,122,122), 4px 4px 0 rgb(100,100,100),5px 5px 4px rgba(0,0,0,0.8),5px 5px 1px rgba(0,0,0,0.7),0px 0px 4px rgba(0,0,0,0.4);
	margin-top: -6px;
	margin-bottom: 2px;
	vertical-align: middle;
	-webkit-animation: pound .25s infinite alternate;
	-moz-animation: pound .25s infinite alternate;
	-ms-animation: pound .25s infinite alternate;
	animation: pound .25s infinite alternate;
	transform-origin: center;
}

.pmpmfa {
	font-size: 150%;
	text-shadow:0px 0px 0 rgb(187,187,187),1px 1px 0 rgb(166,166,166),2px 2px 0 rgb(144,144,144),3px 3px 0 rgb(122,122,122), 4px 4px 0 rgb(100,100,100),5px 5px 4px rgba(0,0,0,0.8),5px 5px 1px rgba(0,0,0,0.7),0px 0px 4px rgba(0,0,0,0.4);
	vertical-align: middle;
	margin-top: -10px;
	-webkit-animation: pound .25s infinite alternate;
	-moz-animation: pound .25s infinite alternate;
	-ms-animation: pound .25s infinite alternate;
	animation: pound .25s infinite alternate;
	transform-origin: center;
}

.pmregfaright {
	padding-right: 15px;
}

.pmregfaleft {
	padding-left: 15px;
}

.pmreginfo-avatar img {
	max-height: 30px;
	vertical-align: middle;
	width: auto;
	margin-top: -2px;
}

@media only screen and (max-width: 1100px), only screen and (max-device-width: 1100px) {
	.pmreginfo-avatar img {
	display:none;
	}

	#pmreginfobar a, #pmreginfobar a:link, #pmreginfobar a:visited, #pmreginfobar a:active {
		padding-left: 5px;
		padding-right :5px;
		font-size: 100%;
		border-radius: 10px;
	}
	
	.pmregfaright {
		padding-right: 5px;
	}

	.pmregfaleft {
		padding-left: 5px;
	}
}