﻿

.seat-not-available {
    background-image: url(../images/seat-grey.svg);
}

    .seat-not-available.seat-female {
        background-image: url(../images/seat-female.svg);
    }

.seat-available {
    cursor: pointer;
    background-image: url(../images/seat-green.svg);
    transition: all 0.2s ease;
}

    .seat-available .seat-code {
        cursor: pointer;
    }

    .seat-available.seat:hover {
        border-radius: 4px;
        transform: scale(1.1);
        background-color: #3790b81a;
    }

.seat.selected {
    background-image: unset !important;
}

.bus-container {
    max-height: 450px;
    overflow-y: auto;
}

.seat-passenger-shortcut {
    width: 40px;
    height: 40px;
    background-color: #3790b8;
    align-self: center;
    border-radius: 4px;
    position: absolute;
    justify-content: center;
    display: flex;
    color: white;
    font-size: 6px;
    align-items: center;
    text-align: center;
}

    .seat-passenger-shortcut.selected {
        background-color: #66bb6a;
    }


.seat .seat-code {
    align-self: center;
    border: 0px !important;
    text-align: center;
    width: 25px;
    height: 16px;
    background-color: transparent;
    margin: 0px !important;
    font-size: 10px;
    font-weight: bold;
}
