﻿
.room-map-box-body {
    overflow-x: scroll;
}

    .room-map-box-body .container-details {
        /*min-width: 968px;*/
        /*min-width: 1200px;*/
        min-width: 2000px;
        /*text-align: center;*/
    }

.container-seat,
.container-letter,
.container-empty-space {
    /*width: 25px;
    height: 25px;*/
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 4px;
    cursor: pointer;
}

.seat.status-indisponível, .status-bloqueado {
    cursor: no-drop;
}

.container-letter {
    cursor: default;
}

.container-empty-space {
    opacity: 0;
    cursor: default;
}

.seat,
.letter {
    background-color: #3c8dbc;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
}

.letter {
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #999;
}

.screen {
    background-color: #717073;
    height: 40px;
    margin: 20px 0px;
    border-radius: 4px;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .5em;
    color: #fff;
}

h2, h3 {
    margin-top: 10px;
    font-size: 22px;
    color: #444;
}

h3 {
    margin: 10px 0px;
    font-size: 18px;
}

.status-indisponível,
.status-reservado {
    background-color: #c1c1c1;
}

.status-selecionado {
    background-color: #00a65a;
}
.status-bloqueado {
    background-color: red;
}

@media (max-width: 576px){
    .seat-legenda {
        text-align: center;
    }

    #legenda .container-seat {
        width: 30px;
        height: 30px;
        font-size: 9pt;
    }
}

