/* Products Page */
.filter_products {
    -webkit-box-shadow: 0px 10px 30px rgba(124, 10, 31, 0.1);
    box-shadow: 0px 10px 30px rgba(124, 10, 31, 0.1);
    border-radius: 10px;
    padding: 40px;
    width: 100%;
}
.filter_products form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.filter_products .filter-group, .filter_products form button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.filter_products .filter-group > label {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
}            
.filter_products .filter-group .checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}
.filter_products .filter-group .checkbox input[type="checkbox"] {
    display: none;
}
.filter_products .filter-group .checkbox label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #333;
}
.filter_products .filter-group .checkbox label:hover {
    font-weight: bold;
}
.filter_products .filter-group .checkbox label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: #fff;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}
.filter_products .filter-group .checkbox input[type="checkbox"]:checked + label:before {
    background-color: #F21940;
    border-color: #F21940;
}
.filter_products .filter-group .checkbox input[type="checkbox"]:checked + label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}
.filter_products .filter-group .checkbox label:hover:before {
    border-color: #F21940;
}   
.filter_products .reset-btn {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    max-width: 0;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}   
.filter_products .reset-btn.show {
    max-width: 160px;
    margin-left: 15px;
    overflow: visible;
}   
.container.products__page {
    padding: 40px 0;
}
.products__page .product__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.products__page .product__item {
    width: 100%;
    max-width: calc(25% - 20px);
    margin-bottom: 20px;
    padding: 24px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
}
h2.product__title {
    font-size: 18px;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 12px;
    min-height: 100px;
}
.products__page .product__link:hover h2.product__title, .products__page .product__link:focus h2.product__title,
.products__page .product__link:hover .product__info, .products__page .product__link:focus .product__info {
    color: #F21940;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.products__page .product__item img {
    border-radius: 6px;
}
.products__page .product__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}
.products__page .product__release_forms {
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.products__page .product__coding {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: normal;
    align-self: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.products__page .product__coding p:first-child {
    font-style: italic;
}
.products__page .product__coding p:last-child {
    margin-top: auto;
}
@media screen and (max-width: 1200px) {
    .products__page .product__item {
        max-width: calc(33.3% - 20px);
    }          
}
@media screen and (max-width: 767px) {
    .filter_products {
        margin: 30px 30px 0;
        width: calc(100% - 60px);
    }
    .filter_products form {
        display: block;
    }
    .filter_products .filter-group {
        margin-bottom: 15px;
    }
    .filter_products .reset-btn.show {
        max-width: 100%;
        margin: 15px 0 0 auto;
    }
    .products__page .product__item {
        width: calc(50% - 20px);
        max-width: none;
        margin: 0 10px 20px !important;
    }
    h2.product__title {
        min-height: auto;                    
    }
    .products__page .product__list {
        margin: 0 15px;
    }
}
@media screen and (max-width: 480px) {
    .products__page .product__item {
        width: 100%;
    }
    .products__page .products__page .product__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 14px;
    }
}

/* Product Single */
.product__article {
    width: 100%;
    max-width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-orient: horizontal; 
    -webkit-box-direction: normal; 
    -ms-flex-direction: row; 
    flex-direction: row;
    padding: 12px;
    margin: 32px 0;
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
}
.product__wrap {
    max-width: 260px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.product__wrap img {
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.product__article .product__info {
    padding-left: 32px;
    padding-right: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    justify-content: space-between;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}        
h1.product__title {
    font-size: 1.4em;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 24px;
}
.product__article .product__info .attributes > div {
    text-align: right;
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 6px;
}
.product__article .product__info .attributes > div:not(:last-child) {
    margin-bottom: 12px;            
}
.product__info_title {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .product__article .product__info {
        padding-left: 12px;
        padding-right: 0;                                
    }
}
@media screen and (max-width: 480px) {
    .product__article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__wrap {
        max-width: none;
    }
    .product__article .product__info {
        padding-left: 0;
    }
    h1.product__title {
        margin-top: 24px;
    }
}