/*
 *  S E C T I O N   M A P
 */


.sectionmapcontainer,
#sectionmapcontainer {
	/*	This is the default ID for sectionmapDiv.
		Must be position:relative;
	*/
	position: relative;
	clear: both;
	width: 574px;
	height: 347px;
	margin: 0 auto;
	background-repeat: no-repeat;
}
.sectionmapcontainer-small,
#sectionmapcontainer-small {
	/*	This is the default ID for sectionmapDiv.
		Must be position:relative;
	*/
	position: relative;
	float: right;
	clear: both;
	width: 300px;
	height: 182px;
	background-repeat: no-repeat;
}

.sectionmapcontainer .sectionmap,
.sectionmapcontainer-small .sectionmap,
#sectionmapcontainer .sectionmap,
#sectionmapcontainer-small .sectionmap {
	/*	This class is used for the section overlays on the hall image.
		The default is that the section is inactive, ie cannot be selected.
		Must be position:absolute;
	*/
	position: absolute;
	box-sizing: content-box;
	border: 2px solid transparent;
	opacity: 0.5;
	filter: alpha(opacity = 50);
}
.sectionmapcontainer .active,
.sectionmapcontainer-small .active,
#sectionmapcontainer .active,
#sectionmapcontainer-small .active {
	/*	This class is used for the sections which are active, ie can be selected.	 */
	cursor: pointer;
	border-color: #006633;
	background: #66CC66 none;
}
.sectionmapcontainer .selected,
.sectionmapcontainer-small .selected,
#sectionmapcontainer .selected,
#sectionmapcontainer-small .selected {
	/*	This class is used for the section which is currently selected.	 */
	border-color: blue;
	background-color: #3399FF;
}

/* Position the svg */
.sectionmapcontainer svg {
	position: absolute;
	top: 0;
	left: 0;
}
.sectionmapcontainer svg g.sectionmap {
	opacity: 1;
	filter: none;
}
.sectionmapcontainer svg g.sectionmap * {
	fill-opacity: 0;
}
.sectionmapcontainer svg g.sectionmap.active * {
	cursor: pointer;
	fill: #66CC66;
	fill-opacity: 0.75;
}
.sectionmapcontainer svg g.sectionmap.selected * {
	fill: #3399FF;
	fill-opacity: 0.75;
}
.no-pointer-events {
	pointer-events: none;
}

/* Section popover */
.popover.multihall-section-popover {
	max-width: none;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.popover.multihall-section-popover.top > .arrow:after {
	border-top-color: #000000
}
.popover.multihall-section-popover.bottom > .arrow:after {
	border-bottom-color: #000000
}
.popover.multihall-section-popover.left > .arrow:after {
	border-left-color: #000000
}
.popover.multihall-section-popover.right > .arrow:after {
	border-right-color: #000000
}
.popover.multihall-section-popover .popover-content {
	padding: 0;
}
.section-info {
	padding: 6px 12px;
	background-color: #000000;
	color: #FFFFFF;
	border-radius: 5px;
}
.popover.multihall-section-popover img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.popover.multihall-section-popover img + .section-info {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}


/*
 *  S E A T   M A P
 */


.seatmapcontainer,
#seatmapcontainer {
	/* This is the default ID for seatmapDiv. No special demands. */
	border: 0;
	clear: both;
	width: 100px;
	height: 100px;
	padding: 10px;
	margin: 10px auto;
	line-height: 100%;
	background-color: #FFFFFF;
}
.seatmapcontainer.fetching,
#seatmapcontainer.fetching {
	/* This class is added when data are being fethced. */
	background: url(/images/02-event-shop/loaders/loader-circle.gif) no-repeat center center;
}

.section-rotator {
	/*	All the seats are placed in this div, which is then rotated.
		The following 3 statements are needed!
	*/
	position: relative;
	width: 100%;
	height: 100%;
}

.seatmapcontainer .seatrow,
#seatmapcontainer .seatrow {
	/*	This is the class for row labels.
		Must be position:absolute;
	*/
	position: absolute;
	font-size: 12px;
}

div.seat {
	/*	This is the class for the individual seats.
		Please adjust Seatmap.config.dimSeatSizeX accordingly via init().
		Must be position:absolute;
	*/
	position: absolute;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(38, 38, 38, 0.3);
	border-top-color: rgba(24, 24, 24, 0.3);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	border-bottom-width: 2px;
	background-color: transparent;
	background-size: cover;
	cursor: pointer;
	text-align: center;
}

/*	Next: override styling for the seats. Remember seat status is mapped via Seatmap.config.statusMap. */
.seat.reserved,
.seat.selling,
.seat.sold,
.seat.blocked,
.seat.other_reserved,
.seat.other_selling,
.seat.other_blocked,
.seat.other_sold,
.seat.other_missing {
	background-color: #FF8C8C;
	border-color: #FF7878;
	border-top-color: #DE797B;
}
.rotated .seat.reserved,
.rotated .seat.selling,
.rotated .seat.sold,
.rotated .seat.blocked,
.rotated .seat.other_reserved,
.rotated .seat.other_selling,
.rotated .seat.other_blocked,
.rotated .seat.other_sold,
.rotated .seat.other_missing {
	border-top-color: #FF7878;
	border-bottom-color: #DE797B;
}

.seat.available	{
	background-color: #49CD76;
	border-color: rgba(38, 38, 38, 0.3);
	border-top-color: rgba(24, 24, 24, 0.3);
}
.rotated .seat.available {
	border-top-color: rgba(38, 38, 38, 0.3);
	border-bottom-color: rgba(24, 24, 24, 0.3);
}

.seat-legend-wrapper {
	margin: 15px 0;
}
.seat-legend {
	margin: 0 auto;
}
.seat-legend .action {
	padding: 0;
}
.seat-legend-inner {
	padding: 5px 0;
	margin-top: 5px;
	border-bottom: 1px solid #CDCDCD;
	border-top: 1px solid #CDCDCD;
}
.seat-legend div.seat {
	position: relative;
	display: inline-block;
	margin-top: 5px;
}

.rotated div.seat,
.seat-legend div.seat {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-width: 1px;
	border-top-width: 2px;
}

.seat-legend p {
	display: inline-block;
	margin: 0 20px 0 5px;
}

.seat.selected {
	/*	This class is added to every selected seat in addition to its status class. */
	background-color: #0F62D8;
	border-color: rgba(38, 38, 38, 0.3);
	border-top-color: rgba(24, 24, 24, 0.3);
	height: 11px;
	width: 11px;
	border-top-width: 1px;
	border-bottom-width: 4px;
	box-shadow: 0px 0px 11px 3px rgba(15,98,216,0.28);
}
.rotated .seat.selected,
.seat-legend .seat.selected {
	border-top-width: 4px;
	border-bottom-width: 1px;
	border-top-color: rgba(38, 38, 38, 0.3);
	border-bottom-color: rgba(24, 24, 24, 0.3);
}
#seatmapcontainer .seat.active {
	border: 2px solid blue;
}

.stagetext {
	/*	This div is rendered in front of the rows to indicate the direction to the stage.
		Must be position:absolute;
	*/
	position: absolute;
	padding: 0 0 10px 0;
	border-bottom: 1px solid black;
	text-align: center;
}
.stagetext.rotated {
	/*	This class (rotated) is added when the seatDirection is between 90 and 270 degrees, where the texts are rotated an additional 180 degrees.
	*/
	padding: 10px 0 0 0;
	border-top: 1px solid black;
	border-bottom: none;
}

#seat-context-menu {
	/*	This div is used when Seatmap.config.getContextMenuOptions is defined, and a user ""right mouse button" clicks a seat.
		A context menu is rendered in the div.
		Must be position:absolute;
	*/
	position: absolute;
	width: 150px;
	height: 100px;
	padding: 0;
	margin: 0;
	border: 1px solid black;
	background-color: white;
	z-index: 999;
}
#seat-context-menu a {
	/*	The options inside the seat context menu are rendered as A-tags. */
	display: block;
	padding: 5px;
	text-decoration: none;
}
#seat-context-menu a:hover {
	/*	This is the menu item under the cursor. */
	background-color: yellow;
}

/*
 * Diverse
 */
.feedback {
	padding-bottom: 15px;
}
#eventhall h3 {
	font-size: 20px;
}
#seasoncardhall .description_pagelet,
#eventhall .description_pagelet {
	padding: 15px 0;
	font-size: 15px;
	font-weight: normal;
}
.num-ticket-area h3 {
	margin-top: 0;
	margin-right: 15px;
}
@media (min-width: 992px) {
	#num-ticket-area .show_free_admission {
		margin-top: 0;
	}
}
#seatmap-step-hallview {
	position: relative;
	margin: 15px 0;
}
#seatmap-step-hallview h3 {
	margin-bottom: 16px;
}
#num-tickets {
	margin-top: -4px;
	padding: 3px;
	font-size: 14px;
}
.ticket-voucher-button {
	float: right;
	font-size: 11px;
}
.ticket-voucher-button a {
	color: #000000;
	text-decoration: none;
}
.ticket-voucher-button a:hover {
	text-decoration: underline;
}

#reserved-seats .price-cell {
	width: 100px;
}
#reserved-seats .fee-cell {
	width: 70px;
}

.tooltip-unnumbered-section {
	margin: 5px;
	font-size: 16px;
}

.seatmap-step-total_price {
	text-align: right;
	margin-top: 15px;
	font-size: 14px;
}
hr {
	margin-top: 30px;
	margin-bottom: 30px;
	border: 0;
	border-top: 1px solid #EEEEEE;
}
.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
}
.btn.disabled {
	opacity: 0.4;
	filter: alpha(opacity=40);
}
.hide-fee-cell .fee-cell {
	display: none !important;
}
