#mapa-asientos {
    overflow: auto;
    white-space: nowrap;
    max-height: 450px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 20px;
    padding-bottom: 40px;
}
#mapa-escenario {
    position: absolute;
    background-color: #222;
    border-radius: 50%;
}

#mapa-escenario.top-map {
    top: -25px;
    height: 50px;
    width: 50%;
    left: 25%;
}
#mapa-escenario.bottom-map {
    bottom: -25px;
    height: 50px;
    width: 50%;
    left: 25%;
}
#mapa-escenario.top-left-map {
    top: -25px;
    height: 50px;
    width: 50%;
    left: -20%;
}
#mapa-escenario.top-right-map {
    top: -25px;
    height: 50px;
    width: 50%;
    right: -20%;
}
#mapa-escenario.bottom-left-map {
    bottom: -25px;
    height: 50px;
    width: 50%;
    left: -20%;
}
#mapa-escenario.bottom-right-map {
    bottom: -25px;
    height: 50px;
    width: 50%;
    right: -20%;
}
#mapa-escenario.left-map {
    top: 10%;
    height: 80%;
    width: 50px;
    left: -25px;
}

#mapa-escenario:before {
    content: "ESCENARIO";
    position: absolute;
    font-family: monospace, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

#mapa-escenario.top-map:before,
#mapa-escenario.bottom-map:before {
    left: 50%;
    transform: translateX(-50%);
}

#mapa-escenario.top-map:before {
    top: 27px;
}

#mapa-escenario.bottom-map:before {
    bottom: 27px;
}

#mapa-escenario.top-left-map:before,
#mapa-escenario.top-right-map:before {
    top: 27px;
}

#mapa-escenario.top-left-map:before {
    right: 27%;
}

#mapa-escenario.top-right-map:before {
    left: 27%;
}

#mapa-escenario.bottom-left-map:before,
#mapa-escenario.bottom-right-map:before {
    bottom: 27px;
}

#mapa-escenario.bottom-left-map:before {
    right: 27%;
}

#mapa-escenario.bottom-right-map:before {
    left: 27%;
}

#ticket-message {
    font-style: italic;
    color: #ac1d39;
}
#info-title-section {
    color: #006064;
    /* font-size: 1.4rem; */
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    column-gap: 4px;
}
#info-title-section > small {
    background: #006064;
    color: #fff;
    padding: 1px 4px;
    border-radius: 5px;
    text-transform: none;
    font-size: 75%;
    line-height: 1.1;
}

.asiento {
    display: inline-block;
    margin: 2px;
    border: 1px solid #37abb3;
    width: 40px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 0.75rem;
    border-radius: 5px;
}
.row-name {
    display: inline-block;
    font-size: 1.2rem;
    width: 30px;
    height: 25px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 5px;
    text-align: center;
    line-height: 25px;
    color: #017982;
    font-weight: 700;
    float: left;
}
.ocupado {
    background-color: #dedede;
    border-color: #bbb;
    color: #aaa;
    cursor: no-drop;
}
.seleccionado {
    background-color: #2ecc40;
    color: #222;
}
