.quick-order-message {
    color: #00529B;
    background-color: #BDE5F8;
    border: 1px solid;
    margin: 15px 0px;
    padding:10px 10px 10px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    max-width:410px;
    font-size:13px;
    background-image: url('../images/Information-icon.png');
}

[x-cloak] {
    display: none !important;
}

.quick-order-sku-cell {
    position: relative;
}

.quick-order-sku-results {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    width: 520px;
    max-width: 90vw;
    max-height: 320px;
    overflow-y: auto;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #c2c2c2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.quick-order-sku-option {
    display: grid;
    grid-template-columns: 130px 1fr 90px;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    cursor: pointer;
    text-align: left;
}

.quick-order-sku-option:hover,
.quick-order-sku-option:focus {
    background: #f5f5f5;
}

.quick-order-sku-code {
    font-weight: 700;
}

.quick-order-sku-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-order-sku-price {
    text-align: right;
    white-space: nowrap;
}

.quick-order-sku-status {
    padding: 9px 10px;
    color: #555;
}

@media (max-width: 640px) {
    .quick-order-sku-results {
        width: 92vw;
    }

    .quick-order-sku-option {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .quick-order-sku-price {
        text-align: left;
    }
}
