/**
*
* @package phpBB Extension - CSS Magic
* @copyright (c) 2018 martin - https://www.martins-play-ground.com & dmzx - https://www.dmzx-web.net
* @license Proprietary/All rights reserved (martins-play-ground.com ownes these files and has the right to disable them)
*
*/

div.profile-status-online, div.profile-status-offline{
	display: inline-block;
	margin-left: 2px;
	width: 5px;
	height: 5px;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
}

div.profile-status-online {
	border-color: #1AA91A;
	background-color: #1AD81A;
        -webkit-animation-name: blinker;
        -webkit-animation-duration: 1s;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-in-out;
        -webkit-animation-direction: alternate;
}

div.profile-status-offline {
	border-color: #ec0a0a;
	background-color: #ec1313;
}

.user_ip {
	text-align: center;
	display: block !important;
        font-size: 1.1em;
}
