﻿/*
    Common 
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
}

.wizard > .steps > ul > li
{
    width: 25%;
}

.wizard > .steps > ul > li{
    float: left;
}

.wizard > .actions > ul > li{
    display: inline-block;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    padding: 12px 26px;
    background: #ffffff;
    color: #f95a3a;
    border: 2px solid #f95a3a;
    border-bottom: none;
    border-right: none;
}
.wizard > .steps a{
    text-align: center;
}

.wizard > .steps a:hover{
    background: #f95a3a;
    color: #fff;
    position: relative;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    
    background: #f95a3a;
    color: #fff;
    position: relative;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #fff;
    color: #f95a3a;
    position: relative;
}

.wizard > .steps .done a:after{
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #a0cf67;
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 11px;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
   /* background: #ff3111;
    color: #fff;*/
}


.wizard > .steps .error a:after{
    content: "\f00d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: white;
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 11px;
}

.wizard > .steps > ul > li:last-child a{
    border-right: 2px solid #f95a3a;
}


.wizard > .content
{
    overflow: hidden;
    position: relative;
    width: auto;
    background: #fff;
    /* padding: 60px 50px; */
    border: 2px solid #d8d8d8;
    font-size: 15px;
    letter-spacing: 2px;
    border-top: 2px solid #f95a3a;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}
/*
.wizard > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
 
    padding: 2.5%;
} */
.wizard > .content > .body
{
    float: left;
    position: absolute; /*
    width: 100%;
    height: 100%;*/
    padding: 44px; 

}



.wizard > .content > .body ul
{
    list-style: disc !important;
}

.wizard > .content > .body ul > li
{
    display: list-item;
}

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}
/*
.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 0em;
    width: 100%;

}*/

.wizard > .content > .body label.error{
    color: red;
    display: inline-block;
    margin-left: 0em;
    font-size: 12px;
    margin-bottom: 0px;
    line-height: 1.4em;
    position: absolute;
    right: 20px;
    top: 5px;
}
.wizard > .actions
{
    position: absolute;
    bottom: 40px;
    right: 0px;
    display: block;
    text-align: right;
    width: 100%;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul{
    padding-right: 47px;
    padding-left: 39px;
    display: inline-block;
    text-align: right;
    width: 100%;
}

.wizard > .actions > ul > li
{
    margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:active
{
    background: #a0cf67;
    min-width: 250px;
    padding: 20px 0px;
    float: right;
    margin-right: 10px;
    border: none;
    font-size: 15px;
    color: #2a200c;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 2px;
    margin: 0 auto;
    text-align: center;
}

.wizard > .actions a:hover{
    background: #76ad33;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}


/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}

.step-tab .half-input{
    margin-bottom: 10px;
}

.radio-option {
    display: inline-block;
    width: 18%;
}

.half-input,
.full-input,
.expdate,
.checkarea.agreecond{
    position: relative;
}

.half-input.input-left {
    padding-right: 0px; 
}

.wizard > .content > .body .checkarea.agreecond label.error, 
.wizard > .content > .body .expdate label.error{
    position: relative;
    right: auto;
    top: auto;
}

.wizard > .content > .body .block-input {
    margin-left: 0;
    margin-right: 0;
}

.radio-options{
    position: relative
}

.wizard > .content > .body .radio-options label.error{
    top: -24px;
}

#checkout_tickets .errorbox {
    border: 2px solid red;
    background: #fbc8c8;
    padding: 13px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6em;
}

#checkout_tickets .radio-option label {
    display: inline-block;
    width: 100%;
    position: relative;
}

#checkout_tickets .radio-option input[type='radio']{
    width: 70px;
    height: 42px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 999;
}

@media (max-width: 850px) {
    .wizard > .steps > ul > li {
        width: 33.333%;
    }

    .wizard > .actions{
        right: 0px;
        bottom: 22px;
    }
    .wizard > .actions > ul > li {
        margin: 6px 0em;
        width: 100%;
    }
    .wizard > .actions a{
        width: 100%;
    }
    .wizard > .content > .body label.error{
        font-size: 10px;
        top: 3px;
    }

    .wizard > .content > .body{
        padding: 27px;
    }
    .wizard > .actions > ul {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media (max-width: 600px) {
    .wizard > .steps > ul > li {
        width: 100%;
    }

    .wizard > .steps a, 
    .wizard > .steps a:hover, 
    .wizard > .steps a:active{
        border-right: 2px solid #f95a3a;
    }
}

@media (max-width: 600px) {
    .wizard > .actions > ul {
        padding-right: 29px;
        padding-left: 28px;
    }
    .block-card .half-input{
        padding-left: 0px;
        padding-right: 0px;
    }
    .block-card .half-input p {
        font-size: 13px;
        margin-bottom: 0px;
        line-height: 1.6em;
    }
    .expdate {
        width: 100%!important;
        padding-right: 0px!important;
        padding-left: 0px!important;
    }
    .expdate:first-child{
        padding-bottom: 10px!important;
    }
}

@media (max-width: 480px) {
    .wizard > .actions a,
    .wizard > .actions a:hover{
        font-size: 12px;
        min-width: 100%;
    }
    .checkoutpg .coltable.finalorder {
        width: 62%;
    }
}