.btn.btn-link.bootstrap-touchspin-down, .btn.btn-link.bootstrap-touchspin-up {
    background: #0b8266 none repeat scroll 0 0;
    border: 1px solid #0b8266;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    margin: 0;
    outline: medium none;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}

.btn.btn-link.bootstrap-touchspin-down:hover, .btn.btn-link.bootstrap-touchspin-up:hover {
    background: #0fb28c none repeat scroll 0 0;
    border-color: #0fb28c;
}

.input-group-addon, .input-group-btn { 
    width: auto !important;
    vertical-align: middle;
}

.btn.btn-default.bootstrap-touchspin-down, .btn.btn-default.bootstrap-touchspin-up { 
    display: none !important;
}

input.addit {  
    display: inline-block;
    font-size: 14px;
    margin: 0;
    padding: 8px 10px;
    width: 60px !important;
    text-align: center;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    border-radius: 0;
    vertical-align: middle;
    height: 38px;
    box-sizing: border-box;
}

.qtyresp { 
    display: none;
}

.input-group.bootstrap-touchspin {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    width: auto;
}

.input-group.bootstrap-touchspin .input-group-btn {
    display: flex;
    vertical-align: middle;
}

.input-group.bootstrap-touchspin .input-group-btn:first-child .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group.bootstrap-touchspin .input-group-btn:last-child .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Alineación específica para las filas de entradas */
.rowuno .bootstrap-touchspin {
    float: right;
    margin-top: 5px;
}

.rowuno .col-md-2 {
    text-align: right;
}

@media(max-width:500px){
    .qtyresp { 
        display: block;
    }
    /*.input-group.bootstrap-touchspin { 
        display: none; 
    }*/
}

/* Estilos adicionales para mejor apariencia */
.bootstrap-touchspin-down, .bootstrap-touchspin-up {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.bootstrap-touchspin-down:active, .bootstrap-touchspin-up:active {
    background: #0fb28c !important;
    border-color: #0fb28c !important;
}

/* Asegurar que todos los elementos estén alineados */
.rowuno {
    display: flex;
    align-items: center;
    min-height: 50px;
}

.rowuno .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.rowuno .col-md-8, .rowuno .col-md-2 {
    display: flex;
    align-items: center;
}

.rowuno .col-md-8 {
    flex-direction: column;
    align-items: flex-start;
}

.rowuno .col-md-2:last-child {
    justify-content: flex-end;
}