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

.smartech-product-stock-alert {
    margin: 12px 0 18px;
}

.smartech-product-stock-alert .product.alert.stock {
    text-align: left;
}

.smartech-product-stock-alert .action.alert {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.quote-request-trigger,
.quote-request-submit {
    border: 0;
    border-radius: 5px;
    background: #22b8c8;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.quote-request-trigger {
    margin-left: 10px;
    padding: 10px 15px;
}

.quote-request-trigger:hover,
.quote-request-submit:hover {
    background: #1593a1;
}

.quote-request-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 10vh 20px 30px;
}

.quote-request-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.quote-request-panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
    padding: 64px 44px 28px;
}

.quote-request-close {
    position: absolute;
    top: 8px;
    right: 15px;
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.quote-request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.quote-request-field {
    margin-bottom: 18px;
}

.quote-request-field label {
    display: block;
    margin-bottom: 6px;
    color: #111;
    font-size: 14px;
    font-weight: 600;
}

.quote-request-field input,
.quote-request-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    padding: 9px 12px;
}

.quote-request-field input {
    height: 40px;
}

.quote-request-field textarea {
    min-height: 90px;
    resize: vertical;
}

.quote-request-actions {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #ddd;
    margin-top: 38px;
    padding-top: 28px;
}

.quote-request-submit {
    min-width: 98px;
    padding: 9px 20px;
    font-size: 16px;
}

@media (max-width: 640px) {
    .quote-request-modal {
        padding: 20px 10px;
    }

    .quote-request-panel {
        padding: 50px 20px 22px;
    }

    .quote-request-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-request-trigger {
        display: inline-block;
        margin: 10px 0 0;
    }
}
