/*put your custom css here*/
.stock-detail{
	border:1px solid #ccc; 
	border-radius:5px; 
	padding:.75em 1.25em;
	display:flex;
	display:-moz-flex;
	display:-webkit-flex;
	justify-content:space-between;
	align-items:center;
	flex-direction:row;
	background:#fff;
	position:relative;
	margin-bottom:.5em;
}

.stock-detail p{
	margin:0;
}

.stock-badge{
	display:inline-block;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	border-radius:10px;
	font-size:12px;
	position:absolute;
	z-index:2;
	margin-top:12px;
}

.stock-detail.is-void{
	opacity:.5;
}
.stock-detail.is-plus{
	background:rgba(113, 192, 22, .15);
}
.stock-detail.is-minus{
	background:rgba(255, 71, 71, .15);
}

.stock-badge.danger{
	background:#d00;
	color:#fff;
}
.stock-badge.success{
	background:#71c016;
	color:#fff;
}

.left-panel .left-inner{
	padding-left:3em;
}


.stock-detail .left-panel{
	width:25%;
}
.stock-detail .center-panel{
	width:35%;
}
.stock-detail .right-panel{
	width:20%;
}
@media (max-width:991px){
	.stock-detail{
		flex-flow:column;
	}
	.stock-detail > div{
		width:100%!important;
	}
}

#swift-contact{
	position:fixed;
	bottom:0;
	right:0;
	padding:0 1em 1em 0;
	z-index:1001;
}

.swift-contact-button{
	width:60px;
	height:60px;
	border-radius:50%;
	line-height: 60px;
	text-align:center;
	background:#128C7E;
	color:#fff;
	font-size:25px;
	display:block;
	opacity:.85;
	transition:.3s ease;
	-moz-transition:.3s ease;
	-o-transition:.3s ease;
	-webkit-transition:.3s ease;
	-ms-transition:.3s ease;
}
.swift-contact-button:hover{
	background:#fff;
	color:#128C7E;
	box-shadow:0px 0px 10px #aaa;
	-moz-box-shadow:0px 0px 10px #aaa;
}