@charset 'UTF-8';
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed);
* {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-size: 100%;
}

.tp-popup a:link {
	text-decoration: none;
}

.tp-icon {
	font-family: FontAwesome;
	display: inline-block;
	margin-right: .35em;
}

.tp-popup-username {
	position: relative;
	display: block;
	top: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.0em;
	padding: .25em .25em 0;
	color:white;
	margin-left: 18px;
}

.tp-popup-avatar {
	position: relative;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin-top: 20%;
	margin-left: 7px;
	box-shadow: 1px 2px 1px 2px rgba(0, 0, 0, .2);
}

.tp-popup-msg {
	position: relative;
	padding: 0 10px 0 5px;
	text-align: left;
	display: block;
	margin-left: 18px;
	line-height: 1.5em;
	color:white;
}

.left-row {
	position: absolute;
	display: inline-block;
	left: 0;
	height: 100%;
	vertical-align: top;
}

.right-row {
	position: relative;
	top: -1px;
	left: 80px;
	width: 70%;
	padding-top: 5px;
	vertical-align: top;
}

.tp-popup-close {
	position: absolute;
	display: block;
	top: 5px;
	right: 5px;
	z-index: 10;
	font-size: 1.35em;
	color: #666;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.tp-popup-close:hover {
	color: #0094FF;
}

.tp-popup-close:active {
	color: #333;
}

p {
	font-family: 'Roboto Condensed', sans-serif;

	
}

.tp-popup {
	position: relative;
	display: block;
	background-color: #96327d;
	min-width: 250px;
	max-width: 320px;
	min-height: 105px;
	border-radius: 10px;
	box-shadow: 2px 1px 1px 1px rgba(0, 0, 0, .0750);
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin: 25px 5px;
	overflow: hidden;
}

.tp-popup:hover {
	background-color:#1f1a1ae6;
}

.tp-popup-wrapper {
	position: fixed;
	top: 470px;
	left: 50px;
	z-index: 10000;
}

@media only screen and (max-width:760px),
(min-device-width:768px) and (max-device-width:1024px) {
	.tp-popup-avatar {
		width: 60px;
		height: 60px;
		margin-top: 15px;
		margin-left: 20px;
	}
	.tp-popup-msg,
	.tp-popup-username {
		font-size: 100%;
	}
	.left-row,
	.right-row {
		display: block;
	}
}