#products_list::after {
    clear: both;
    content: '';
    display: table;
}
#products_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
#products_list > li {
    float: left;
    margin-right: 30px;
    width: calc(100% - 60px);
    display: block;
}
#products_list > li {
    float: left;
    margin: 0 30px 30px 0;
    width: calc((100% - 60px)/3);
    display: block;
}
#products_list > :nth-child(3n) { margin-right: 0 !important; }
#products_list > li > :first-child {
    display: block;
    overflow: hidden;
}
#products_list > li img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    display: block;
}
#products_list > li > :first-child:hover > img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}
#products_list li > :last-child {
    color: #21252d;
    text-decoration: none;
    font: 700 normal 14px/14px 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    transition: color 0.25s;
}
#products_list li > :last-child:hover {
    color: #163872;
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    transition: color 0.25s;
}
.page-numbers {
    background-color: #e8e7e7;
    padding: 4px 6px;
    font: 500 normal 14px/14px 'Roboto Condensed', sans-serif;
    text-decoration: none;
    -webkit-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    transition: background-color 0.25s;
}
.page-numbers.current, .page-numbers:hover {
    background-color: #c2c2c2;
    -webkit-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    transition: background-color 0.25s;
}
.pagination { text-align: right !important; }
#contact-shortcut {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background-color: #42495A !important;
}
.product_sidebar > .sidebar_title { margin-bottom: 20px; }
.product_sidebar ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}
.product_sidebar ul > li > a {
    font: 700 normal 18px/24px 'Roboto Condensed', sans-serif;
    text-decoration: none;
}
@media (max-width: 600px) {
    #products_list > li { width: 100%; }
    #products_list li > :last-child {
        text-align: center;
        display: block;
        margin-top: 5px;
    }
}