/*Seats*/

.seat-legend circle {
    stroke-width: 4;
}

.seat-legend svg {
    transform: scale(1.4);
    transform-origin: center center;
}

.seat-legend .legend-label {
    margin-left: .5rem;
    position: relative;
    top: 2px;
}

.syos-seats circle {
    cursor: not-allowed;
}

.syos-seats circle.available, .seat-legend circle.available {
    /*fill: #be3910;
    stroke: #be3910;*/
}

.syos-seats circle.available,
.syos-seats use.available {
    cursor: pointer;
}

.syos-seats circle.no-match,
.syos-seats use.no-match {
    opacity: .2;
}
.syos-seats circle.no-match,
.syos-seats use.no-match.unavailable {
    opacity: 1;
}

/* medium blue */
.syos-seats circle.seat-ada.available, .seat-legend circle.seat-ada {
    fill: #fff;
    stroke: #0f7eb5;
}
.seat-legend circle.seat-ada {
    stroke-width: 8;
}
/* medium blue */
.syos-seats use.seat-ada.available, .seat-legend use.seat-ada {
    fill: #0f7eb5;
    stroke: #0f7eb5;
}
.seat-legend use.seat-ada {
    stroke-width: 2;
}
/* yellow */
.syos-seats circle.leg-obstructed.available,
.seat-legend circle.leg-obstructed,
.syos-seats polygon.leg-obstructed.available,
.seat-legend polygon.leg-obstructed {
    fill: #f7b121;
    stroke: #f7b121;
}
.seat-legend polygon.leg-obstructed {
    stroke-width: 10;
}


.syos-seats circle.limited-view.available,
.seat-legend circle.limited-view {
    fill: #fff;
    stroke: #f7b121;
    stroke-width: 1.25;
}
.seat-legend circle.limited-view {
    stroke-width: 15;
}
/* medium blue */
.syos-seats circle.adacompanion.available,
.seat-legend circle.adacompanion {
    fill: #fff;
    stroke: #0f7eb5;
}
.seat-legend circle.adacompanion {
    stroke-width: 15;
}

.syos-seats use.seat-ada.adacompanion.available, .seat-legend use.adacompanion {
    fill: #148796;
    stroke: #148796;
}

.syos-seats use.seat-ada.adacompanion.selected {
    fill: transparent;
    stroke: transparent;
}

.syos-seats use.seat-selected-checked.available {
    fill: transparent;
    stroke: transparent;
}

.syos-seats use.seat-selected-checked.selected {
    fill: #000!important;
    stroke: #000!important;
}



.syos-seats circle.adacompanion.no-match,
.syos-seats use.adacompanion.no-match {
    fill: transparent;
    stroke: transparent !important;
}

.syos-seats circle.seat-ada.no-match,
.syos-seats use.seat-ada.no-match {
    fill: transparent;
    stroke: #e3dccf;
}

.syos-seats use.available.seat-ada.no-match {
    fill: #e3dccf;
}

.syos-seats circle.selected,
.syos-seats circle.selected.adacompanion,
.syos-seats circle.selected.seat-ada,
.syos-seats circle.selected.limited-view,
.syos-seats circle.selected.leg-obstructed {
    fill: none;
    stroke: none;
}

.syos-seats use.selected.seat-ada {
    fill: none;
    stroke: none;
}

.syos-seats circle.camera-icon {
    fill: #000;
    stroke: #000;
    cursor: pointer;
}

.syos-seats use.camera-icon {
    fill: #FFF;
    cursor: pointer;
}

.syos-seats text {
    fill: black;
    /*font-size: 4px;*/
}

.seat-legend svg {
    width: 16px;
    height: 16px;
}

#syos-seats {
    min-height: 22rem;
    border: 2px solid grey;
}

/*Just desktops should get the taller view*/
@media(min-width: 1200px) {
    #syos-seats {
        min-height: 55vh !important;
        border: none !important;
    }
}

/*End Seats*/

/*Photo Previews*/
.large-photo-trigger {
    position: absolute;
    top: .5rem;
    right: .5rem;
    color: #fff;
    background-color: #a6320e;
}
.large-photo-trigger:hover, .small-photo-close:hover {
    cursor: pointer;
}
.small-photo-close {
    position: absolute;
    top: .5rem;
    left: .5rem;
    color: #fff;
    background-color: #a6320e;
}
.has-photo-preview {
    color: #a6320e;
    text-decoration: underline;
}
.has-photo-preview:hover {
    text-decoration: none;
    cursor: pointer;
}
/*End Photo Previews*/

/*Modal*/
/*Vue Modal*/
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.modal-container {
    width: 300px;
    margin: 0px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
    margin-top: 0;
}

.modal-body {
    margin: 20px 0;
}

.modal-default-button {
    float: right;
}

.modal-seat-table-reservation {
    width: 100%;
    height: 292px;
}

.modal-partial-view-terms-notice {
    width: 100%;
    height: 360px;
}

.modal-amex-terms-notice {
    width: 100%;
    height: fit-content;
}

.modal-amex-terms-notice .modal-footer {
    display: flex;
    justify-content: space-between;
}

.modal-amex-terms-notice .modal-header {
    display: none;
}

@media(min-width: 992px) {
    .modal-seat-table-reservation, .modal-partial-view-terms-notice, .modal-amex-terms-notice {
        width: 565px;
        height: fit-content;
    }
    .modal-amex-terms-notice{
        height: fit-content;
    }

    .modal-seat-table-reservation .modal-footer,
    .modal-partial-view-terms-notice .modal-footer {
        justify-content: center;
    }

    .modal-seat-table-reservation .modal-header,
    .modal-partial-view-terms-notice .modal-header{
        display: none;
    }
}


.modal-seat-terms-notice {
    width: 98%;
    max-height: 26.5rem;
    overflow-y: scroll;
    padding: 0;
}
@media(min-width: 992px) {
    .modal-seat-terms-notice {
        width: 50%;
        overflow-y: unset;
    }
}

@media(min-width: 992px) {
    .modal-terms-conditions {
        max-height: 40vh;
    }
}

.modal-seat-terms-notice .modal-footer {
    position: sticky;
    bottom: 0;
    background-color: inherit; /* [1] */
    z-index: 1055; /* [2] */
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
}
/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */
.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
/*End Vue Modal*/
.modal-wrapper {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    min-height: 100vh;
    opacity: 1;
    display: table-cell;
    vertical-align: middle;
    position: initial;
}

.modal-wrapper[aria-hidden=true] {
    visibility: hidden;
    opacity: 0
}

.modal-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-right: 1px solid #0f0
}

.modal-overlay:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none
}

.modal-overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #27282d;
    opacity: .607843
}

.modal-dialog {
    position: relative;
    top: 2.10526rem;
    width: 100%;
    max-height: calc(100% - 4.21053rem);
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    overflow-y: auto
}


.modal-photo-preview {
    padding: 1rem !important;
}

.modal-photo-preview .modal-body {
    margin: 0;
}

.modal-photo-preview .modal-header {
    display: none;
}

.modal-photo-preview .modal-footer {
    border-top: none;
}

@media(min-width: 768px) {
    .modal-photo-preview {
        width: 50%;
    }
}

.legend-and-promo-modal {
    width: 90%;
}

@media(min-width: 768px) {
    .legend-and-promo-modal {
        width: 58%;
    }
}

.legend-and-promo-modal .promo-code-container {
}

.seat-detail-modal-class{
    width: 100%;
    padding: 1rem;
    background-color: #000;
    color: #fff;
}

@media (min-width: 992px) {
    .seat-detail-modal-class{
        width: 400px;
    }
}


/*End Modal*/
/*Tooltips*/
.tooltip-override {
    opacity: 1 !important;
    font-size: inherit;
}

.tooltip-override .tooltip-inner {
    background: #000 !important;
    color: #fff !important;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 33%);
    max-width: 400px;
    font-size: 1.0 rem;
    font-weight: normal !important;
}

.tooltip-override .tooltip-arrow::before {
    content: "";
}


/*Arrows are complicated. Directly overriding using bootstrap's selectors*/

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #000 !important;
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #000 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #000 !important;
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #000 !important;
}

.tooltip-override table {
    color: #fff;
}

.tooltip-override i {
    color: #fff;
    font-size: .8rem;
}

.tooltip-override table.table td {
    padding-top: 0;
    padding-bottom: 0;
    font-size: .6rem !important;
}

.tooltip-override table.table tr:last-child {
    margin-bottom: 5px;
}

.tooltip-override table.table th {
    padding-bottom: 0;
    font-weight: 600;
}

.tooltip-override p {
    margin-bottom: 0;
    padding: 3px 1.25rem 0;
}

.tooltip-override p:last-child {
    margin-bottom: 5px;
}

.tooltip-override .tooltip-inner hr:last-child {
    visibility: hidden;
    padding-bottom: .8rem;
}
/*End Tooltips*/

/*Slider*/
.slider {
    display: block;
    position: relative;
    height: 36px;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.slider .slider-touch-left,
.slider .slider-touch-right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    height: 36px;
    width: 36px;
    padding: 6px;
    z-index: 2;
}

.slider .slider-touch-left span,
.slider .slider-touch-right span {
    display: block;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border: 1px solid #a4a4a4;
    border-radius: 50%;
}

.slider .slider-line {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: calc(100% - 36px);
    left: 18px;
    top: 16px;
    height: 4px;
    border-radius: 4px;
    background: #f0f0f0;
    z-index: 0;
    overflow: hidden;
}

.slider .slider-line span {
    display: block;
    height: 100%;
    width: 0%;
    background: orange;
}

/*
    Can probably remove the above styles. We've changed to no-ui slider
    and the styles below are all we need for that component.
*/
.no-ui-slider {
    background-color: #D3D3D3;
    height: 5px;
    padding: 0 0.65rem;
}

.no-ui-slider .noUi-connect {
    background: #423e4c;
}

.noUi-handle {
    border: 1px solid #423e4c;
    background: #423e4c;
    box-shadow: none !important;
}

.no-ui-slider .noUi-handle {
    height: 24px;
    width: 24px;
    top: -11px;
    right: -12px;
    border-radius: 12px;
    cursor: pointer;
}

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.noUi-tooltip {
    display: none;
}

.noUi-active .noUi-tooltip {
    display: block;
}

/*Text boxes*/
.input-group-currency {
    position: relative;
}

.input-group-currency::before {
    content: "$";
    position: absolute;
    left: 6px;
    top: 51%;
    transform: translateY(-50%);
    color: #000;
    font-weight: bold;
}

.form-control-currency {
    padding-left: 20px; /* Ensure the input value does not overlap with the pseudo-element */
}

/*End Slider*/

/*Venue Overview Graphics*/
svg#venue {
    width: 100%;
    /*height: 100%;*/
}

#app-ba svg#venue {
    height: 100%;
}

svg#venue #GREEN path {
    /*fill: #CCC !important;*/
}

svg#venue #GREEN path:hover, g.section-group:hover {
    fill: #E72113 !important;
    cursor: pointer;
}
text.cls-1:hover {
    cursor: pointer;
}

svg#venue #GREEN path.active,
svg#venue g.active .element {
    fill: #E72113 !important;
}

svg#venue #GREEN path.sold-out,
svg#venue g.sold-out {
    cursor: not-allowed;
    fill: #aaa !important;
}

svg#syos-seats path {
    /*fill: none;*/
    /*stroke: #423e4c;
    stroke-miterlimit: 10;*/
    /*stroke-width: .5px;*/
}

svg#syos-seats text {
    font-family: 'Roboto Condensed';
    /*font-size: 8px;*/
    font-weight: 700;
    stroke-width: 0.25px;
}

/*END Venue Overview Graphics*/
/*Price Type Filters accordion override*/
#pricetype-filters {
    /*min-width: 25%;*/
}

@media (max-width: 456px) {
    #pricetype-filters {
        margin-bottom: 10%;
    }
}

#pricetype-filters::after {
    margin-right: 0.5em;
    right: 0;
    position: absolute;
    top: 1rem;
}

#pricetype-filters .accordion-button::after {
    display: none;
}

/*End Price Type Filters accordion override*/




.btn-ticket-ctrl {
    padding: 0.375rem .75rem !important;
}

@media (max-width: 456px) {
    .btn-ticket-ctrl {
        height: 60px !important;
        font-size: 1rem !important;
        line-height: normal !important;
    }
}

@media(min-width: 576px) {
    .btn-ticket-ctrl {
        /*padding: 0.375rem 1.5rem !important;*/
    }
}


.stage-text {
    font-size: 6px !important;
    font-weight: bold;
}



#app-syos h3 {
    font-size: 1.25rem;
}

.seat-legend {
    font-size: 1rem;
}

#pre-cart div.reservation-instructions {
    margin-bottom: 2% !important;
    padding: 1% !important;
    font-size: var(--font-size-200);
    color: var(--color-primary);
    font-weight: normal;
}

.notice {
    color: #000000;
}


/*Price-colors*/

/* brand red */
.price-color-0.available {
    fill: #a6320e;
    stroke: #a6320e;
}

/* orange */
.price-color-1.available {
    fill: #f97541;
    stroke: #f97541;
}

/* light blue */
.price-color-2.available {
    fill: #46bbe8;
    stroke: #46bbe8;
}

/* light green */
.price-color-3.available {
    fill: #9ddd6b;
    stroke: #9ddd6b;
}

/* light purple */
.price-color-4.available {
    fill: #ba84d1;
    stroke: #ba84d1;
}

/* medium green */
.price-color-5.available {
    fill: #09af58;
    stroke: #09af58;
}

/* dark blue */
.price-color-6.available {
    fill: #003075;
    stroke: #003075;
}

/* slate blue */
.price-color-7.available {
    fill: #6ba4c1;
    stroke: #6ba4c1;
}

/* dark green */
.price-color-8.available {
    fill: #1a725b;
    stroke: #1a725b;
}

/* dark purple */
.price-color-9.available {
    fill: #61056b;
    stroke: #61056b;
}

.price-color-10.available {
    fill: #97a60e;
    stroke: #97a60e;
}

.price-color-11.available {
    fill: #a6460e;
    stroke: #a6460e;
}

.price-color-12.available {
    fill: #0e46a6;
    stroke: #0e46a6;
}

.price-color-13.available {
    fill: #0e6fa6;
    stroke: #0e6fa6;
}

.price-color-14.available {
    fill: #0e2fa6;
    stroke: #0e2fa6;
}

.price-color-15.available {
    fill: #a60e2f;
    stroke: #a60e2f;
}

.price-color-16.available {
    fill: #0e8ea6;
    stroke: #0e8ea6;
}

.price-color-17.available {
    fill: #6f0ea6;
    stroke: #6f0ea6;
}

.price-color-18.available {
    fill: #a60e8e;
    stroke: #a60e8e;
}

.price-color-19.available {
    fill: #a68e0e;
    stroke: #a68e0e;
}

/*From svg design files*/
.text-font {
    font-family: 'Roboto Condensed';
    font-weight: 700;
}

.text-size-1 {
    font-size: 10px;
}

.text-size-2 {
    font-size: 7px;
}

.text-size-3 {
    font-size: 6px;
}

.text-color {
    fill: #000;
}

.element-outline {
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #000 !important;
    fill: none !important;
}

.element-fill {
    fill: #000;
}

.element-outline-fill {
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #000 !important;
    fill: #fff !important;
}

.seat-color {
    fill: #fff;
}

.seat-outline {
    stroke: #000;
}


.syos-notes {
    font-size: 0.75rem;
    font-style: normal;
}

/* .form-check-input:checked {
    background-color: #a6320e !important;
    border-color: #a6320e !important;
} */

.form-check-input:hover {
    cursor: pointer;
}
.form-check-input.disabled:hover {
    cursor: not-allowed !important;
}
input.disabled + label:hover {
    cursor: not-allowed !important;
}
.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(166, 50, 14, .25) !important;
}

circle.available.some-class {
    fill: #a6320e;
    stroke: #a6320e;
}
circle.available.some-class.selected {
    fill: none;
    stroke: none;
}


/*Need to think this through. Delacorte overview graphics had these
    embedded and we can't have internal stylesheets in a vue app.*/
/*.cls-1, .cls-2 {
    fill: none;
}

.cls-3 {
    opacity: .5;
}

.cls-4 {
    clip-path: url(#clippath);
}

.cls-5 {
    fill: #56b762;
    opacity: .3;
}

.cls-2 {
    stroke: #000;
    stroke-miterlimit: 10;
    stroke-width: 3px;
}*/

.cls-1 {
    font-family: 'Roboto Condensed';
    font-size: 34px;
    font-weight: 600;
}

.cls-2 {
    opacity: .5;
    opacity: 1;
}

.cls-3 {
    fill: #56b762;
}

.cls-4 {
    fill: none;
    stroke: #000;
    stroke-miterlimit: 0;/*Update from provided styles. 10px specification was causing strange artifacts.*/
    stroke-width: 3px;
}


/*Need to think this through part 2. This is from Emily's exports*/
.font-style {
    font-family: 'Roboto Condensed';
    font-size: 5px;
    font-weight: 700;
}

.white {
    fill: #fff;
}

.grey {
    fill: #d3d3d3;
}
.grey-stroke {
    fill: none;
    stroke: #d3d3d3;
}
.font-style.small {
    font-size: 4px;
}
.font-style {
    font-family: Roboto-Bold, Roboto;
    font-weight: 700;
    font-size: 8px;
}

.outline {
    fill: none;
    stroke: #d3d3d3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1px;
}

.outline {
    fill: none;
    stroke: #d3d3d3;
}

.large {
    font-size: 11px;
}

.clip-box {
    clip-path: url(#clippath);
}

.font-stage { font-size: 18px;}

#pre-cart-heading .accordion-button {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

#pre-cart-heading .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    font-weight: bold;
    color: #000 !important;
}

#syos-controls {
    font-size: 1.5rem;
}

/*We don't want the buttons actually disabled as that will suppress any messaging when the click*/
.btn-disable{
    opacity: .3;
}

.btn-disable:hover {
    cursor: not-allowed;
}