﻿.bus-view-info-box {
    height: 25px;
    width: 110px;
    border: 1px solid black;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
}

@media(max-width: 768px) {
    .bus-view-info-box {
        height: 50px;
        display: flex;
        justify-content: center;
    }
}

.bus-view-info-box label {
    width: 100%;
    text-align: center;
}

.seat-col-view {
    width: 150px;
}

.seat-selected {
    border: 1px solid #262626;
}



.seat-view {
    background-color: white;
    height: 59px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 135px;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 3px;
    font-weight: bold;
    box-shadow: 1px 1px 5px 0px #b7b7b7;
    transition: transform 0.2s, background-color 0.1s;
}

.seat-highlighted {
    background-color: yellow;
    transition: background-color 500ms linear;
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transition: transform 0.2s, background-color 0.1s;
    transform: scale(1.1);
}

    .seat-highlighted *, .seat-highlighted {
        cursor: pointer;
    }


.seat-view-space {
    height: 79px;
    width: 100%;
    display: flex;
}

.seat-confirmed {
    color: #009688;
}

.seat-not-available-female-color {
    color: #FF00FF;
}

.seat-not-available-colorr {
    color: #989498;
}

.seat-not-available-female-icon {
    background-image: url(../images/female.svg);
    background-size: 35px;
    opacity: 0.4;
}

.seat-not-available-icon {
    background-image: url(../images/male.svg);
    background-size: 35px;
    opacity: 0.4;
}

.seat-available-color {
    background-color: #5fd09c;
}

.seat-code-view {
    font-size: 9px;
    font-weight: bold;
    color: red;
}

.seat-temp {
    color: #E91E63;
}

.seat-ticket-fullname {
    display: flex;
    flex-direction: column;
    font-size: 9px;
    max-height: 10px;
    margin-bottom: 0;
}

.seat-ticket-id {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    text-align: start;
    margin-bottom: 0;
}

.seat-ticket-bookingid {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    text-align: end;
    margin-bottom: 0;
}

.bus {
    zoom: 1.2;
}
