<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main_page_container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.archived-media a {
    color: #222;
    text-transform: uppercase;
    font-size: 14px;
}
.month_list {
    list-style: none;
    padding-left: 30px;
    transition: all 0.3s;
}
.pcontainer .archived-media svg {
    height: 11px;
    margin-left: 6px;
    cursor: pointer;
    outline: none !important;
}
.pcontainer .archived-media svg.rotated {
    transform: rotate(90deg);
}
.pcontainer .year_title_div {
    display: flex;
    align-items: center;
}
.pcontainer .not_current_year_ul {
    display: none;
    transition: all 0.3s;
}
.pcontainer .not_current_year_ul.open {
    display: block;
    transition: all 0.3s;
}
.date_display {
    color: #959595;    
    font-size: 12px;
}
.products-list .item-img img {
    object-fit: cover;
    width: 210px;
    min-width: 210px;
}
.pcontainer {
    max-width: 1260px;
    margin: 0 auto;
}
.pcontainer .blogs-content {
    width: 80%;
}
.pcontainer .filters-container {
    width: 20%;
}

.products-list {
    flex-wrap: wrap;     
}
.products-list .item {
    width: 100%;
    color: #222;
    text-decoration: none; 
    margin-top: 40px;
    display: flex;
}
.products-list .item img {
    max-width: 100%;
}    
.products-list .item .item-info {
    padding: 0 20px 0 20px;
    word-break: break-word;
}
.products-list h2 {
    text-transform: uppercase;
    font-weight: 400;
}
.btn-outline-blog {
    border: 1px solid #222;
    color: #222;
    font-size: 12px;
    border-radius: 0px;
}

.filters-container .filters-title {
    font-size: 1rem;
    font-weight: 500;
}
.pcontainer  .filter-toggle-btn {
    color: #3172ab;
    border: 1px solid #3172ab;
    border-radius: 0px;
    display: flex;
    align-items: center;
}
.pcontainer  .filter-toggle-btn:hover,
.pcontainer  .filter-toggle-btn:focus{
    color: #fff;
    background: #3172ab;
}
.pcontainer .close_svg {
    height: 15px;
}
.pcontainer .filter_svg {
    height: 12px;
    margin-right: 5px;
}
.pcontainer .filter_svg path {
    fill: currentColor;
}
@media (min-width: 768px) {
    .filters-inner {
        background: #ececec;
    }
}


@media (max-width: 991.9px) {
    .pcontainer .filters-container {
       width: 25%;
    }
    .pcontainer .blogs-content {
       width: 75%;
    }
}



@media (max-width: 767.9px) {
    .products-list .item {
        flex-wrap: wrap;
    }
    .pcontainer .products-sorting {
        margin-bottom: 20px;
    }
    .pcontainer .filters-container,
    .pcontainer .blogs-content {
       width: 100%;
    }    
    .pcontainer .filters-container {
        position: fixed;
        top: 0;
        left: 0;
        overflow-x: auto;
        width: 325px;
        overflow-y: auto;
        transform: translateX(-325px);
        z-index: 9999;
        height: 100vh;
        background-color: #ffffff;
        padding:20px;
        border-right: 1px solid #ccc;
        transition: all 0.3s;
    }
    .pcontainer .filters-container.open {
        transform: translateX(0);
    }
    .products-list .item-img img {
        width: 100%;
        display: block;
    }
    .products-list .item .item-info {
        padding: 0;
        margin-top: 20px;
        width: 100%;
        display: block;
    }
}

</pre></body></html>