/* Hide all steps by default: */
.tab {
  display: none;
}
/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    text-transform: uppercase;
    color: #353232;
    width: 33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #fff;
    background: black;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #b5afaf;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #89bc4f;
    color: white;
}

/*buttons*/
#uploadTicket .action-button {
    width: 100px;
    background: #89bc4f;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#uploadTicket .action-button:hover, #uploadTicket .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #89bc4f;
}

#uploadTicket .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#uploadTicket .action-button-previous:hover, #uploadTicket .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

#couponForm{display: none;}

.ticket_msg{
  margin-bottom: 20px;
  line-height: 22px;
  color: #2594b5;
}
.page-top-content{
  font-size: 18px;
}
.model-content{
  padding: 30px;
}

.agreement{ background: #fff; margin-bottom:20px; border:1px solid #c6c6c6; padding:25px; height:400px; overflow-y:scroll;}
.agreement h2{ color:#000; font-size:20px; text-transform:uppercase;}
.formBtn {
    box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.14);
    font-weight: bold;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    margin-top: 15px;
    text-transform: uppercase;
}
.alignBtn {
    box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.14);
    font-weight: bold;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}
.smleft{
  float: left;
  width: 40%;
  height: 48px;
  border-radius: 0;
}
.smright{
  float: right;
  width: 40%;
  height: 48px;
  border-radius: 0;
}

/* Custom Checkbox */
.customchekbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    margin-top: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.customchekbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.customchekbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customchekbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customchekbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customchekbox .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);
}
.ui-datepicker-trigger{
  background: #000;
  /*position: absolute;
  right: 25px;
  top: 37px;
  height: 25px;*/
}
.price div{
    border-bottom: 1px solid #dcdbd9;
    padding: 10px 0;
}
.finalFee{
    background: yellow;
}
