﻿.product-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-column-gap: 50px;
    padding: 50px 50px;
    padding-top: 15px;
}
.list-title {
    color: #002F6D;
    font-family: var(--font-noto);
    font-size: 24px;
}
.attributes {
    background: #e3f2fbc4 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #7C7C7C29;
    border: 1px solid #EDEDED;
    max-height: fit-content;
    padding: 15px;
    margin-top: 50px;
}
.filters-title {
    color: #002F6D;
    font-weight: bold;
}

.clear-filter {
    font-size: 12px;
    color: #444;
    cursor: pointer;
}
.attr-header {
    background: #fff;
    padding: 5px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #002F6D;
    font-weight: 500;
    margin-bottom: 5px;
}

    .attr-header .fas {
        padding-right: 10px;
        cursor: pointer;
        transition: transform .2s linear;
    }
    .attr-header .fas.collapsed {
        transform: rotate(180deg);
        transform-origin: 7px;
    }

.attr-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 5px;
}

    .attr-content label {
        cursor: pointer;
        color: #000000;
        margin-bottom: 5px;
        font-weight: 500;
        font-size: 14px;
    }


@media (max-width:1440px) {
    .product-grid {
        grid-template-columns: 280px 1fr;
        grid-column-gap: 15px;
        padding: 15px;
    }
}

@media screen and (max-width: 767.98px) {
    .product-grid {
        grid-template-columns: 1fr;
        padding:0;
    }
    .attributes{
        margin-top:0;
    }
}

.filter-loader {
    padding: 10px;
    padding-right: 5px;
    min-width: 270px;
    background-image: linear-gradient(to bottom, #eae9e8, #fff);
    position: sticky;
    top: 20px;
    min-height: 300px;
}

.mobile-filter-wrapper {
    position: fixed;
    top: 0;
    z-index: 100;
    background: #fff;
    width: 100vw;
    height: 100vh;
    left: 0;
    padding: 15px;
    overflow: scroll;
    overscroll-behavior: none;
}

.filter-icon {
    width: 24px;
    height: 26px;
    margin-left: 6px;
    cursor: pointer;
}


.soldto-container {
    background: transparent linear-gradient(90deg, #F7F7F7 0%, #FDFDFD 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #9F9F9F29;
    padding: 15px 50px;
}

.soldto-skeletal {
    margin-bottom: 20px;
}

    .soldto-skeletal .one, .soldto-skeletal .two, .soldto-skeletal .three {
        background-color: #ccc;
        height: 16px;
        animation-name: animate-template;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eee), color-stop(18%, #ddd), color-stop(33%, #eee));
        background: -webkit-linear-gradient(left, #eee 8%, #ddd 18%, #eee 33%);
        background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 33%);
        -webkit-background-size: 800px 104px;
        min-width: 200px;
        margin: 10px;
        max-width: 100%;
    }

@keyframes animate-template {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}
.no-products{

}