.row {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

.form-group {
    margin-bottom: 20px;
    padding: 3px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input.form-control,
select.form-control {
    margin-bottom: 0;
}

.select-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    appearance: none;
}

.form-submit {
    padding: 10px 20px;
    background-color: #337ab7;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #23527c;
}

.error-message {
    color: red;
    margin-top: 5px;
}

span.inputError {
    padding: 3px;
    margin: 2px 3px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    background-color: #ffeeee;
    color: #cb3636;
    display: none;
    align-items: center;
}

span.inputError::before {
    content: url(/immagini/error.svg);
    filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(3299%) hue-rotate(315deg) brightness(97%) contrast(116%);
    position: relative;
    left: 10px;
    top: 4px;
    width: 25px;
    margin-right: 15px;
    display: inline-block;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.col-sm-6 {
    width: 50%;
}

.col-sm-3 {
    width: 25%;
}

.prenotaBtn:disabled {
    background-color: #00245a66;
    cursor: not-allowed !important;
}

.prenotaBtn:hover:disabled {
    background-color: #00245a66;
}

.box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.box {
    background-color: #f2f2f2;
    width: 60%;
    min-width: 300px;
    padding: 20px 10px;
    text-align: center;
    border-radius: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quantity-btn {
    margin: 6px;
    display: flex;
    min-width: 40px !important;
    width: 40px !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 5px !important;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 10px !important;
    background-color: var(--color-tertiary)
}

.quantity-btn.minus-bt {
    margin-left: 15px;
}

@media screen and (max-width: 768px) {
    .col-12 {
        width: 100%;
    }
}