<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.catalog-page{
    display: flex;
    flex-direction: row;
}

.side-catalog{
    flex: 1;
    margin-top: 33px;
    font-weight: bold;
}

.side-catalog &gt; .catalog-ul a{
    color: #333333;
    text-decoration: none;
    flex: 12;
}

.side-catalog &gt; .catalog-ul a:hover{
    text-decoration: underline;
}

.side-catalog &gt; .catalog-ul ul{
    list-style-type: none;
    padding: 0 10px;
    width: 100%;
}

.side-catalog &gt; .catalog-ul li {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 3px 0;
}

@media only screen and (max-width: 500px), (max-width: 1024px) {
    .side-catalog{
        display: none;
    }
}


.sublist-hide{
    display: none;
}

.sublist-open{
    height: 10px;
    width: 10px;
    float: right;
    flex: 1;
    cursor: pointer;
}

.catalog-list-wrap{
    flex: 3;
}

.catalog-header{
    width: 100%;
    margin: 5px;
}

.catalog-list{
    padding: 0px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.catalog-item-link{
    text-decoration: none;
    color: black;
    padding: 25px;
}

.catalog-item-tools{
    position: relative;
    display: flex;
    justify-content: space-evenly;
}

.catalog-item{
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 270px;
    width: 215px;
    border-radius: 4px;
    border: solid darkgray 1px;
    box-sizing: border-box;
}
/*
.catalog-item span{
    font-size: 18px;
    font-weight: bold;
}*/

.catalog-item-name {
    font-size: 14px;
    color: dimgrey;
    margin: 5px 0;
    font-weight: bold;

}

.catalog-item img{
    width: 100%;
    height: 170px;
    object-fit: contain;
    object-position: center center;
}

.catalog-item:hover{
    background-color: #c5c5c5;
    transition: background-color 0.4s;
}

@media only screen and (min-width: 480px) {
    .catalog-item{
        width: 222px;
    }
}

@media only screen and (min-width: 640px) {
    .catalog-item{
        width: 195px;
    }
}

@media only screen and (min-width: 800px) {
    .catalog-item{
        width: 250px;
    }
}

@media only screen and (min-width: 1024px) {
    .catalog-item{
        width: 230px;
    }
}

@media only screen and (min-width: 1366px) {
    .catalog-item{
        width: 215px;
    }
}

@media only screen and (min-width: 1800px) {
    .catalog-item{
        width: 215px;
    }
}


.catalog-part{
    margin: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: solid 1px #9a9a96;
    height: auto;
}

.catalog-part-name {
    font-size: 14px;
    color: dimgrey;
    margin-bottom: 0px;
    height: 60px;
    font-weight: 700;
}

.catalog-part span{
    font-size: 18px;
    font-weight: bold;
}

.catalog-part img{
    height: 200px;
    width: 100%;
    object-fit: contain;
    object-position: center center;
}

.catalog-part:hover{
    background-color: #ebebeb;
    transition: background-color 0.4s;
}

.catalog-part button{
    width: 100%;
}


.part-page{
    flex: 3;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
}

.part-images{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
}

.part-info{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-top: 10px;
}


.part-name{
    font-size: 22px;
    color: #333333;
    border-bottom: solid 2px;
    margin: 0;
}

.part-price{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    padding-top: 10px;
}

.part-price &gt; .price{
    flex: 1;
}

.part-price button{
    flex: 1;
    font-size: 16px;
}

.part-images img{
    max-width: 100%;
    min-width: 200px;
    max-height: 400px;
    margin: 5px 0;
}

.catalog-list &gt; .list-view{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.catalog-list &gt; .list-view &gt; .pagination{
    width: 100%;
}

.catalog-parts-list{
    width: 100%;
}

.catalog-parts-list &gt; .list-view{
    display: flex;
    flex-direction: column;
}

.catalog-part-list-item{
    display: flex;
    flex-direction: row;
    margin: 3px 0;
    border-radius: 5px;
    align-items: center;
    border: solid 1px #000000;
}

.catalog-part-list-item:hover{
    background-color: #ebebeb;
}

.catalog-part-list-item:active{
    transition: background-color 200ms;
    background-color: #D76161;
}

.catalog-part-list-item a{
    flex: 5;
    text-decoration: none;
    color: black;
    padding: 8px;
}

.catalog-part-list-item-name {
    margin: 0;
}

.catalog-part-list-price{
    flex: 1;
    font-weight: bold;
}

.catalog-part-list-state{
    flex: 1;
    font-weight: bold;
}
.pagination {
    width: 100%;
    text-decoration: none;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 3px;
}



.pagination li{
    font-size: 20px;
    background-color: #af0002;
    margin: 2px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}


.pagination &gt; li.active{
    background-color: #000000;
    border-radius: 5px;
}

li.disabled{
    padding: 8px 15px;
    font-size: 20px;
    background-color: #6d6d6d;
    margin: 2px;
    color: white;
    border-radius: 5px;
}

.pagination a{
    padding: 8px 15px;
    color: white;
    text-decoration: none;
}

.catalog-bar{
    width: 100%;
    border-top: solid 1px #c8c8c8;
    border-bottom: solid 1px #c8c8c8;
    padding: 10px;
    margin-bottom: 5px;
}

.catalog-bar a{
    text-decoration: none;
    color: black;
    padding: 10px;
    font-weight: bold;
}

.catalog-bar a:hover{
    background-color: #6d6d6d;
    color: red;
}
</pre></body></html>