﻿body {
    font-family: 'Trebuchet MS';
    font-size: 12px;
}

body.loading {
    overflow: hidden;
}
/* Make spinner image visible when body element has the loading class */
body.loading .overlay {
    display: block;
}
.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("/content/img/loading.gif") center no-repeat;
}

.container-fluid {
    margin-left: 10%;
    margin-right: 10%;
}

.header-banner {
    min-height: 225px;
    background-size: 100% 100%;
}

.header-banner {
    /*border-left: solid 1px #d5cece;
    border-top: solid 1px #d5cece;
    border-right: solid 1px #d5cece;*/
    /*border-right: solid 2px #d5cece;*/
    /*border-bottom: solid 2px #d5cece;*/
}

h3.event-title {
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px #d5cece;
    margin-top: 4px;
}

/*div.event-description {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100px;
    max-height: 100px;
    padding-right: 8px;
}*/

div.event-description h5 {
    text-align: justify;
}

div.header-row div[class^=col]:first-child, .event-title-container {
    padding-right: 4px !important;
}

div.header-row div[class^=col]:nth-child(2) {
    padding-left: 8px !important;
}


::-webkit-scrollbar {
    width: 8px; /* for vertical scrollbars */
    height: 8px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    color: #00bfff;
}

::-webkit-scrollbar-thumb {
    /*background: rgba(0, 0, 0, 0.5);*/
    background: #5bc0de;
}



.event-title-container {
    /*max-height: 130px;
    min-height: 130px;
    overflow-x: hidden;
    overflow-y: auto;*/
}

.event-location, .event-date {
    padding-left: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

.progress-bar {
    -webkit-transition: none !important;
    transition: none !important;
}

.main-event-container {
    display: none;
    /*border: solid 2px #d5cece;*/
    padding-right: 24px !important;
}

@media screen and (max-width: 600px) {
    /*.topnav a {
        float: none;
        width: 100%;
    }*/
    .event-date-container {
        text-align: left !important;
        padding-top: 8px;
    }
}

.header-row2 {
    font-size: 14px;
}

.event-banner-container {
    padding-left: 0px;
}

button.sw-btn-next, button.sw-btn-prev {
    /*background-color: #5bc0de !important;*/
    min-width: 100px;
}

button.sw-btn-prev {
    float: left;
}

button.disabled, button[disabled] {
    cursor: no-drop !important;
}

button:disabled,
button[disabled],
button.disabled {
    border: 1px solid #999999 !important;
    background-color: #cccccc !important;
    color: #666666 !important;
    text-shadow: 1px 1px #ffffff;
}

div.sw .tab-content:not(.payment-options), #chart-container {
    min-height: 600px;
}

.session-list, .order-summary-container {

}

.session-list, session-attendee-list {
    max-height: 600px;
    /*overflow-y: scroll;*/
    overflow-x: hidden;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    /*padding-right: 16px !important;*/
}

.your-information {
    overflow-x: hidden;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.your-information {
    /*min-height: 600px;*/
    border-right: solid 1px #d5cece;
    overflow-y: hidden !important;
}
#step-3 {
    padding-top: 0px;
    padding-bottom: 0px;
}

div.toolbar-bottom {
    border-top: solid 1px #d5cece;
}

div.view-pane {
    border: solid 1px #d5cece;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.terms-conditions {
    min-height: 400px;
    max-height: 525px;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    text-align: justify;
    padding: 12px 12px 12px 12px;
}

    .terms-conditions p {
        text-align: justify;
        padding: 12px 12px 12px 12px;
        width: 100%;
    }

div.tab-content div.tab-pane {
    width: 100% !important;
}

/* The container */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom checkbox */
    .container-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        /*background-color: #eee;*/
        border: solid 1px #ccc;
    }

    /* On mouse-over, add a grey background color */
    .container-checkbox:hover input ~ .checkmark {
        /*background-color: #ccc;*/
        border: solid 1px #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .container-checkbox input:checked ~ .checkmark {
        background-color: #5bc0de;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .container-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .container-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .container-checkbox .checkmark:after {
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .container-checkbox p {
        font-size: 16px;
    }

@media screen and (max-width: 600px) {
    /*.topnav a {
        float: none;
        width: 100%;
    }*/
    .sw-btn-prev, button.sw-btn-next, button.place-order {
        width: 100% !important;
        margin-bottom: 8px !important;
    }
}

h4.session-title {
    font-weight: bold;
    margin-top: 0px;
}

    h4.session-title.inactive, .session-status.inactive, .event-session-detail.inactive, .event-session-detail.inactive h4 {
        color: #a9a8b3 !important;
    }

.event-session-detail:not(:last-child) {
    border-bottom: solid 1px #d5cece;
    border-right: solid 1px #d5cece;
}

.event-session-detail:last-child {
    border-right: solid 1px #d5cece;
}

/*.event-session-detail .session-detail-container {
    border-bottom: solid 1px #d5cece;
    padding-right: 0px;
}*/
.session-detail-container {
    padding-top: 28px;
    /*border-top: solid 1px #d5cece;*/
}

.session-detail-container:first-child {
    /*border-top: solid 1px #d5cece;*/
}


.event-session-detail + .event-session-detail {
    margin-top: 12px;
}

.event-session-detail {
    padding-bottom: 12px;
    margin-top: 0px !important;
}


.session-description {
    font-size: 16px;
    text-align: justify;
}

.sale-valid-till, .ticket-purchase-detail, .session-date-time {
    padding-top: 8px;
    font-size: 14px;
}

.ticket-purchase-detai {
    font-weight: bold;
}

.sale-valid-till i, .session-date-time i {
    padding-right: 4px;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

h5.ticket-label {
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.ticket-item-price {
    color: #8e8e8e;
}


.modal {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.fade-scale {
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.fade-scale.in {
    opacity: 1;
    transform: scale(1);
}

.modal-body {
    width: 100%;
}

.seatsio-loading-screen {
    width: 100%;
}

.modal-header {
    /*background-color: #000000;*/
    /*background-color: #1967be;*/
    background-color: #5bc0de;
    color: white;
    font-weight: bold;
}

.modal-header button.close {
    color: white;
}

.modal-header h4 {
    font-weight: bold;
}

.session-list div.row div[class^=col-]:first-child, .order-summary-container, .order-summary, .session-attendee-list {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 600px;
}

.time-running-out {
    color: red;
}

h5.timer {
    float: right;
    padding-right: 8px;
    font-size: 18px;
    margin-bottom: 4px;
}

.count-down-container {
    display: none;
}

.ticker {
    font-weight: bold;
}

.session-order-items-list {

}

    .session-order-items-list .panel-group .panel-heading {
        font-weight: bold;
    }
        .session-order-items-list .panel-group .panel-heading span.title {
            margin-top: 0px !important;
            margin-bottom: 0px !important;
        }

.session-order-item-header {
    cursor: pointer;
    font-size: 16px;
}

.session-total {
    float: right;
}

[id^=session-cart-item] .panel-body {
    max-height: 150px;
    overflow-y: auto;
}

.cart-item-row  {
    padding-bottom: 8px;
}

.seat-legend {
    min-width: 12px;
    max-width: 12px;
    min-height: 12px;
    max-height: 12px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

.cart-item-price {
    color: #afafaf;
}

.fa-trash-o {
    color: red;
    float: right;
    cursor: pointer;
}
.seatsio-loading-screen {
    width: 100% !important;
}

.cart-item-row div[class^=col-] {
    word-wrap: break-word;
}

.panel-group .panel-heading span.title::before {
    content: '\f055';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    margin-left: 5px;
    padding-right: 8px;
}

.panel-group .panel-footer {
    font-size: 14px;
    text-align: right;
    border-top: solid 1px #dddddd;
    font-weight: bold;
    text-transform: uppercase;
}
/*.panel-group .panel-footer span.session-total {
    font-size: 14px;
    padding-bottom: 8px;
}*/

    .session-total:after {
        /*content: '\f055';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    margin-left: 5px;*/
        /*color: red;*/
    }

.cart-item-row div[class^=ticket-title] {
    text-transform: capitalize;
}

.summary-row {
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 12px;
    /*padding-bottom: 12px;*/
}
    .summary-row .sub-total {
        font-weight: bold;
        
    }

    /*.summary-row + .summary-row {
        padding-top: 12px;
    }*/
/*.grand-total {
    border-top: solid 1px #afafaf;
    border-bottom: solid 1px #afafaf;
}*/

.toolbar .btn-success:not(:disabled) {
    color: #ffffff !important;
    background-color: #3fb618 !important;
    border-color: #3fb618 !important;
}

.bootbox-body {
    font-size: 15px;
}

.nav-link.active {
    cursor: no-drop !important;
}

.nav-item a {
    font-size: 16px;
}

.required-field label::after {
    padding-left: 4px;
    content: "*";
    color: #b64645
}

/*.user-info {
    padding-bottom: 8px;
}*/

.your-information div[class^=col-] {
    padding-bottom: 12px;
}

.your-information .panel-heading h4 {
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
}

em {
    display: none !important;
}

em.error {
    color: #ff0039;
}

.form-control.has-error {
    border: solid 1px #ff0039;
}

em.has-error {
    display: block !important;
}

.event-title-container p, span.event-location, .event-date-container {
    font-size: 16px !important;
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width: 1200px;
    }
}
div.bootstrap-select button {
    background-color: transparent !important;
    border-color: #e6e6e6 !important;
}

.filter-option-inner-inner {
    color: black !important;
}

.tab-content.payment-options {
    margin-bottom: 12px;
}

.tab-content {
    border: 1px solid #dddddd;
    padding: 16px;
}

textarea {
    resize: none;
}

.registration-offline {
    font-size: 24px;
    margin: 0 auto;
}

.hidden-container {
    display: none;
    visibility: hidden;
}


/*@media screen and (max-width: 850px) {
    .session-list, .session-list div.row div[class^=col-]:first-child, .order-summary-container {
        overflow: hidden !important;
    }

    .tab-content #step-2 {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    .session-list div.row div[class^=col-]:first-child, .order-summary-container {
        max-height: 3600px !important;
    }

}*/

@media screen and (max-width: 915px) {
    .session-list, .session-list div.row div[class^=col-]:first-child, .order-summary-container {
        /*overflow: hidden !important;*/
    }

    .tab-content #step-2 {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .session-list div.row div[class^=col-]:first-child, .order-summary-container, .order-summary {
        max-height: 14400px !important;
    }
}

div.scroll {
    max-height: 750px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 12px;
}

.your-information {
    padding-right: 0px;
    padding-left: 0px;
}

.payment-method-tab-heading {
    text-align: left !important;
}

.session-mandatory {
    color: red;
    font-size: 20px;
    padding-left: 4px;
}

.session-order-items-list .is-mandatory::after {
    padding-left: 4px;
    content: "*";
    color: red;
}

.form-group.required .control-label::after {
    padding-left: 4px;
    content: "*";
    color: red;
}

.form-group.valid small {
    display: none;
}

.form-group.invalid {
    display: block !important;
}