@media (min-width: 1100px) {
    .hrt-listing {
        display: flex;
        align-items: flex-start;
    }
}
.hrt-attribute {
    margin-bottom: 20px;
}
@media (min-width: 1100px) {
    .hrt-attribute {
        width: 400px;
    }
}
.hrt-attribute__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #464646;
    padding: 14px 20px;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.8s;
}
.hrt-attribute:has(input:checked) .hrt-attribute__label {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.09);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.09);
}
.hrt-attribute__label p {
    color: white;
    margin-bottom: 0px;
}
.hrt-attribute__label svg {
    transform: rotate(0deg);
    transition: 0.8s;
    height: 18px;
    width: 18px;
}
.hrt-attribute--is-open .hrt-attribute__label svg {
    transform: rotate(135deg);
}
.hrt-attribute__options {
    display: none;
}
.hrt-attribute__option {
    display: flex;
    align-items: center;
    padding: 14px;
}
.hrt-attribute__option:first-child {
    margin-top: 10px;
}
.hrt-attribute__option p {
    margin-left: 10px;
    margin-bottom: 0px;
}
.hrt-listing__products {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin-left: -10px;
    margin-right: -10px;
}
@media (min-width: 1100px) {
    .hrt-listing__products {
        margin-top: -10px;
        margin-left: 20px;
        margin-right: 0px;
    }
}
@media (min-width: 1300px) {
    .hrt-listing__products {
        margin-left: 60px;
    }
}
.hrt-product {
    width: 100%;
    margin: 10px;
    border: solid 2px whitesmoke;
    border-radius: 2px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.04);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.04);
    transition: 0.8s;
}
@media (min-width: 600px) {
    .hrt-product {
        margin: 10px;
        width: calc(50% - 20px);
    }
}
@media (min-width: 1300px) {
    .hrt-product {
        width: calc(33.33% - 20px);
    }
}
.hrt-product:hover {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.08);
}
.hrt-product__image {
    height: 240px;
    background-color: whitesmoke;
}
@media (min-width: 600px) {
    .hrt-product__image {
        height: 300px;
    }
}
.hrt-product__image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain;
    transform: scale(0.8);
    transition: 0.8s;
}
.hrt-product:hover .hrt-product__image img {
    transform: scale(0.83);
}
.hrt-product__content {
    padding: 30px 20px;
}
.hrt-product__title {
    font-size: 22px !important;
    color: black;
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: none !important;
}
.hrt-product__content p {
    color: #6B6A66 !important;
}
.hrt-product__content p:last-child {
    margin-bottom: 0px;
}
.hrt-listing__filter-results-wrapper {
    display: none;
    justify-content: center;
    width: 100%;
}
@media (max-width: 600px) {
    .hrt-listing__filter-results-wrapper {
        display: flex;
    }
}
.hrt-listing__filter-results {
    display: none;
    position: fixed;
    bottom: 10px;
    background: #bf1821;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.17);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.17);
}
.hrt-listing__filter-results--is-visible {
    display: block;
}
