<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    font-family: "Noto Sans KR", sans-serif;
    height: 100%;
}

.product-card {
    transition: all .2s ease-in;
}

    .product-card:hover {
        background-color: var(--mud-palette-primary-hover);
        cursor: pointer;
    }


@media (min-width: 992px) {
    #product-details .mud-tabs-toolbar-content .mud-tabs-toolbar-wrapper {
        width: auto;
    }

        #product-details .mud-tabs-toolbar-content .mud-tabs-toolbar-wrapper .d-inline-block {
            width: 20% !important;
        }
}

@media (min-width: 1280px) {
    .mud-container-maxwidth-lg {
        max-width: 1400px;
    }
}

#product-details .mud-tabs-toolbar-content {
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
    #product-details .mud-tabs-toolbar-content::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
#product-details .mud-tabs-scroll-button {
    display: none;
}

.mud-simple-table table {
    margin-bottom: 0;
}

.mud-button-group-root .mud-input.mud-input-outlined .mud-input-outlined-border {
    border-radius: 0;
}
</pre></body></html>