html, body {
    padding:0;
    margin:0;
    font-family:'Lato', sans-serif;
    background-color:#eeeeee;
    height:100%;
}
* {
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
input {
    background-color: #f5f5f5;
    border: none;
    color: #2a2a2a;
    font-size: 17px;
    font-family: Helvetica,sans-serif;
    padding: 10px 7px 10px;
    border: 1px solid #77be45;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
    border-radius:5px;
}
*:focus {
    outline: none;
}
.h1 {
    font-size:50px;
    text-align:center;
    font-weight:900;
}
.h2 {
    font-size:35px;
    text-align:center;
    font-weight:700;
}
.h3 {
    font-size:20px;
    font-weight:700;
    margin:0;
}
.h2-header {
    margin:0;
    text-align:left;
}
._900 {
    font-weight:900;
}
._700 {
    font-weight:700;
}
._400 {
    font-weight:400;
}
.no-decoration {
    text-decoration:none;
}
.header-content {
    padding-bottom:20px;
}
.header-content span {
    color:#999999;
    font-weight:400;
}
.green {
    color:#77be45;
}
a.a-green {
    color:#77be45;
}
a.a-blue {
    color:#002244;
}
.white {
    color:#fff;
}
.dark-blue {
    color:#002244;
}
.grey9 {
    color:#999999 !important;
}
.red {
    color:red;
}
.blue {
    color:blue;
}
._pad-top-8 {
    padding-top:8px;
}
._pad-top-10 {
    padding-top:10px;
}
._pad-bot-10 {
    padding-bottom:10px;
}
._pad-left-10 {
    padding-left:10px;
}
._margin_bot_10 {
    margin-bottom:10px;
}
._margin_top_8 {
    margin-top:8px;
}
.no-pad {
    padding:0 !important;
    margin:0 !important;
}
.center {
    justify-self:center;
}
.grid-container {
    display:grid;
    grid-template-columns: repeat(12, 1fr);
}
.error {
    color:red;
    font-size:18px;
    font-weight:700;
}
.flare {
    border:1px solid #77be45;
    background-color:#ffffff;
    margin:0 auto;
    border-radius:5px;
    padding:20px 40px;
}
.nav {
    height:48px;
    background-color:#ffffff;
    border-bottom:4px solid #77be45;
}
.nav .logo {
    grid-column:span 4;
}
.nav .logo img {
    height:32px;
    width:auto;
    padding:7px 0 0 10px;
}
.nav .header {
    grid-column:span 8;
}
.standard-container {
    margin:20px;
    grid-row-gap:5px;
}
.standard-container .header-content {
    grid-column:span 12;;
}
.header-nav {
    display:inline;
    height:48px;
    display:flex;
    align-items:center;
    float:right;
    margin-right:25px;
    font-family:'Lato';
}
.login-status {
    font-size:16px;
    font-weight:700;
    color:#002244;
    display:inline;
}
cart a {
    margin-left:15px;
}
.login-status .seperator {
    color:#ffffff;
    font-size:22px;
    margin-left:15px;
}
.login-status a {
    color:#69be28;
    text-decoration:none;
    font-family:'Lato';
    font-weight:700;
}
.header-burger .burger {
    display: block;
    margin:2px 0 0 15px;
    cursor: pointer;
    z-index:1001;
}
.burger {
    width: 25px;
    height: 16px;
    position: relative;
    background-color: transparent;
    border: 0;
}
.burger .bar, .burger:after, .burger:before {
    display: inline-block;
    cursor: pointer;
    top: 7px;
    height: 3px;
    background: #002244;
    border-radius: 10px;
    position: absolute;
    width: 24px;
    transition: all .1s ease-in-out;
    content: '';
}
.burger::before {
    top: 0;
}
.burger::after {
    width: 14px;
    top: 14px;
}


.burger.is-active:before {
    top: 7px;
    animation-name: clockWise;
    animation-duration: 80ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-delay: .4s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards
}

.burger.is-active .bar {
    animation-name: antiClockWise;
    animation-duration: 80ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-delay: .4s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards
}

.burger.is-active:after {
    top: 7px;
    animation-name: hideBar;
    animation-duration: 80ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-delay: .4s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards
}


@keyframes hideBar {
    0% { opacity: 1 }
    100% { opacity: 0 }
}

@keyframes clockWise {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0)
    }
    100% {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg)
    }
}
@keyframes antiClockWise {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0)
    }
    100% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg)
    }
}
ul.mobile-nav {
    background-color:#eeeeee;
    color:#002244;
    width:100vw;
    height:100vh;
    position:absolute;
    top:0;
    left:0;
    margin:0;
    display:none;
    padding:0;
    z-index:999;
}
ul.mobile-nav li {
    height: 48px;
    line-height: 48px;
    overflow: visible;
    text-align: center;
    text-transform: uppercase;
    border-top: 0;
    list-style-type: none;
}
ul.mobile-nav li {
    -webkit-transition: height .25s ease .1s;
    -moz-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
}
ul.mobile-nav li.spacer20 {
    height: 20px;
}
ul.mobile-nav li.spacer56 {
    height: 56px;
}
.spacer hr {
    border:1px solid #77be45;
    opacity:.4;
}
.clear {
    clear:both;
}
hr.green-hr {
    border-top:1px solid #77be45;
}
ul.mobile-nav a {
    color:#002244;
    text-decoration:none;
    font-family:'Lato';
    font-weight:700;
}
.mobile-nav-open {
    display:block !important;
}
.mobile-nav-burger-x {
    z-index:999;
}

.footer {
    background-color:#002244;
    width:100%;
    border-top:1px solid #fff;
    position:relative;
}
.footer-fixed {
    position:fixed;
    bottom:0;
}
.footer ul {
    margin:0;
    padding:0;
    list-style:none;
}
.footer li {
    padding-bottom:20px;
}
.footer .tag {
    font-style:italic;
}
.footer a, a.basic {
    text-decoration:none;
    font-family:'Lato';
    font-weight:700;
}
.footer div {
    padding:20px;
    grid-column:span 12;
    color:#fff;
}
.ui-try-button-sm, .ui-try-button-sm-sub, .ui-try-button-sm-white {
    background-color: #77be45;
    color: #002244;
    height: 40px;
    line-height: 38px;
    font-family: Helvetica,sans-serif;
    font-size: 18px;
    font-weight:700;
    border-radius:20px;
    -moz-border-radius:20px;
    -webkit-border-radius:20px;
    width: 185px;
    cursor: pointer;
    border:0;
}
.ui-try-button-sm-sub {
    color: #fff;
    height: 25px;
    line-height: 23px;
    font-size: 16px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #333333;
    margin: 15px 0 0 0;
    float:right;
}
.ui-try-button-sm-white {
    background-color:#ffffff;
    border:1px solid #77be45;
}
.select-box {
    float: none;
    background-color: #f5f5f5;
    overflow:hidden;
    border:none;

    display:inline-flex;
    border: 1px solid #000;
    padding:0px 5px;
    box-sizing:border-box;
    position:relative;
    width:80% !important;
    height:38px;
    max-width:200px;
}
.select-box select {

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    box-sizing: border-box;
    border-radius:5px;
    width: 100%;
    
    border:none;
    height:34px;
    background-color:#eeeeee;
    padding:0;
    font-size:25px;
    position:absolute;
    left:calc(40% + 6px);
    top:0;
}
.select-box a {
    font-size:35px;
    cursor:pointer;
}
.select-box .minus {
    position:absolute;
    top:1px;
    left:3px;
}
.select-box .plus {
    position:absolute;
    top:1px;
    right:3px;
}
.selector-on {
    color:#002244;
}
.selector-off {
    color:#999999;
}
.checkbox-custom {
    opacity: 0;
    position: absolute;
}
.checkbox-custom, .checkbox-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}
.checkbox-custom-label {
    position: relative;
}
.checkbox-custom + .checkbox-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #999999;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    text-align: center;
}
.checkbox-custom-err:before {
     border: 2px solid red !important;
 }
.checkbox-custom:checked + .checkbox-custom-label:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    background:#fff;
    color:#002244;
    font-weight:700;
    font-size:18px;
}
.checkbox-custom:focus + .checkbox-custom-label {
    outline: 1px solid #ddd; /* focus style */
}

.bottom-pop {
    position:fixed;
    bottom:-80px;
    height:80px;
    width:100%;
    background-color:#999999;
    display:block;
    z-index:999;
    border-top:1px solid #333333;
}
.button-tix {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Lato';
    font-weight: 700;
    border:1px solid #ffffff;
    background-color:#77be45;
    margin:0 auto;
    border-radius:5px;
    padding:20px 40px;
    display:block;
    width:170px;
    margin-top:8px;
}
.footer-button-padding {
    padding-bottom:70px;
}
.bottom-pop .ui-try-button-sm {
    background-color: #77be45;
    color: #002244;
    height: 40px;
    line-height: 42px;
    font-weight: 300;
    font-family: Helvetica,sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    width: 90%;
    cursor: pointer;
    border: 0;
    margin:15px auto;
    display:flex;
    flex-direction:row;
}
.processing-btn {
    display:none;
    overflow:hidden;
    border-radius:20px;
    width:185px;
    height:40px;
    background-size:contain;
}
/* box office header */
.box-office {
    grid-column: span 12;
    background-color: #ffffff;
    border-bottom: 3px solid #69be28;
    min-height:155px;
}
.box-office .a-logo {
    width: 200px;
    height: 200px;
    margin-left: 20px;
    z-index: 1;
    background-color: #ffffff;
}
.box-office .a-logo img {
    height: 100%;
    width: auto;
    padding: 15px;
    box-sizing: border-box;
}

.box-office .s-logo {
    position: absolute;
    top: 155px;
    right: 20px;
}

.box-office .s-logo img {
    height: 32px;
    width: auto;
    margin-left: 10px;
}

.box-office .lines {
    width: 100%;
    position: absolute;
    top: 100px;
    left:0;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.box-office .copy {
    font-size: 22px;
    left: 240px;
    position: absolute;
    top: 10px;
    font-weight: 700;
    width: calc(85% - 210px);
}

.box-office .hamburger-nav {
    height: 48px;
    display: flex;
    align-items: center;
    font-family: 'Lato';
    position: absolute;
    right: 10px;
}
.box-office .box-hdr {
    font-size: 35px;
    color: #e8eaed;
    font-weight: 900;
    position: absolute;
    left:240px;
    top:99px;
}

.start_1_span_1 {
    grid-column:1 / span 1;
}
.start_1_span_2 {
    grid-column:1 / span 2;
}
.start_1_span_3 {
    grid-column:1 / span 3;
}
.start_2_span_1 {
    grid-column:2 / span 1;
}
.start_3_span_1 {
    grid-column:3 / span 1;
}
.start_3_span_2 {
    grid-column:3 / span 2;
}
.start_4_span_1 {
    grid-column:4 / span 1;
}
.start_1_span_4 {
    grid-column:1 / span 4;
}
.start_1_span_5 {
    grid-column:1 / span 5;
}
.start_1_span_8 {
    grid-column:1 / span 8;
}
.start_1_span_9 {
    grid-column:1 / span 9;
}
.start_1_span_11 {
    grid-column:1 / span 11;
}
.start_1_span_12 {
    grid-column:1 / span 12;
}
.start_2_span_6 {
    grid-column:2 / span 6;
}
.start_2_span_10 {
    grid-column:2 / span 10;
}
.start_2_span_11 {
    grid-column:2 / span 11;
}
.start_3_span_8 {
    grid-column:3 / span 8;
}
.start_3_span_10 {
    grid-column:3 / span 10;
}
.start_4_span_5 {
    grid-column:4 / span 5;
}
.start_4_span_8 {
    grid-column:4 / span 8;
}
.start_5_span_4 {
    grid-column:5 / span 4;
}
.start_5_span_8 {
    grid-column:5 / span 8;
}
.start_6_span_2 {
    grid-column:6 / span 2;
}
.start_8_span_1 {
    grid-column:8 / span 1;
}
.start_8_span_4 {
    grid-column:8 / span 4;
}
.start_8_span_5 {
    grid-column:8 / span 5;
}
.start_9_span_2 {
    grid-column:9 / span 2;
}
.start_9_span_4 {
    grid-column:9 / span 4;
}
.start_10_span_3 {
    grid-column:10 / span 3;
}
.row_1_span_1 {
    grid-row:1 / span 1;
}
.row_1_span_4 {
    grid-row:1 / span 4;
}
.four_items_1 {
    grid-column:1 / span 3;
}
.four_items_2 {
    grid-column:4 / span 3;
}
.four_items_3 {
    grid-column:7 / span 3;
}
.four_items_4 {
    grid-column:10 / span 3;
}
.disp_hr {
    width:100%;
}
.disp_hr hr {
    border: 1px solid #999999;
    opacity: .4;
}
.hp-logo img {
    width:100%;
    height:auto;
}
.hp-logo {
    grid-column:4 / span 6;
    border:1px solid #666666;
}

.e-exists, .e-invalid {
    color:red;
    display:none;
}
@media (max-width: 1920px) {  }
@media (max-width: 1440px) {  }
@media (min-width: 1023px) {
    .hp-logo {
        grid-column:5 / span 4;
    }
}

@media (max-width: 768px) {
    .hp-logo {
        grid-column:3 / span 8;
    }
}
@media (max-width: 525px) {
    .box-office .a-logo {
        width: 115px;
        height: 115px;
        margin-left: 10px;
    }
    .box-office .a-logo img {
        padding: 10px;
    }
    .box-office .copy {
        font-size:18px;
        left: 135px;
        width: calc(100% - 210px);
    }
    .box-office .s-logo {
        top:125px;
        font-size:12px;
    }
    .box-office .s-logo img {
        height: 22px;
    }
    .box-office .lines {
        top: 77px;
    }
    .box-office .box-hdr {
        color: #e8eaed;
        font-weight: 900;
        position: absolute;
        top: 76px;
        left: 135px;
    }
    .box-office .hamburger-nav {
        align-items: end;
    }
    .header-burger .burger {
        display: block;
        margin: 7px 0 0 15px;
    }
    .login-status {
        font-size: 13px;
    }
}
@media (max-width: 468px) {  }
