
/* always show scrollbar to avoid flicking due to scrollbar status toggle */
html {
	overflow: -moz-scrollbars-vertical; 
    overflow-y: scroll;
}	

.list-group-item img {
    max-width: 100px;
    max-height: 80px;
    margin-right: 10px;
}

.list-group-item small {
    min-width: 80px;
}

.ms-configurator-btn {
    top: 60px !important;
    right: 20px !important;
}

.glowing-text {
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
  	color: #ff0;
    text-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #e60073, 0 0 40px #e60073;
  }
  to {
  	color: #fff;
    text-shadow: 0 0 20px #f00, 0 0 30px #f00, 0 0 40px #ff4da6, 0 0 50px #ff4da6;
  }
}