﻿/* Default styles for the Venue Seating Svg and UI */


/* ensure classes for svg elements have lower case names, classes with upper case may not be parsed :| */

.disable-pointer {
    pointer-events: none !important;
}

/* Venue section highlight styles */

.SeatingControl-section-area {
    /* change fill colour to highlight overlay sections */
    /*fill: #bbbbdd;*/ 
    fill: #dddddd;
    stroke: #888;
    stroke-width: 1px;
}


.SeatingControl-section-default {
    fill: #dddddd;
    stroke: #888;
    stroke-width: 1px;
}

.SeatingControl-section-available {
    fill: #47667b;
}

.SeatingControl-section-unavailable {
    fill: #dddddd;
    pointer-events: none !important;
}

.SeatingControl-section-unavailable text {
    fill: #0000ff;
}

.SeatingControl-section-seating-available {
    fill: #80c281;
}

.SeatingControl-section-seating-available:hover {
    fill: #97e699;
}

.SeatingControl-section-seating-available-disabledfacilities {
    fill: #6e9b6e;
}

.SeatingControl-section-seating-available-disabledfacilities:hover {
    fill: #88bf88;
}

.SeatingControl-section-seating-soldout {
    fill: #bd2c2c;
}

.SeatingControl-section-seating-soldout:hover {
    fill: #e63535;
}

.SeatingControl-section-selected-seats {
    fill: #5e8cda; 
}

.SeatingControl-section-category-highlight-color {
    fill: #ff8800;
}

.SeatingControl-category-highlight-color, .SeatingControl-category-highlight-color:hover {
    background-color: #ff8800 !important;
}

/* seating grid highlight styles */
.SeatingControl-seat-allocated-color {
    /*fill: #ddd;*/
    fill: rgb(219, 219, 219);
}

.SeatingControl-seat-partially-allocated-color {
    /*fill: #cc9816;*/
    fill: rgba(204,152,22,1);  
}

.SeatingControl-seat-unallocated-color {
    /*fill: #439643;*/
    fill: rgba(67,150,67, 1);
}


.SeatingControl-seat-symbol-allocated-color {
    /*fill: #000;
    fill-opacity: 0.25;*/
    fill: rgba(0,0,0,0.25);
}

.SeatingControl-seat-symbol-partially-allocated-color {
    /*fill: #fff;
    fill-opacity: 0.75;*/
    fill: rgba(255,255,255,0.75);
}

.SeatingControl-seat-symbol-unallocated-color {
    /*fill: #fff;
    fill-opacity: 0.5;*/
    /*fill: rgba(255,255,255,0.5);*/
    fill: transparent;
}

    .SeatingControl-seat-symbol-unallocated-color.SeatingControl-carer-seat,
    .SeatingControl-seat-symbol-unallocated-color.SeatingControl-wheelchair {
        fill: rgba(255,255,255,0.75);
    }

.SeatingControl-seat-highlight-color {
    /*fill: #ffff00;*/
    fill: rgba(255,255,0,1);
}

.SeatingControl-seat-group-highlight-color {
    /*fill: #ffff00;*/
    fill: rgb(81, 84, 196);
}

.SeatingControl-seat-selected-color {
    /*fill: #5e8cda;*/
    fill: rgba(94,140,218,1)
}

.SeatingControl-seat-symbol-blocked-color {
    /*fill: #5e8cda;*/
    fill: transparent;
}

.SeatingControl-seat-blocked-color {
    /*fill: #5e8cda;*/
    fill: rgb(219, 219, 219);
}

.SeatingControl-seat-symbol-selected-color {
    /*fill: #000;
    fill-opacity: 0.9;*/
    fill: rgba(0,0,0,0.9);
}


.SeatingControl-seat-not-present-color {
    /*fill: #5e8cda;*/
    fill: rgb(237, 237, 237);
}

    .SeatingControl-seat-symbol-not-present-color {
        fill: transparent;
    }

.SeatingControl-seat-invalid-for-group-color {
    fill: rgb(199, 199, 199);
}

.SeatingControl-seat-symbol-invalid-for-group-color {
    fill: transparent;
}

.SeatingControl-busy-icon {
    fill: rgba(0,0,0,0.9);
}

.SeatingControl-fill-transition {
    transition: fill 0.25s ease;
}

.SeatingControl-seating-grid-background {
    /*fill: #fcfcfc;*/
    fill: #f5f5f5;
}

.no-pointer-events {
    pointer-events: none;
}

/* HTML and UI elements */

.SeatingControl-VenueSeatingUI {
    padding-bottom: 15px;
    overflow: auto;
}

.SeatingControl-VenueContainer {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    height: auto;
    border: solid 1px #ccc;
    border-radius: 0;
    background-color: #f5f5f5;
    width: 100%;
    min-height: 240px;
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

.SeatingControl-BusyStatus {
    position: absolute;
    top: 45%;
    left: 25%;
    width: 50%;
    font-size: 18px;
    z-index: 20;
    display: none;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px 5px 5px;
    background-color: rgba(0,0,0,0.6);
    text-align: center;
}

.SeatingControl-LiveUpdateStatus {
    position: absolute;
    bottom: 5px;
    left: 0;
    font-size: 12px;
    z-index: 20;
    display: none;
    color: #444;
    border-radius: 0 4px 4px 0;
    padding: 5px 10px 5px 5px;
    background-color: rgba(255,255,255,0.8);
}

.SeatingControl-LiveUpdateStatus i, .SeatingControl-BusyStatus i {
    vertical-align: middle;
}
.SeatingControl-LiveUpdateStatus span, .SeatingControl-BusyStatus span {
    vertical-align: middle;
}

.SeatingControl-VenueMap, .SeatingControl-SeatingGrid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.SeatingControl-VenueMap {
    z-index: 10;
}

.SeatingControl-SeatingGrid {
    z-index: 15;
    display: none;
}

.SeatingControl-Header, .SeatingControl-Footer {
    background: #333333;
    color: #fff;
    overflow: hidden;
}

.SeatingControl-Header {
    border-radius: 4px 4px 0 0;
}

.SeatingControl-Footer {
    border-radius: 0 0 4px 4px;
    margin-bottom: 15px;
} 

.SeatingControl-MatchSelector .control-label {
    font-weight: normal;
    padding-top: 2px;
}

.SeatingControl-InfoPanel {
    /*position: absolute;
    top: 0;
    left: 0;*/
    /*width: 100%;*/
    height: auto;
    font-size: 16px;
    z-index: 20;
    /*background: rgba(0,0,0,0.75);
    color: #fff;*/
    padding: 0;

    border-radius: 0 0 4px 4px;
    transition: height 0.15s ease-out;
    overflow: hidden;
}

.SeatingControl-InfoPanel div {
    padding: 10px;
}

.person-name {
    font-size: 13px;
}

.seating-manager-panel .checkbox label input[type="checkbox"]
{
    margin-left: -20px;
}

.seating-panel {
    background-color: #f5f5f5;
    font-size: 16px;
    line-height: 1.2;
    padding: 5px 10px;
}

li.list-group-item.seating-panel-footer.seating-panel {
   font-size: 75%;
}

.product-group.completed > .seating-panel-footer.seating-panel {
    background-color: #2ECC71;
    color: #fff;
}

.group-status-icon {
    font-size: 18px;
    padding-right: 10px;
    vertical-align: top;
}

.seating-panel span {
    font-size: 12px;
}

.remove-seat, .show-seat {
    display: none;
}

.active-person .remove-seat, .active-person .show-seat {
    display: inline;
}

.SeatingControl-seat-available-message {
    color: #ffffff;
}

.SeatingControl-seat-not-available-message {
    color: #ffaa00;
}

.SeatingControl-seat-selected-message {
    color: #45de47;
}

.no-pointer {
    pointer-events: none;
    cursor: default !important;
}


ul.SeatingControl-section-availability-match-list {
    list-style: none;
    padding: 0;
    font-size: smaller;
    
}

.SeatingControl-section-availability-match-list li {
    display: block;
    color: #bbb;
    margin-bottom: 10px;
}

ul.SeatingControl-section-availability-counts-list {
    list-style: none;
    padding-left: 10px;
}

.SeatingControl-section-availability-counts-list li {
    display: inline;
    padding-right: 10px;
    color: #fff;
}

.SeatingControl-show-venue-view {
    display: none;
    width: 116px;
    position: absolute;
    bottom: 50px;
    right: 16px;
    z-index: 25;
}

.SeatingControl-zoom-in-control, 
.SeatingControl-zoom-out-control,
.SeatingControl-zoom-reset-control {
    position: absolute;
    bottom: 15px;
    z-index: 25;
}

.SeatingControl-zoom-in-control {
    right: 16px;
}

.SeatingControl-zoom-reset-control {
    right: 56px;
}

.SeatingControl-zoom-out-control {
    right: 96px;
}

.SeatingControl-MapLegend {
    margin: 0;
    padding: 0;
}

.stadium-key {
    padding: 10px;
    font-size: 12px;
    margin: 0;
}

    .stadium-key li {
        display: inline-block;
        padding-right: 25px;
    }

.stadium-key-legend {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    text-align: left;
    margin-right: 5px;
    margin-bottom: 2px;
    border-radius: 4px;
    font-size: 11px;
    cursor: default !important;
}

.venue-section-unavailable {
    color: #fff;
    background-color: #dddddd;
}

.venue-section-available {
    background-color: rgba(128, 194, 129, 1);
}

.venue-section-sold-out {
    background-color: #bd2c2c;
}

.venue-section-disabled-facilities {
    background-color: #6e9b6e;
}

.venue-section-highlighted {
    background-color: #47667b;
}

.venue-section-selected-seats {
    background-color: #5e8cda; 
}

.stadium-key-legend.seat-unavailable {
    color: rgba(0, 0, 0, 0.25);
    background-color: #ddd;
}

.stadium-key-legend.seat-available {
    color: rgba(255,255,255,0.75);
    background-color: #439643;
}

.stadium-key-legend.seat-partially-available {
    color: rgba(255,255,255,0.75);
    background-color: #cc9816;
}

.stadium-key-legend.seat-wheelchair,
.stadium-key-legend.seat-carer {
    color: rgba(255,255,255,0.75);
    background-color: #6e9b6e;
}

.stadium-key-legend.seat-selected {
    background-color: #5e8cda;
    color: rgba(0,0,0,0.9);
}

.seating-selector-infobar, .seating-infobar-controls {
    /*min-height: 74px;*/
}

.seating-infobar-controls p {
    margin: 18px 0 17px 0;
}

.page-product-details .seating-infobar-controls {
    min-height: 0;
}


.seating-status-message .h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 10px 0;
}

.seat-icon-number {
    font-weight: bold;
    fill: #000;
}

.SeatingControl-seat-symbol-allocated-color .seat-icon-number {
    fill: #444;
}

.SeatingControl-seat-symbol-selected-color .seat-icon-number {
    fill: #fff;
}

.SeatingControl-seat-symbol-not-present-color .seat-icon-number {
    fill: transparent;
}

/*.svg-pan-zoom_viewport {
    transition: transform 0.01s ease-in-out;
}*/

.svg-pan-zoom-control {
    fill-opacity: 0.55 !important; 
}

.active-person {
    background-color: rgba(246, 250, 204, 1);
    /*border: solid 1px rgb(206, 211, 161);*/
}

.person.list-group-item {
    padding: 10px;
}

.selected-seat {
    font-size: 80%;
}



.stadium-key-legend > i {
    font-size: 11px;
    vertical-align: middle;
}

.SeatingControl-section-availability-counts-list li, .SeatingControl-seat-availability {
    font-size: 12px;
}

.left-space {
    padding-left: 15px;
}

.SeatingControl-seat-availability {
    padding: 5px 0px !important;
}

.SeatingControl-AlertMessage {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    width: 80%;
    height: auto;
    overflow: hidden;
    z-index: 25;
    pointer-events: none;
}

@keyframes fade-in-opacity { 
  from { opacity: 0.25; } 
}

.pulse-opacity, .active-person-seat, .contains-selected-seating {
    animation: fade-in-opacity 0.5s infinite alternate;
}

@keyframes fadeInBackground { 
  from { background-color: rgba(255,255,0,0.25) } 
  to { background-color: rgba(255,255,0,0.99) } 
}

.pulseBackgroundColor {
    animation: fadeInBackground 0.5s infinite alternate;
}

.mobilemap {
    padding: 0;
    margin: 15px -10px 0 -10px;
    overflow: hidden;
    border-left: solid 0.5px #ddd;
    border-right: solid 0.5px #ddd;
}

.mobilemap .SeatingControl-VenueSeatingUI {
    padding: 15px 10px;
}

.person-details {
    overflow: hidden;
}

.btn-seating-control {
    font-size: 0.9rem;
    padding: 5px 10px;
}

.list-group product-group {
    margin: 0;
}

@media(max-width:768px) {
    .SeatingControl-MatchSelector {
        margin-top: 15px;
    }

    .SeatingControl-InfoPanel {
        font-size: 13px;
    }

    .SeatingControl-section-availability-counts-list li, .SeatingControl-seat-availability {
        font-size: 10px;
    }

    .SeatingControl-seat-availability {
        padding: 5px 15px;
    }

    .seating-selector-infobar, .seating-infobar-controls {
        min-height: 38px;
    }

    .SeatingControl-show-venue-view {
        display: none;
        bottom: 40px;
        right: 6px;
        z-index: 25;
    }

    
    .SeatingControl-zoom-in-control, 
    .SeatingControl-zoom-out-control,
    .SeatingControl-zoom-reset-control {
        position: absolute;
        bottom: 5px;
        z-index: 25;
    }
    
    .SeatingControl-zoom-in-control {
        right: 6px;
    }
    
    .SeatingControl-zoom-reset-control {
        right: 46px;
    }
    
    .SeatingControl-zoom-out-control {
        right: 86px;
    }

    .SeatingControl-VenueContainer {
        min-height: 360px;
    }

    .stadium-key {
        font-size: 10px;
    }

    .stadium-key-legend {
        width: 17px;
        height: 16px;
        line-height: 14px;
        margin-right: 3px;
        margin-bottom: 5px;
    }

    .stadium-key-legend i {
        font-size: 11px;
        vertical-align: middle;
    }
}