/* Calvin styles patials and colors
==========================================*/
.modal-open {
    overflow: hidden;
}

.modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -moz-transition: -moz-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal-header {
    min-height: 16.42857143px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    font-size: 26px;
    line-height: 28px;
}

.modal-body {
    position: relative;
    padding: 20px;
}

.modal-footer {
    padding: 19px 20px 20px;
    margin-top: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
    }

    .custom-modal {
        width: 800px;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}
/* Dropdowns
/*------------------------------*/
.dropdown {
    position: absolute;
    z-index: 9999999;
    display: none;
}
#dropdown-1 {
    background-color: #333;
}
#dropdown-1 a{
    float:left;
    width:100%;
}

    .dropdown .dropdown-menu,
    .dropdown .dropdown-panel {
        background-color: #333;
        min-width: 160px;
        max-width: 360px;
        list-style: none;
        border: solid 1px #DDD;
        border: solid 1px rgba(0, 0, 0, 0.2);
        border-radius: 6px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
       
       text-align:left;
    }

    .dropdown .dropdown-panel {
        padding: 10px;
        background-color: #333 !important;
    }
    .dropdown .dropdown-panel a{
        float:left;
    }


/*
    .dropdown.dropdown-tip:before {
        position: absolute;
        top: -6px;
        left: 43px;
        content: '';
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #CCC;
        border-bottom-color: rgba(0, 0, 0, 0.2);
        display: inline-block;
       
    }

        .dropdown.dropdown-tip.dropdown-anchor-right:before {
            left: auto;
            right: 9px;
        }

        .dropdown.dropdown-tip:after {
            position: absolute;
            top: -5px;
            left: 44px;
            content: '';
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid #FFF;
            display: inline-block;
        }

        .dropdown.dropdown-tip.dropdown-anchor-right:after {
            left: auto;
            right: 10px;
        }
        */

    .dropdown.dropdown-scroll .dropdown-menu,
    .dropdown.dropdown-scroll .dropdown-panel {
       
        overflow: auto;
    }

    .dropdown .dropdown-menu LI {
        list-style: none;
        padding: 0 0;
        margin: 0;
        line-height: 18px;
    }

        .dropdown .dropdown-menu LI > A,
        .dropdown .dropdown-menu LABEL {
            display: block;
            color: #555;
            text-decoration: none;
            line-height: 18px;
            padding: 3px 15px;
            font-size: 14px;
            white-space: nowrap;
        }

            .dropdown .dropdown-menu LI > A:hover,
            .dropdown .dropdown-menu LABEL:hover {
                background-color: #f6303e !important;
                color: #FFF;
                cursor: pointer;
            }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background: #f6303e !important;
}

.dropdown .dropdown-menu .dropdown-divider {
    font-size: 1px;
    border-top: solid 1px #E5E5E5;
    padding: 0;
    margin: 5px 0;
}

/* Icon Examples - icons courtesy of http://p.yusukekamiyamane.com/ */
.dropdown.has-icons LI > A {
    padding-left: 30px;
    background-position: 8px center;
    background-repeat: no-repeat;
}

.dropdown .undo A {
    background-image: url(icons/arrow-curve-180-left.png);
}

.dropdown .redo A {
    background-image: url(icons/arrow-curve.png);
}

.dropdown .cut A {
    background-image: url(icons/scissors.png);
}

.dropdown .copy A {
    background-image: url(icons/document-copy.png);
}

.dropdown .paste A {
    background-image: url(icons/clipboard.png);
}

.dropdown .delete A {
    background-image: url(icons/cross-script.png);
}

/* Social Buttons Style */
.btn-si {
    background-position: 1em;
    background-repeat: no-repeat;
    background-size: 2em;
    border-radius: 0.5em;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    height: 45px;
    line-height: 16px;
    padding: 0 2em 0 4em;
    text-decoration: none;
    transition: all 0.5s;
    width: 90%;
    margin-bottom: 5px;
}

.btn-google {
    background-color: #dd4b39;
    background-image: url("../images/social-btns/google.svg") !important;
}

    .btn-google:hover {
        background-color: #e47365;
    }

    .btn-google:active {
        background-color: #c23321;
    }

.btn-facebook {
    background-color: #3b5998;
    background-image: url("../images/social-btns/facebook.svg") !important;
}

    .btn-facebook:hover {
        background-color: #4c70ba;
    }

    .btn-facebook:active {
        background-color: #2d4373;
    }

.btn-twitter {
    background-color: #00aced;
    background-image: url("../images/social-btns/twitter.svg") !important;
}

    .btn-twitter:hover {
        background-color: #21c2ff;
    }

    .btn-twitter:active {
        background-color: #0087ba;
    }

.btn-microsoft {
    background-color: #e3b30d;
    background-image: url("../images/social-btns/microsoft.svg") !important;
}

    .btn-microsoft:hover {
        background-color: #f3c730;
    }

    .btn-microsoft:active {
        background-color: #b38d0a;
    }

.btn-github {
    background-color: #2a2a2a;
    background-image: url("../images/social-btns/github.svg") !important;
}

    .btn-github:hover {
        background-color: #444444;
    }

    .btn-github:active {
        background-color: #101010;
    }

.btn-foursquare {
    background-color: #95c330;
    background-image: url("../images/social-btns/foursquare.svg") !important;
}

    .btn-foursquare:hover {
        background-color: #abd452;
    }

    .btn-foursquare:active {
        background-color: #769a26;
    }

.btn-instagram {
    background-color: #906248;
    background-image: url("../images/social-btns/instagram.svg") !important;
}

    .btn-instagram:hover {
        background-color: #ae7a5d;
    }

    .btn-instagram:active {
        background-color: #6e4b37;
    }

.btn-linkedin {
    background-color: #0b5ea3;
    background-image: url("../images/social-btns/linkedin.svg") !important;
}

    .btn-linkedin:hover {
        background-color: #0e7ad3;
    }

    .btn-linkedin:active {
        background-color: #084273;
    }

.btn-evernote {
    background-color: #5ca629;
    background-image: url("../images/social-btns/evernote.svg") !important;
}

    .btn-evernote:hover {
        background-color: #73cd35;
    }

    .btn-evernote:active {
        background-color: #457d1f;
    }

.btn-dropbox {
    background-color: #1b73d1;
    background-image: url("../images/social-btns/dropbox.svg") !important;
}

    .btn-dropbox:hover {
        background-color: #3a8de5;
    }

    .btn-dropbox:active {
        background-color: #155aa4;
    }

.btn-si-a {
    padding: 10px 15px 10px 65px !important;
    font-family: arial;
}

.smaller .btn-si-a {
    padding-left: 40px !important;
    font-size: 12px;
}

/* Tooltips
/* -------------------------*/
a.tooltips {
    position: relative;
    display: inline;
}

    a.tooltips span {
        position: absolute;
        width: 140px;
        color: #FFFFFF;
        background: #343434;
        height: 30px;
        line-height: 30px;
        text-align: center;
        visibility: hidden;
        border-radius: 5px;
    }

        a.tooltips span:after {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -8px;
            width: 0;
            height: 0;
            border-bottom: 8px solid #343434;
            border-right: 8px solid transparent;
            border-left: 8px solid transparent;
        }

a:hover.tooltips span.hours {
    visibility: visible;
    opacity: 0.8;
    top: 30px;
    width: 200px;
    height: 65px;
    left: 50%;
    margin-left: -76px;
    z-index: 999;
}

a:hover.tooltips span {
    visibility: visible;
    opacity: 0.8;
    top: 30px;
    width: 200px;
    left: 50%;
    margin-left: -76px;
    z-index: 999;
}

/* Slide out tab online
/* -------------------------*/
.slide-out-div-online {
    padding: 20px 20px;
    width: 250px;
    background: #FFF;
    z-index: 1000;
    border: 1px solid #d1d1d1;
    text-align: center;
}

    .slide-out-div-online h4 {
        color: #343434;
        padding: 0;
        margin: 0 0 10px 0;
    }

    .slide-out-div-online .btn.contact {
        margin: 15px 0 0 0;
    }

a.handle {
    width: 154px;
    top: 24px !important;
    display: block;
    left: 5px !important;
    height: 49px;
    font: bold 16px/49px 'Montserrat', sans-serif;
    z-index: 1000;
    margin: -25px 0 0 -52px;
}

/* Slide out tab online
/* -------------------------*/
.slide-out-div-offline {
    padding: 20px 20px;
    width: 250px;
    background: #FFF;
    border: 1px solid #d1d1d1;
    text-align: left;
}

    .slide-out-div-offline p {
        margin-bottom: 20px;
    }

    .slide-out-div-offline label {
        font-weight: 400;
        color: #343434;
    }

/* Grey bg info boxes
/*------------------------------*/
.delivery, .confirmation {
    background: whitesmoke;
    padding: 25px 20px;
    margin: -20px 0 33px 0;
    clear: both;
}

    .delivery h2, .confirmation h2 {
        border-bottom: 1px solid #d1d1d1;
        font-weight: 900;
        margin: 0 0 23px 0;
        padding-bottom: 27px;
    }

    .delivery label, .delivery p, .confirmation label, .confirmation p {
        color: #343434;
    }

    .delivery ul, .confirmation ul {
        padding: 0;
    }

    .delivery li, .confirmation li {
        display: inline-block;
    }

        .delivery li.inline_btn, .confirmation li.inline_btn {
            margin-left: 20px;
        }

    .delivery .buttons, .confirmation .buttons {
        font-size: 16px;
        text-align: right;
    }

.how-to-information {
    border: 1px solid #d1d1d1;
    background: whitesmoke;
    padding: 15px 20px 25px 20px;
    margin: 0px 0 63px 0;
}

    .how-to-information h3 {
        font-size: 18px;
    }

.contact-panel {
    margin: 0;
    background: whitesmoke;
    padding: 20px 20px 20px 20px;
}

    .contact-panel ul {
        padding: 0;
    }

    .contact-panel li {
        list-style: none;
    }

    .contact-panel .heading {
        border-bottom: 1px solid #d1d1d1;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .contact-panel h2 {
        font-size: 23px;
        padding: 0;
        margin: 0 0 5px 0;
    }

    .contact-panel h3 {
        font-size: 28px;
        padding: 0;
        margin: 0 0 15px 0;
    }

/* General styling and overrides
/*------------------------------*/
li.tel-number-lg {
    color: #343434;
    font-size: 20px;
}

p.intro {
    font-size: 22px;
}

.primary {
    color: #f6303e;
}

.nav a.home {
	background: #343434;
}

.terms h3 {
    font-size: 18px;
}

.social-sign-up {
    width: 290px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 43px;
}

.border-lft {
    border-left: 1px solid #d1d1d1;
}

.form-section .form-horizontal.profile {
    max-width: 100%;
}

.summary-table .total .row-title {
    border-bottom: 0;
}

.icon-cashless {
    float: right;
    margin-right: 5px;
}

.eft_details.col-sm-12 {
    margin-bottom: 20px;
    margin-top: 10px;
}

.summary-table .no-round td:first-child + td {
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
}

/* Buttons and Button-groups
/*=========================================*/
.buttons.send {
    text-align: right;
}

    .buttons.send .btn {
        padding: 16px 15px 15px;
        width: 147px;
    }

.button-group {
    margin: 0 0 33px 0;
}

    .button-group .btn-primary {
        padding: 10px 20px;
    }

        .button-group .btn-primary:focus, .button-group .btn-primary.active {
            background-color: #343434;
        }

.btn-primary.accountMenuActive {
    background-color: #f20d1f;
}

.btn-primary.accountMenu {
    background-color: #343434;
}


.buttons.pro, .buttons.reg {
    margin-right: 96px;
}

.buttons.reset {
    text-align: left;
}

.summary .buttons .btn {
    padding: 16px 15px 15px;
    width: 147px;
}

.summary .action_buttons {
    float: right;
    margin: 20px 0 0 0;
    width: 186px;
}

    .summary .action_buttons .btn {
        width: 188px;
        padding: 14px 13px 13px;
        margin-bottom: 5px;
    }

.btn-outline {
    border: 1px solid #343434;
    color: #343434;
    background: none;
}

    .btn-outline:hover {
        border-color: #202020;
        color: #202020;
    }

.form-section strong.EFT {
    display: block;
    min-width: 180px;
    position: relative;
    width: 180px;
}

.section-content.text h2 {
    margin-bottom: 15px;
}

.section-content.text p {
    margin-bottom: 33px;
}

.section-content .eft_details {
    margin: 0 0 43px 0;
    display: block;
}

    .section-content .eft_details p {
        color: #343434;
        margin: 10px 0 0;
    }

.form-section .buttons {
    float: right;
}

.profile .buttons {
    padding-right: 0;
}

.sharethis {
    float: left;
    margin-top: 20px;
}

.reg-button {
    text-align: center;
    padding-bottom: 20px;
}

.login-button, .change-button {
    text-align: right;
    margin-right: 16px;
}

.confirmation .buttons .btn {
    width: auto;
}

.social-networks li a:hover {
    opacity: 0.5;
}

.social-sign-up-mobile {
    display: none;
}

.summary-table .promo-form .btn {
    padding-top: 0;
}

.btn-google {
    background-image: url("/Content/Plankton/Images/google.png") !important;
    background-image: none, url("/Content/Plankton/Images/google.png"), url("/Content/Plankton/Images/google.png") !important;
    background-repeat: no-repeat !important;
    line-height: 22px !important;
}

.btn-facebook {
    background-image: url("/Content/Plankton/Images/facebook.png") !important;
    background-image: none, url("/Content/Plankton/Images/facebook.png"), url("/Content/Plankton/Images/facebook.png") !important;
    background-repeat: no-repeat !important;
    line-height: 22px !important;
}

.btn-twitter {
    background-image: url("/Content/Plankton/Images/twitter.png") !important;
    background-image: none, url("/Content/Plankton/Images/twitter.png"), url("/Content/Plankton/Images/twitter.png") !important;
    background-repeat: no-repeat !important;
    line-height: 22px !important;
}

.btn-linkedin {
    background-image: url("/Content/Plankton/Images/linkedin.png") !important;
    background-image: none, url("/Content/Plankton/Images/linkedin.png"), url("/Content/Plankton/Images/linkedin.png") !important;
    background-repeat: no-repeat !important;
    line-height: 22px !important;
}

/* Event Preview Boxes
/*------------------------------*/
.event_details_sharethis {
    margin-top: 20px;
}

.event_details_sml img {
    float: left;
}

.event_details_sml ul {
    margin-left: 130px;
}

.event_details_sml li {
    list-style: none;
    line-height: 30px;
}

.event_details_cash {
    clear: both;
    margin-bottom: 53px;
}

    .event_details_cash img {
        float: left;
    }

    .event_details_cash ul {
        display: inline-block;
    }

    .event_details_cash li {
        list-style: none;
        line-height: 25px;
    }

.event_details_cards {
    clear: both;
    margin-bottom: 33px;
}

    .event_details_cards img {
        float: left;
    }

    .event_details_cards ul {
        display: inline-block;
    }

    .event_details_cards li {
        list-style: none;
        line-height: 25px;
    }

.heading.promo, .heading.tickets, .incomplete-info {
    margin-bottom: 33px;
}

/* Customs forms
/*------------------------------*/
.email-update-modal .form-control,
.terms-modal .form-control {
    margin-bottom: 8px;
}

textarea {
    height: 100px !important;
}

/* Validation
/*------------------------------*/
ul.validation li {
    list-style: none;
    color: #5ec533;
    line-height: 45px;
}

    ul.validation li i {
        padding-right: 10px;
    }

.validation.success {
    color: #5ec533 !important;
    display: inline-block;
    margin-left: 16px;
    margin-top: -27px;
}

.validation.error {
    color: #e21111 !important;
    display: inline-block;
    margin-left: 16px;
    padding-top: 13px;
}

.error-input input {
    border: 1px solid #e21111;
}

.success-input input {
    border: 1px solid #5ec533;
}

.checked-mark {
    padding-top: 14px;
}

.icon-check.active {
    color: #f6303e;
}

.has-feedback .icon-check-circle-o, .has-feedback .icon-times-circle-o {
    padding-top: 5px;
    font-size: 20px;
}

.confirmation-success {
    padding: 10px 10px 0 10px;
    border: 1px solid #cde4c4;
    text-align: center;
    color: #343434;
}

/* Input icons
/* -------------------------*/
.right-inner-addon {
    position: relative;
}

    .right-inner-addon input {
        padding-right: 30px;
    }

    .right-inner-addon i {
        position: absolute;
        right: 0px;
        padding: 14px 12px 10px 12px;
        pointer-events: none;
    }

.form-horizontal select.form-control, .order-form select.form-control {
    background-image: url("../images/arrow.gif") !important;
    background-position: right 10px center;
    background-repeat: no-repeat !important;
    height: 100% !important;
    position: static !important;
    vertical-align: top !important;
    white-space: nowrap;
}

a i {
    color: #d1d1d1;
}

    a i:hover {
        color: black;
        text-decoration: none !important;
    }

span.icon-banknote {
    font-size: 30px;
    float: right;
    margin-right: 20px;
    color: #f6303e;
}

span.date {
    color: #343434;
    padding: 8px 20px;
    border: 1px solid #343434;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    float: right;
    margin-right: 50px;
    margin-top: -35px;
}

/* Rightside tooltips
/* -------------------------*/
a.tooltips-right {
    display: inline-block;
}

    a.tooltips-right:hover {
        text-decoration: none;
    }

    a.tooltips-right span {
        position: absolute;
        width: 140px;
        padding: 2px 5px 5px 5px;
        color: #ffffff;
        background: #343434;
        height: inherit;
        line-height: 22px;
        text-align: center;
        visibility: hidden;
        border-radius: 5px;
    }

        a.tooltips-right span:after {
            content: '';
            position: absolute;
            top: 42%;
            right: 100%;
            margin-top: -8px;
            width: 0;
            height: 0;
            border-right: 8px solid #343434;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

a:hover.tooltips-right span {
    visibility: visible;
    opacity: 0.8;
    left: 100%;
    top: 42%;
    min-width: 300px;
    margin-top: -15px;
    margin-left: 15px;
    z-index: 999;
    margin-left: 0 !important;
}

/* Tables
/*==========================*/
table.voucher_sum {
    max-width: 500px;
}

    table.voucher_sum thead {
        border: 0;
        text-align: left;
        border-radius: 0;
        display: table;
    }

    table.voucher_sum th:first-child {
        text-align: left;
        width: 500px;
        padding-left: 10px;
    }

    table.voucher_sum td {
        text-align: left;
        padding: 10px 10px;
        display: block;
        border-left: 1px solid #d1d1d1;
    }

td.left-align, th.left-align {
    text-align: left;
    padding-left: 25px;
}

table.incomplete-table thead td {
    border-top: 1px solid #d1d1d1;
    font-weight: 600;
    background-color: #e3e3e3;
}

table.incomplete-table tr:last-child td:last-child {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.voucher_summary {
    display: block;
    margin: 55px 0 55px 0;
}

.offers-table {
    border: 0;
}

    .offers-table tr td {
        border-bottom: 1px solid #d1d1d1 !important;
    }

    .offers-table td {
        border: 0;
        border-radius: 0;
    }

table.offers-table tr:last-child td:last-child {
    border-radius: 0;
    text-align: left;
}

table.offers-table td:first-child {
    text-align: left;
}

/* Seating image holders
/*=========================================*/
.seat-holder {
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 35px;
    padding-left: 0;
    padding-top: 6px;
}

    .seat-holder iframe {
        width: 100%;
    }

    .seat-holder img {
        display: block;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        max-width: 100%;
    }

.open-seat {
    background-color: #5ec533;
}

    .open-seat.seat:hover, .open-seat.seat:focus {
        background: #fcff00;
    }

.reserved-seat {
    background-color: #F6303E;
}

.open-seat:hover {
    background-color: #82c46e;
	color:#343434;
}

.seat.selected {
    background-color: #fcff00;
	color:#343434;
}

.seat-table td {
    border: solid 1px #fff;
    color: #fff;
    border-radius: 5px;
    font-size: 8px;
    padding: 5px 1px;
    font-weight: bold;
}

.seat-table td.seat-row {
	color:#000;
    font-size: 16px;
}

.seating-front {
	background-color:#000;
	color:#fff;
	text-align: center;
	width: 100%;
}

.seat-table tr {
    line-height: 15px;
}

.seat-table {
    cursor: pointer;
    width: 100%;
    border-collapse: collapse;
}

.order-form table.seat-table td {
    height: 0;
}

/* Datepicker and gobtn
/* -------------------------*/
.datepicker {
    margin: 43px 0 23px 0;
}

    .datepicker .go_btn {
        padding: 2px 10px 2px 10px;
        margin: 0 0 0 10px;
        width: 56px;
        height: 45px;
    }

    .datepicker input {
        box-shadow: none;
        -webkit-box-shadow: none;
        border: 1px solid #d1d1d1;
        border-radius: 3px;
        height: 45px;
        padding: 0 10px;
    }

.barcode-popup {
    text-align: center;
}

    .barcode-popup ul {
        padding: 5px 0;
        margin: 0;
        background: #dedede;
    }

    .barcode-popup li {
        display: inline-block;
        padding: 0 10px;
    }

    .barcode-popup h1 {
        text-align: left;
        margin-bottom: 30px;
    }

        .barcode-popup h1 span {
            float: right;
            font-size: 16px;
            padding-top: 10px;
        }

    .barcode-popup img {
        margin-top: 20px;
    }

/* Modal
/* -------------------------*/
.requestinfo .form-group, .email-update-modal .form-group,
.terms-modal .form-group {
    padding: 20px 0;
}

.requestinfo .buttons, .email-update-modal .buttons,
.terms-modal .buttons {
    text-align: right;
    margin-right: 16px;
}

.requestinfo span.star, .email-update-modal span.star,
.terms-modal span.star {
    color: #f6303e;
}

.requestinfo .continue_btn, .email-update-modal .continue_btn,
.terms-modal .continue_btn {
    margin-top: 10px;
}

#contact-us ul {
    margin: 0 0 20px 0;
    padding: 0;
}

#contact-us li {
    list-style: none;
}

.custom-modal .modal-content {
    min-height: 500px !important;
    width: 800px;
    margin: 0 auto;
    position: relative;
}

.modal-dialog {
    margin: 125px auto;
}

button.close {
    float: right;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background-color: #f6303e;
    color: white;
    height: 20px;
    padding-top: 0;
    border: 0 !important;
}

    button.close:hover {
        background-color: #343434;
    }

.barcode {
    border-bottom: 1px solid #d1d1d1;
    padding: 9px 10px;
}

.login-modal input {
    margin: 5px 0;
}

.login-modal label {
    padding-top: 4px;
}

.login-modal .star {
    color: #f6303e;
}

#register_modal .form-control {
    margin: 3px 0;
}

.btn.btn-primary.continue_btn {
    margin-right: 16px;
    margin-top: 10px;
    cursor: pointer !important;
}

/* Responsive Modal */
@media (min-width: 1200px) {
    .modal.container {
        width: 1170px;
        margin-left: -585px;
    }
}

@media (max-width: 979px) {
    .modal-dialog {
        margin: 28px auto;
    }

    .modal,
    .modal.container,
    .modal.modal-overflow {
        top: 1%;
        right: 1%;
        left: 1%;
        bottom: auto;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 10px !important;
    }

        .modal.fade.in,
        .modal.container.fade.in,
        .modal.modal-overflow.fade.in {
            top: 1%;
            bottom: auto;
            overflow: hidden;
        }

    .modal-body,
    .modal-overflow .modal-body {
        position: static;
        margin: 0;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .modal-footer,
    .modal-overflow .modal-footer {
        position: static;
    }
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
}

/* Media Queries
/*------------------------------*/
@media only screen and (max-width: 990px) {
    .slide-out-div-online, .slide-out-div-offline {
        display: none;
    }

    .custom-modal .modal-content {
        height: auto;
        width: 100%;
    }

    .btn-si {
        width: 100%;
    }

    .border-lft {
        border: 0 !important;
    }

    .social-sign-up {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .modal-dailog, .custom-modal {
        margin: 28px auto !important;
        position: relative;
        width: auto;
    }
}

@media only screen and (min-width: 768px) {
    .event_details_sml {
        margin-bottom: 60px;
    }

    .login-button.pairing {
        float: none;
        text-align: left;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {

    .reg-button.pair {
        text-align: left;
    }

    .reg-button a.pair {
        margin-left: 25px;
    }

    .login-header-text {
        margin-left: 15px;
    }

    .delivery li.inline_btn {
        margin-left: 0;
    }

    .section-content .eft_details p {
        font-size: 16px;
    }

    .form-section .buttons, .buttons.send, .confirmation .buttons {
        text-align: left;
        float: none;
    }

        .buttons.send .btn, .summary .action_buttons .btn, .buttons .btn, .summary .buttons .btn {
            font-size: 16px;
            line-height: 20px;
            padding: 8px 12px;
        }

    .buttons .btn {
        font-size: 16px !important;
        min-width: 130px;
        width: 126px;
    }

    .summary .action_buttons {
        margin-top: 33px;
        text-align: left;
        float: none;
        width: 100%;
    }

        .summary .action_buttons .btn, .buttons.send .btn {
            width: 100%;
        }

    .summary .buttons {
        margin-top: 33px;
    }

    .event_details_sml {
        margin-bottom: 40px;
    }

    .event_details_sharethis {
        margin-left: 0;
        padding-left: 0;
    }

    table.voucher_sum thead {
        border: 0;
        text-align: left;
        border-radius: 0;
        width: 100%;
    }

    table.voucher_sum tr:nth-child(2n+1) td {
        background: white;
    }

    table.voucher_sum tr:first-child td:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    table.voucher_sum th:first-child {
        text-align: left;
    }

    table.voucher_sum td {
        text-align: left;
        padding: 10px 10px;
        display: block !important;
        border-left: 1px solid #d1d1d1;
        border-bottom: 1px solid #d1d1d1;
    }

        table.voucher_sum td:before {
            content: none;
        }

    td.left-align, th.left-align {
        text-align: center;
    }

    #ui-datepicker-div {
        left: 50px !important;
        z-index: 5 !important;
    }

    .requestinfo .form-group, .email-update-modal .form-group,
    .terms-modal .form-group {
        padding: 5px 0;
        margin: 0;
    }

    .hasDatepicker {
        width: 83px;
    }

    .form-datepicker {
        width: 100%;
    }

    .datepicker label {
        font-size: 14px;
    }

    .datepicker .buttons {
        text-align: right;
    }

    .right-inner-addon i {
        padding-top: 9px;
    }

    .buttons.pro, .buttons.reg {
        margin: 0 0 0 -20px;
    }

        .buttons.pro .btn, .buttons.reg .btn {
            min-width: 92px !important;
            font-size: 16px !important;
        }

    .incomplete-transaction-btns .btn {
        min-width: 100px !important;
    }

    .checked-mark {
        padding-top: 0;
        padding-bottom: 5px;
    }

    .button-group .btn-primary {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .confirmation-success {
        margin-top: 10px;
    }

    .social-sign-up {
        margin-top: 0px;
    }

    .btn-si {
        width: 100%;
    }

    .border-lft {
        border: 0 !important;
    }

    .modal-dailog, .custom-modal {
        margin: 28px auto !important;
    }

    .event_details_cards ul, .event_details_cash ul {
        display: inline-block;
        padding: 10px 0 0 10px;
        margin: 0px 0 0 0;
    }

    .event_details_cards img {
        clear: both;
    }

    span.date {
        font-size: 14px;
        float: none;
        margin-right: 0;
        margin-top: 8px;
        width: 128px;
        display: block;
        clear: both;
        padding: 5px 15px;
    }

    .custom-modal .modal-content {
        height: auto;
        width: 100%;
    }

    .reg-button .btn {
        font-size: 16px;
    }

    .social-sign-up-mobile {
        display: block;
        width: 270px;
        margin: 0 auto;
    }

        .social-sign-up-mobile .btn-si {
            width: auto !important;
            padding-left: 2em;
            padding-right: 2em;
        }

    .social-sign-up {
        display: none;
    }

    .summary-table .promo-form {
        margin: 10px 0;
        padding: 0;
    }

    .promo-form label {
        font-size: 16px !important;
        color: #343434;
    }

    .promo-form .form-holder {
        margin-left: 0px !important;
        border: 1px solid #d1d1d1;
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        padding: 2px;
    }

    .promo-form {
        padding: 4px 0;
        margin-top: 20px;
    }

    table.summary-table .description, table.select-table .description {
        max-width: 196px;
    }

    .eventFilterHeading {
        padding-bottom: 20px;
    }

    .eventFilterSearch {
        width: 107px !important;
        margin-right: 2px !important;
    }

    .eventFilterParagraph {
        margin: 24px 0px 0px !important;
    }

    .eventFilterDatePicker {
        margin-right: 2px !important;
    }
}
/*===========Offers============*/
#optindiv label {
    padding: 5px 0 0 0;
    text-align: left;
}

#optindiv .control-label {
    text-align: left;
}

input.custom-check {
    margin-top: 9px;
    margin-left: 0px;
}

.opt-table .form-control {
    position: static;
}

.offers .opt-table tr:last-child td:last-child {
    border-radius: 0;
}

.opt-table .form-control {
    padding-top: 6px;
}

.opt-form.form-control {
    width: 90%;
    margin-top: 10px;
}

.opt-table .checkbox label {
    display: inline-block;
}

.custom-check input[type="checkbox"] {
    margin-top: 10px;
}

.opt-table .discription p, .opt-table .checkbox label {
    margin-top: 10px;
}

select.form-control.valid.opt-form {
    background-image: url("images/arrow.gif") !important;
    background-position: right 10px center;
    background-repeat: no-repeat !important;
}

#optindiv .label-pos label {
    padding-top: 16px;
    line-height: 16px;
}

.long-desc {
    padding-left: 14px;
    text-align: left;
}

/*===========MEDIA QUERY============*/
@media only screen and (max-width:767px) {
    /*  .opt-table .checkbox {border-bottom: 1px solid #D1D1D1; padding: 7px 5px;}*/
    .opt-table .checkbox, .opt-table .discription {
        border-bottom-color: #D0D0D0;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        display: table-cell;
        overflow-x: hidden;
        overflow-y: hidden;
        padding-bottom: 5px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        vertical-align: middle;
    }

    #optindiv .control-label {
        text-align: center;
    }

    input.custom-check {
        float: none !important;
    }
}

.addthisevent {
    visibility: hidden;
}

.btn-holder {
    clear: both;
}
/**** Event Technology ****/
.pdf_holder {
    text-align: center;
    position: relative;
}

.pdf_insert {
    margin-top: 20px;
}

.pdf_holder {
    text-align: center;
    position: relative;
}

.view_pdf_btn {
    background: #f6303e;
    color: #FFFFFF;
    border-radius: 60px;
    width: 120px;
    height: 120px;
    top: 45px;
    right: 60px;
    text-align: center;
    line-height: 17px;
    position: absolute;
    font-size: 18px;
    padding: 48px 0 10px 0px;
    font-weight: bold;
}

@media only screen and (max-width:767px) {
    .view_pdf_btn {
        left: 34%;
        margin-top: 15px;
    }
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
    .view_pdf_btn {
        left: 30%;
        margin-top: 15px;
    }

    table.summary-table .description, table.select-table .description {
        margin-right: -10px;
    }
}

.checkout-overlay {
    position: absolute;
    right: 133px;
    top: 75px;
}

    .checkout-overlay p {
        color: #F43443;
        margin: 0px;
        font-weight: bold;
    }

.arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #F43443;
}

.checkout-overlay .arrow-down {
    margin-left: 25px;
}

.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.fileUploader {
    background-color: #F20D1F !important;
    border-color: #F20D1F !important;
}

@font-face {
	font-family: 'FontAwesome';
	src: url('/Content/FontAwesome/fonts/FontAwesome.otf') format('opentype');
}

.cart-panel .confirmed-date-input-container {
	position: relative;
}

	.cart-panel .confirmed-date-input-container .icon {
		font-family: FontAwesome;
		position: absolute;
		top: 6px;
		right: 10px;
		font-size: 1.5em;
		content: "\f007";
		cursor: pointer;
		cursor: hand;

		color: #f6303e;
	}