.info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.info-block > * {
    width: 90%;
}

.info-order-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin-bottom: 20px;
}

.info-order-right {
    display: flex;
    gap: 10px;
}

.info-order-right button {
    height: 42px;
    padding: 8px 14px;
    font-size: 15px;
}

.info-form {
    width: 90%;
    margin: 0 auto;
    display: grid;
    row-gap: 18px;
}

.info-row {
    display: grid;
    grid-template-columns: 160px 1fr 160px 1fr;
    column-gap: 14px;
    align-items: center;
}

.info-row label {
    text-align: right;
    font-weight: bold;
}

.info-row input,
.info-row select {
    width: 100%;
    height: 36px;
    padding: 6px 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.info-selector {
    width: 100%;
    height: 36px;
    padding: 6px 8px;
    font-size: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

.info-tabs {
    display: flex;
    gap: 10px;
    padding-left: 10px;
    margin-bottom: -5px;
    width: 90%;
}

.info-tab {
    padding: 10px 22px;
    background: #e6e6e6;
    border: 2px solid #555;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    color: #333;
}

.info-tab:hover:not(.active) {
    background: #dcdcdc;
}

.info-tab.active {
    background: #ffffff;
    z-index: 2;
}

.info-content {
    border: 2px solid #555;
    border-radius: 0 10px 10px 10px;
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.info-panel {
    display: none;
}

.info-panel.active {
    display: block;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 6px;
    text-align: center;
}

.info-table input {
    width: 100%;
    box-sizing: border-box;
    height: 34px;
}

.info-ref-button,
.info-remove-button {
    width: 35px;
    height: 35px;
}

.info-add-row-container {
    text-align: center;
    margin-top: 15px;
}

.info-add-row-button {
    width: 40px;
    height: 40px;
    font-size: 22px;
}

button.info-button {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    min-height: 34px;
    max-height: 60px;
    padding: 6px 8px;
    font-size: 15px;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 4px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    width: 100%;
}

button.info-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

input.lote {
    text-transform: uppercase;
    text-align: center;
}

input.cantidad {
    text-align: center;
    font-size: 17px;
}

@media (max-width: 1472px) {
    button.info-button {
        height: 72px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    button.info-button {
        height: 108px;
        font-size: 17px;
    }
}
