@charset "utf-8";

a {
    text-decoration: none;
    color: #000000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: #da5621;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
}

.left-wrapper {
    padding-right: 0px;
    padding-left: 20px;
}

.right-wrapper {
    padding-right: 0px;
    padding-left: 10px;
}



.nav-link {
    display: block;
    text-transform: uppercase;
    font-size: larger;
    font-weight: 600;
}

.nav-link:hover {
    color: #da5621;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}

.ticketBox {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ticketBox:hover {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.15);
}

.ticketBox .ticket-name span {
    color: #666;
    display: block;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
}

.ticketBox .ticket-price-count-box .ticket-control {
    float: right;
    width: 120px;
}

.ticketBox .ticket-description {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    padding-top: 15px;
}

.ticketBox .ticket-description p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

div .col-xs-6 {
    width: 50%;
    float: left;
}