/*
* Custom css for the ticket restaurant plugin
*
*/

#TicketRestaurantBox {
    margin-bottom: 2rem;
    max-width: 500px;
}

#TicketRestaurantBox h2 {
    margin-top: 2rem;
}

#TicketRestaurantBox span.TicketRestaurantLabelButton {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #747474;
    margin-top: 24px;
    display: block;
}

#TicketRestaurantBox .TicketRestaurantButton {
    cursor: pointer;
    border: 2px solid #1d204c;
    border-radius: 30px;
    background-image: url('../img/tr_icon.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 40px;
    margin-top: 12px;
    height: 60px;
    min-width: 180px;
    width: 300px;
}
#TicketRestaurantBox .TicketComplimentsButton {
    cursor: pointer;
    border: 2px solid #1d204c;
    border-radius: 30px;
    background-image: url('../img/tc_icon.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 40px;
    margin-top: 12px;
    height: 60px;
    min-width: 180px;
    width: 300px;
}

#TicketRestaurantBox .logoutButton {
    background: #fff;
    box-shadow: #000;
    -webkit-box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

#TicketRestaurantBox .logoutButton .logoEdenred {
    background-image: url('../img/tr_icon.png');
    width: 115px;
    height: 33px;
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 35%;
    margin: 1rem 1rem 1rem 0;
    vertical-align: middle;
}

#TicketRestaurantBox .logoutButton .logoEdenredTC {
    background-image: url('../img/tc_icon.png');
    width: 115px;
    height: 33px;
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 35%;
    margin: 1rem 1rem 1rem 0;
    vertical-align: middle;
}

#TicketRestaurantBox .logoutButton .labelLogout {
    width: 59%;
    display: inline-block;
    vertical-align: middle;
}

#TicketRestaurantBox .logoutButton .labelLogout span {
    color: #1d204c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: block;
}

#TicketRestaurantBox .logoutButton .labelLogout a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: block;
    cursor: pointer;
    color: #c0272d;
}

#TicketRestaurantBox .tableVouchers {
    margin-top: 1rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
}

#TicketRestaurantBox .tableVouchers .toprowVoucher,
#TicketRestaurantBox .tableVouchers .rowVoucher {
    display: flex;
    border-bottom: 1px solid #8c8c8c;
    padding-bottom: 0.7rem;
}

#TicketRestaurantBox .tableVouchers .toprowVoucher span.onethird {
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #8c8c8c;
}

#TicketRestaurantBox .tableVouchers .rowVoucher span.onethird,
#TicketRestaurantBox .tableVouchers .bottomrowVoucher span.onethird {
    flex: 1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1d204c;
}

#TicketRestaurantBox .tableVouchers .rowVoucher,
#TicketRestaurantBox .tableVouchers .bottomrowVoucher {
    display: flex;
    padding: 0.7rem 0;
}

#TicketRestaurantBox .tableVouchers .rowVoucher span.qty span {
    display: inline-block;
    cursor: pointer;
    color: #E9EBF0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #0074d9;
}

#TicketRestaurantBox .tableVouchers .rowVoucher span.qty span.disabled {
    background: #E9EBF0!important;
    color: #0074d9!important;
}

#TicketRestaurantBox .tableVouchers .rowVoucher span.qty div {
    display: inline-block;

}

#TicketRestaurantBox .tableVouchers .rowVoucher span.onethird .display:before {
    content: attr(value);
}

#TicketRestaurantBox .tableVouchers .rowVoucher span.totale:before {
    content: '€ ' attr(value);
}

#TicketRestaurantBox .tableVouchers .bottomrowVoucher span.grandTotal:before {
    content: '€ ' attr(value);
}

span.trc_alert_error:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    background-size: contain;
    vertical-align: middle;
    background-image: url('../img/alert.png');
    margin-top: -4px;
}

span.trc_alert_error {
    color: #c0272d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    margin: 1.3rem 0;
    display: block;
}

img.error_img {
    width: 200px;
    display: block;
}

