.concert-modal {
    width: 80%;
    --bs-modal-width: 80%
}

.concert {
    width: 100%;
    overflow-x: scroll;
}

.concert>div {
    width: 700px;
}

.sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    overflow: auto;
    height: 230px;
    align-items: flex-start;
}

.sector {
    width: 200px;

}

.sector>svg {
    width: 100%;
    cursor: pointer;
}

.sector>svg:hover {
    background-color: rgb(162, 210, 253);
}


.places {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 500px;
    padding: 25px;
    overflow: auto;
}

.places_row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: thin; /* Firefox */
}

.place {
    width: fit-content;
    padding: 4px;
    background-color: cadetblue;
    color: white;
    cursor: pointer;
}

.place.sold {
    background-color: red;
    cursor: not-allowed;
}

.place.selected {
    background-color: rgb(15, 87, 255);
}

.selected_places {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.selected_place {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(73, 73, 73);
}

.sector_info {
    display: flex;
    overflow: auto;
}

.bucket {
    width: 300px;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
    border: .20px solid currentColor;
    border-right-color: currentcolor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}