
/* TICKET BLOCK */
#event_ticket_extender_block_cont {
    text-align: center;
    position: relative;
    margin: auto;
    width: 100%;
}
#event_ticket_extender_block_cont form {
    text-align: left;
    display: inline-block;
}
#event_ticket_extender_block_cont {
    max-width: 900px;
}
.tec_ex_accordion_header {
    background: #EC6B00;
    padding: 20px 10px 15px 20px;
    display: flex;
    justify-content: space-between;
}
.tec_ex_accordion_header h3 {
    color: white !important;
    margin: 0px !important;
}
.accordionticketddicon {
    height: 15px;
    margin-right: 10px;
    margin-top: 13px;
    transform: rotate(180deg);
    transition-duration: 0.3s;
}
.accordionticketddicon.active {
    transform: rotate(0deg);
}
.accordionticketddicon:hover {
    cursor: pointer;
}
.tec_ex_accordion {
    margin-bottom: 40px;
}
.tec_ex_ticket_cont {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-top: 0px !important;
}
.tec_ex_vert_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tec_ex_ticket_title_cont {
    width: 65% !important;
}
.tec_ex_title {
    font-weight: 500;
    font-size: 18px;
    margin: 0px !important;
}
.tec_ex_desc {
    margin: 0px !important;
}
/* price */
.tec_ex_ticket_price_cont {
    font-weight: 600;
}
/* END price */
/* quantity */
.tec_ex_qty_cont {
    display: flex;
}
.tec_ex_qty {
    color: white;
    background: #EC6B00;
    border: none !important;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    font-size: 25px;
    padding: 0px !important;
}
.tec_ex_qty:hover {
    cursor: pointer;
    background: #e6781e;    
}
.tec_ex_quantity_input {
    border: none !important;
    font-size: 20px !important;
    color: #4a4e57 !important;
    font-weight: 400 !important;
    text-align: center;
    width: 60px !important;
    height: 30px !important;
}
.tec_ex_quantity_input::-webkit-outer-spin-button,
.tec_ex_quantity_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tec_ex_quantity_input {
  -moz-appearance: textfield;
}
/* END quantity */
/* submit bar */
.tec_ex_ticket_submit_bar {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px 20px 10px 20px;
    display: flex;
    justify-content: space-between;
}
input[type="submit"].tec_ex_submit {
    background-color: #EC6B00 !important;
    border: 0px;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    padding: 3px 10px 3px 10px;
}
input[type="submit"].tec_ex_submit:hover {
    cursor: pointer;
    background-color: #e6781e !important;  
}
/* END submit bar */
/* overlay */
#loading_overlay {
    position: absolute;
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: rgba(250,250,250,0.6);
    transition-duration: 0.5;
}
/* END overlay */
/* errors */
#tec_ex_errors {
    background: rgb(255,0,0,0.1);
    text-align: center;
    margin-top: 15px;
    padding: 5px;
    color:  rgb(150,0,0,1);
}
/* END errors */

/* sold out */
.tec_ex_soldout {
    margin-bottom: 0px !important;
}
.outofstock span, .outofstock div {
    color: rgb(200,200,200) !important;
}
/* END sold out */


@media (max-width: 650px) {
    .tec_ex_ticket_cont {
        flex-wrap: wrap;
    }
    .tec_ex_ticket_title_cont {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .tec_ex_ticket_submit_bar {
        position: fixed !important;
        z-index: 999 !important;
        bottom: 0px !important;
        left: 0px !important;
        width: 100%;
        background: white;
        box-shadow: 0px 0px 5px rgba(100,100,100,0.1);
    }
}