#ticket_assignment_widget {
	background: #fff;
	padding: 1rem;
	box-sizing: border-box;
	margin: 2rem 0;
	border: 1px solid #5c6873;
}
.ticket_header {
	font-weight: bold;
	font-size: 1.2rem;
}
.ticket_quantity, .colour  {
	font-size: 1.2rem;
	color:#774896;
}

.ticket_detail span {
	display: inline-block;
    width: 25%;
    vertical-align: middle;
    font-size: 1.1rem;
    text-align: center;
    margin: .5rem 0;
}
.ticket_controls {
display: -webkit-flex;
display: flex;
align-items: center;
-webkit-align-items: center;
}
.ticket_controls a {
	padding: 1rem;
	text-align: center;
	background: #4eabe6;
	color: #fff;
	margin: 0 auto;
	border-radius: 4rem;
	font-weight: bold;
	border:2px solid #4eabe6;
	text-decoration:none;
}
.ticket_controls a:hover {
   background:#fff; 
   color:#4eabe6;
}
.ticket_detail .delimiter {
	padding: .5rem 0; 
	display:none;
}

@media (max-width:610px) {
    .ticket_controls {
        flex-direction:column;
    }
    .ticket_detail {
	padding: 0 0rem;
    } 
    .ticket_detail span {
        width:30%;
    }
    .ticket_controls a {
        margin:.5rem auto;
    }
}