div.seatCharts-container {
	min-width: 100%;
	/*justify-content: center!important;*/
}
div.seatCharts-cell {
	height: 30px;
	min-width: 30px;
	margin: 6px;
	outline: none;
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
}
div.seatCharts-seat {
	background-color: #ed4a4b;
	color: white;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	position: relative;
}
div.seatCharts-seat:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
div.seatCharts-seat:before {
	speak: none;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
}
.seatCharts-seat.effect-1 {
	background: rgba(255, 255, 255, 0.1);
	-webkit-transition: background 0.3s, color 0.3s;
	-moz-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s;
}
.seatCharts-seat.effect-1:after {
	top: -3px;
	left: -3px;
	padding: 3px;
	box-shadow: 0 0 0 2px #ed4a4b;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0;
}
.seatCharts-seat.effect-1.sub-a:hover {
	background: #ed4a4b;
	color: rgba(255, 255, 255, 1);
}

.seatCharts-seat.effect-1.sub-a:hover i {
	color: #ed4a4b;
}
.seatCharts-seat.effect-1.sub-a:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

div.seatCharts-seat:focus {
	border: none;
}
/*
.seatCharts-seat:focus {
	outline: none;
}
*/

div.seatCharts-space {
	background-color: transparent;
	font-weight: bold;
}
div.seatCharts-row {
	width: max-content;
	margin-left: auto;
	margin-right: auto;
}

div.seatCharts-row:after {
	clear: both;
}

div.seatCharts-seat.effect-1.sub-a.selected {
    background: #ed4a4b;
    -webkit-transition: background 0.3s, color 0.3s;
    -moz-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

div.seatCharts-seat.effect-1.sub-a.selected:after {
    top: -3px;
    left: -3px;
    padding: 3px;
    box-shadow: 0 0 0 2px #ed4a4b;
    background: #fff;
    -webkit-transition: -webkit-transform 0.3s, background 0.3s;
    -webkit-transform: scale(.55);
    -moz-transition: -moz-transform 0.3s, background 0.3s;
    -moz-transform: scale(.55);
    -ms-transform: scale(.55);
    transition: transform 0.3s, background 0.3s;
    transform: scale(.55);
    opacity: 1;
    color: #ee4b4c;
}
div.seatCharts-seat.effect-1.sub-a.selected:hover {
    background: rgba(255, 255, 255, 1);
    color: #ed4a4b;
}

.seatCharts-seat.effect-1.sub-a.selected:hover:after {
    background-color: transparent;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

div.seatCharts-seat.focused {
	background-color: #6db131;
}

div.seatCharts-seat.available {
	background-color: #ee4b4c;
}

div.seatCharts-seat.unavailable {
	background-color: #bcbcbc !important;
	color: #fff !important;
}

div.seatCharts-seat.unavailable.selected {
	cursor: not-allowed !important;
}
div.seatCharts-seat.unavailable.no_selected {
	cursor: not-allowed !important;
}

div.seatCharts-seat.effect-1.sub-a.unavailable:after {
	box-shadow: 0 0 0 0 transparent !important;
}

div.seatCharts-seat.effect-1.sub-a.selected.unavailable:after {
	box-shadow: 0 0 0 2px #bcbcbc !important;
}

ul.seatCharts-legendList {
	list-style: none;
}
li.seatCharts-legendItem {
	margin-top: 10px;
	line-height: 2;
}