
@keyframes pulseShadow {
	0% {
		text-shadow: 0px 0px 1px #FF8040;
	}
	50% {
		text-shadow: 0px 0px 10px #FF8040;
	}
	100% {
		text-shadow: 0px 0px 1px #FF8040;
	}
}

.pulseShadow {
	animation: pulseShadow 3s infinite;
}

:root {
	--white: #ffffff;
	--blue: #C1144C;
	--orange: #FF6D4F;
	--yellow: #FFFBA8;
	--black: #000000;
	--gray: #808080;
	--silver: #c0c0c0;
	--whitesmoke: #ededed;
	--page: #F8F8F8;
	--purple: #C70039;
	--green: #2BBB68;
	--red: #EF3F43;
}

.userIcon {

	width: 90px;
	height:90px;
	display:block;
	margin:auto;
	border-radius: 100%;
	border: solid 1px  var(--silver);
	background-color: var(--white);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	outline: none;
}

nav a.active {
	background: #EDEDED;
}

/*.card .icon {
	width:100px;
	height:100px;
	display:block;
	background-color: var(--silver);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}*/

list .card div {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

@media only screen and (max-width : 800px) {


}







