.sc-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12px;
    padding: 30px;
    align-items: center;
}

@media screen and (min-width:768px) {
    .sc-main-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .sc-right-container {
        margin-left: 30px
    }
}

.sc-right-container {
    margin-left: 0px
}

@media screen and (min-width:768px) {
    .sc-right-container {
        margin-left: 30px
    }
}

.sc-map {
    display: flex;
    align-items: flex-end;
    height: 500px;
    overflow-y: scroll;
    flex-wrap: wrap;
}

.sc-map-inner-container {
    display: flex;
    flex-direction: column
}

.sc-seats-container {
    display: flex;
    flex-direction: column
}

.sc-seat-row {
    display: flex
}

.sc-seat {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 64px;
    margin: 4px -4px;
    user-select: none;
    transition: opacity .1s ease-in-out;
    position: relative;
    padding: 0;
    background: transparent !important;
    border-radius: 0;
    border: none;
    font-size: 11px;
    color: #fff;
    z-index: 0;
}

/* Backrest */
.sc-seat::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    width: 64%;
    height: 70%;
    transform: translateX(-50%);
    background-color: #00b894;
    border: solid 1px black;
    border-radius: 4px;
    z-index: -1;
}

/* Seat base */
.sc-seat::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    width: 68%;
    height: 25%;
    transform: translateX(-50%);
    background-color: #00b894;
    border: solid 1px black;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    z-index: -1;
}

.sc-spacer {
    height: 20px;
    width: 20px
}

.sc-front {
    display: flex;
    justify-content: center;
    color: #b0b0b0;
    border-radius: 3px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #f5f5f5;
    width: 100%;
    margin-bottom: 10px
}

.sc-indexer {
    display: flex
}

.sc-indexer-rows {
    flex-direction: column
}

.sc-indexer-columns {
    width: 100%
}
.sc-indexer .sc-indexer-columns {
    /* margin: 4px 0px; */
}
.sc-seat-indexer {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 48px;
    width: 32px;
    margin: 4px;
    background-color: transparent;
    color: #4b4949
}

.sc-indexer-columns .sc-seat-indexer {
    justify-content: center;
    margin: 4px -4px;
}

.sc-seat.sc-seat-available:hover {
    cursor: pointer;
    opacity: .7
}

.sc-seat.sc-seat-selected {
    cursor: pointer;
    background-color: #e53c4a;
}

.sc-seat.sc-seat-selected::before,
.sc-seat.sc-seat-selected::after {
    background-color: #e53c4a;
}

.sc-seat-reserved,
.sc-seat.sc-seat-reserved {
    color: #fff;
    background-color: #d2d2d2;
    cursor: not-allowed
}

.sc-seat.sc-seat-reserved::before,
.sc-seat.sc-seat-reserved::after {
    background-color: #d2d2d2;
}

.sc-seat-restricted-child {
    color: transparent !important;
    cursor: not-allowed !important;
}

.sc-seat-restricted-child::before,
.sc-seat-restricted-child::after {
    background-color: #d2d2d2;
}

.sc-seat-row {
    display: flex;
    align-items: center;
}

.sc-exit-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-left: -28px;
    margin-right: 4px;
    padding: 10px 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    background-color: #c8102e;
    border-radius: 4px;
    white-space: nowrap;
}

.sc-extra-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-left: -36px;
    margin-right: 4px;
    padding: 8px 6px;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    color: #000;
    background-color: #ffd966;
    border-radius: 4px;
    white-space: nowrap;
}


.sc-seat.sc-seat-disabled {
    color: transparent;
    background-color: transparent
}

.sc-seat.sc-seat-disabled::before,
.sc-seat.sc-seat-disabled::after {
    background-color: #d2d2d2;
}

.sc-legend {
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
}

.sc-legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0
}

.sc-legend-description {
    margin: 0 0 0 10px
}

.sc-legend-bullet {
    width: 22px;
    height: 22px;
    border-radius: 5px 5px 0 0
}

.sc-cart {
    width: 280px;
    padding: 0 10px;
    margin-bottom: 0px
}

.sc-cart-table-container {
    height: 220px;
    margin-bottom: 15px;
    overflow: auto;
    border: 1px solid #093087;
    border-radius: .5em
}

.sc-cart-table {
    width: 100%
}

.sc-cart-title {
    font-weight: 700;
    margin: 0
}

.sc-cart-table td {
    text-align: center;
    vertical-align: middle;
    padding: 2px
}

.sc-cart-btn {
    border-radius: 4px;
    transition: background-color .15s ease-in-out;
    user-select: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    height: 35px
}

.sc-cart-btn-icon {
    height: 3px;
    width: 12px;
    border-radius: 5px;
    background-color: #fff
}

.sc-cart-btn-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e53c4a;
    height: 22px;
    width: 22px
}

.sc-cart-btn-delete:hover {
    background-color: #db3240
}

.sc-cart-btn-delete:active {
    background-color: #cc2331
}

.sc-cart td .sc-cart-btn-delete {
    margin: auto
}

.sc-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 16px;
}

.sc-cart-footer {
    display: flex;
    flex-direction: column
}

.sc-cart-total {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    margin: 0 10px 15px;
    padding: 0;
    text-align: right
}

.sc-cart-btn-submit {
    display: none;
    width: 100%;
    background-color: #e53c4a;
    color: #fff
}

.sc-cart-btn-submit:hover {
    background-color: #db3240
}

.sc-cart-btn-submit:active {
    background-color: #cc2331
}

.sc-ticket {
    display: flex;
    justify-content: center;
    font-size: 14px;
    height: 35px;
    border: 2px solid #000;
    box-sizing: border-box;
    border-radius: 4px
}

.sc-ticket div {
    display: flex;
    justify-content: center;
    align-items: center
}

.sc-ticket .sc-ticket-seat-label {
    border-right: 1px dashed #000;
    box-sizing: border-box;
    flex: 1
}

.sc-ticket .sc-ticket-seat-type {
    flex: 2
}

@media (min-width: 576px) {
    #seatModal .modal-dialog {
        width: fit-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
}

.passengers-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0px 10px;
    margin-bottom: 15px;
}

.passenger-btn {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 4px;
}

.passenger-btn.active {
    background: #093087;
    color: #fff;
    font-weight: bold;
}

.passenger-btn span {
    display: block;
    font-size: 14px;
    margin-top: 4px;
}

#seat-container-1,
#seat-container-2 {
    margin-bottom: 30px;
}