.main_page_container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.pcontainer .filters-container {
    width: 22%;
    padding-right: 20px;
 }
.pcontainer .filters-content {
    width: 100%;
    max-width: 1260px;
    position: relative;
}
.products-list {
    flex-wrap: wrap;     
}
.pcontainer {
    padding-right: 100px;
    padding-left: 100px;
}
.products-list .item {
    width: 33.33%;
    display: block;
    color: #222;
    text-decoration: none;
    text-align: center;
    padding: 14px;
}
.products-list .item img {
    max-width: 100%;
}    
.products-list .item .item-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.products-list .item .item-info p {
    font-size: 12px;
    text-align: left;
    word-break: break-word;
}
.sorting-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sorting-panel .sortby label {
    font-size: 12px;
}
.pagination .page-item:hover {
    cursor: pointer;
}
.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;
}
.pcontainer .item-info .item-title {
    font-size: 22px;
    text-align: left;
    font-weight: 400;
    text-transform: uppercase;
}

.products-list .products-list-inner {
    padding: 0;
    height: 100%;
    background: #f9f9f9;
}
.products-list .svrbtn {
    color: #fff;
    border: 1px solid rgb(18, 120, 74);
    background-color: rgb(18, 120, 74);
    border-radius: 30px;
    text-transform: none;
    padding: 10px 30px;
    display: inline;
    font-size: 12px;
    height: auto;
    line-height: 1;    
}
.products-list .svrbtn:hover {
    background: #fff;
    color: rgb(18, 120, 74);
}

.header_section img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.header_section .mobile_image {
    display: none;
}
.header_section .heading_content {
    width: 70%;
    text-align: center;
    max-width: 800px; margin:0 auto;margin-bottom:50px
}
.header_section .rolex-h3 {
    margin-bottom: 20px;
    font-family: "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.header_section .rolex-h2 {
    margin-bottom: 20px;
    font-family: "Helvetica", sans-serif;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 1.3;
}
.header_section .rolex-p {
    font-family: "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: lighter;
    color: #212121;
    line-height: 1.8;
    max-width: 650px; margin:0 auto;margin-bottom:40px
}
@media (min-width: 992px) {
    .page-item span{
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
}
@media (max-width: 991.9px) {
    .products-list .item {
        width: 50%;
    }
    .pcontainer {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 767.9px) { 
    .products-list .item {
        width: 100%;
    }
    .header_section .rolex-h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .header_section .heading_content {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }
    .header_section .mobile_image {
        display: block;
    }
    .header_section .desktop_image {
        display: none;
    }
    .products-list .item {
        padding: 10px 0px;
    }
    .pcontainer .products-sorting {
        margin-bottom: 20px;
    }
    .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);
    }
}
@media (max-width: 400px) {
    .page-item span{
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
}

.btn-outline-primary {
    color: #3172ab;
    border-color: #3172ab;
}

.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: 100%;
    height: 210px;
}