<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-options{
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 200px);
    grid-template-rows: repeat(2, auto);
    column-gap: 20px;
    justify-content: center;
}
.product-options li{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    text-align: center;
}
.product-options li:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(223, 226, 231, .2) 70%, rgb(209 214 218 / 10%) 100%);
    cursor: pointer;
}
.product-options li.active{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(85 109 149 / 20%) 70%, rgb(120 122 123 / 8%) 100%);
}
.result-form{
    /* width: 100%;
    height: 100px;
    border: 1px solid; */
    margin-top: 85px;
}
.choose-product,
.product-options h3,
.sectionlist h3{
    text-align: center;
    font-size: 20px;
    height: fit-content;
}
.loading {
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (min-width: 992px) {
    #searchform2{
        display: flex;
    }
    .left-col-wrapper,
    .right-col-wrapper{
        width: 50%;
        position: relative;
    }
    .left-col-wrapper{
        padding-right: 50px;
    }
    .right-col-wrapper{
        padding-left: 50px;
        border-left: 1px solid #90949c;
    }
    .verticalline{
        position: absolute;
        left: -25px;
        top: 10%;
        background-color: white;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1;
        text-transform: uppercase;
        font-weight: bold;
        color: #25a2f6;
    }
    .ui-widget.ui-widget-content {
        max-width: 375px;
    }
}

@media screen and (min-width: 1700px) {
    .ink-finder-left-col{
        width: 50%;
        margin-left: auto;
    }
    .ink-finder-right-col{
        width: 50%;
        margin-right: auto;
    }
}
.verticalline{
    text-transform: uppercase;
    font-weight: bold;
    color: #25a2f6;
}

form select{
    width: 100%;
}
.inkjet-image-left img{
    width: 325px;
}
#searchform2 .form-control:focus {
    border: 1px solid rgb(0 0 0 / 28%);
    border-color: #00baf2;
}

.form-select{
    border-radius: 0;
}
.popover{
    border-radius: 4px;
}
.popover-header{
    background-color: white;
    border: none;
    border-radius: 4px;
}
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
    border-bottom: none;
}
.popover-header img{
    width: 75%;
    margin: auto;
    display: flex;
}
.epson-pop p{
    margin-bottom: 0;
}
#TypeTarget .prodinfo img{
    object-fit: contain;
}
@media screen and (min-width: 1700px) {
    #TypeTarget{
        width: 53%;
        margin: auto;
    }
}
#TypeTarget{
    margin-top: 85px;
}
.sectionlist{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 135px auto;
    column-gap: 20px;
    row-gap: 50px;
    margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
    .sectionlist {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 100px auto;
    }
}
@media screen and (max-width: 1399px) {
    .sectionlist {
        grid-template-columns: repeat(3, 1fr);
    }
    .prodinfo {
        row-gap: 10px;
    }
}
.prodinfo{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: 20px;
    /* border: 1px solid; */
}
.prodinfo a{
    display: flex;
    width: 100%;
    justify-content: center;
    color: #10218b;
    font-size: 18px;
    max-height: 135px;
    text-decoration: none;
}
.prodinfo *{
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .product-options li{
        display: grid;
        grid-template-columns: 160px 1fr;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .product-options {
        grid-template-columns: 1fr;
        width: 75%;
        margin: auto;
    }
    .product-options h3{
        text-align: left;
        margin: 0;
    }
    .result-form {
        width: 90%;
        margin-inline: auto;
    }
    .left-col-wrapper{
        margin-bottom: 50px;
    }
    .ink-finder-left-col,
    .ink-finder-right-col{
        border: 1px solid #cfd5da;
        padding: 15px;
    }
    .ink-finder-right-col{
        margin-top: 50px;
    }
    .verticalline{
        text-align: center;
        font-size: 24px;
    }
}
.example{
    margin-top: 20px;
}

.ui-autocomplete{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-block: 10px;
}
.ui-menu-item a{
    text-decoration: none;
    display: block;
}</pre></body></html>