<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#products_page_inner_cont {
    padding-top: 40px;
    max-width: 1300px;
    height: fit-content;
    margin: auto;
}

#search_tools {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#products_search_btn svg {
    width: 16px;
    height: 16px;
    fill: var(--light-font-color);
}

#products_search_btn {
    width: 40px;
    height: 40px;
}

#products_cont {
    display: grid;
    grid-template-columns: 500px 500px;
    grid-auto-rows: 150px;
    justify-content: center;
    gap: 40px;
}

.product_card {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: var(--bg-color-accent-1);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.product_card:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.product_card .device_model_tag {
    background-color: var(--accent-color);
    color: var(--light-font-color);
    width: 120px;
    height: fit-content;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.product_card .product_image {
    border-radius: 4px;
}

.product_card .product_overview {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 8px;
}

.product_card .device_name {
    font-weight: bold;
    font-size: 14px;
}

@media screen and (max-width: 1300px) {
    #search_tools {
        padding: 0px 24px;
    }
}</pre></body></html>