.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    overflow: hidden;
    transition: all .3s ease
}

.product-card::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 6px;
    transition: all .3s ease
}

.product-card:hover {
    border-color: #fa9d24
}

.product-card:hover::before {
    border-color: #fa9d24
}

.product-card__image img {
    display: block;
    width: 100%
}

.product-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 100%;
    padding: 20px
}

.product-card__name {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px
}

.product-card__desc {
    max-height: 54px;
    margin: 15px 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    opacity: .9
}

.product-card__meta {
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: 300
}

.product-card__meta-item--type {
    margin-bottom: 5px
}

.product-card__datasets .product-datasets {
    padding-top: 0
}

.product-datasets {
    display: flex;
    flex-flow: row wrap;
    gap: 6px;
    padding-top: 10px
}

.product-datasets__label {
    padding: 2px 8px;
    color: #fff;
    background-color: var(--bg-color, #0c1724);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px
}

.category-top {
    position: relative;
    min-height: 260px;
    padding: 30px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right center;
    background-color: #f4f4f4
}

.category-top__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-header {
    position: relative;
    z-index: 2;
    margin: auto;
}

.category-top__title {
    margin: 90px 0 15px;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.2
}

.category-top__form {
    width: 100%;
    max-width: 500px
}

.category-top__search-group {
    position: relative
}

.category-top__search-input {
    width: 100%;
    height: 48px;
    padding: 15px 48px;
    font-size: 14px;
    line-height: 18px;
    color: #0c1724;
    background-color: #fff;
    border-bottom: 1px solid #8d8d8d;
    outline: 2px solid rgba(0, 0, 0, 0);
    transition: all .15s ease
}

.category-top__search-input:focus {
    outline: 2px solid #fa9d24
}

.category-top__search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%)
}

.category-page {
    position: relative;
    overflow: hidden
}

.category-page__wrap {
    display: flex;
    flex-direction: row;
    margin-left: -24px;
    margin-right: -24px;
    padding: 50px 0
}

@media screen and (max-width:1024px) {
    .category-page__wrap {
        flex-wrap: wrap;
        margin: 0
    }
}

@media screen and (max-width:767px) {
    .category-page__wrap {
        padding: 30px 0
    }
}

.category-page__aside {
    width: 320px;
    padding: 0 24px
}

@media screen and (max-width:1024px) {
    .category-page__aside {
        width: 100%;
        margin: 0;
        padding: 0
    }
}

.category-page__main {
    width: calc(100% - 320px);
    padding: 0 24px
}

@media screen and (max-width:1024px) {
    .category-page__main {
        width: 100%;
        padding: 0
    }
}

.category-page__header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px
}

.category-page__header-text {
    font-size: 16px
}

@media screen and (max-width:767px) {
    .category-page__header-text {
        width: 100%;
        padding: 15px 0;
        text-align: center
    }
}

.category-page__header-actions {
    display: flex;
    align-items: center
}

@media screen and (max-width:767px) {
    .category-page__header-actions {
        width: 100%
    }

    .category-page__header-actions .sort-by {
        display: block;
        width: 100%
    }
}

.category-page__filter {
    display: flex;
    flex-flow: row wrap;
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 30px
}

.category-page__filter-label {
    display: none;
    font-size: 13px;
    font-weight: bold;
    line-height: 24px
}

.category-page__filter-mobile {
    width: 100%;
    display: none;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .category-page__filter-mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 30px
    }

    .category-page__filter-mobile .btn {
        justify-content: center;
        width: 100%;
        font-weight: bold;
        text-transform: uppercase
    }
}

@media screen and (max-width:767px) {
    .category-page__filter-mobile {
        margin-bottom: 10px
    }
}

.filter {
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb
}

.filter:first-child {
    padding-top: 0
}

.filter:last-child {
    border-bottom-color: rgba(0, 0, 0, 0)
}

.filter__toggle {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: all .15s ease
}

.filter__toggle:hover {
    background-color: #e5e5e5
}

.filter__content {
    display: none
}

.filter__category-icon {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #fa9d24;
    fill: #fa9d24
}

.filter__nav {
    margin: 0;
    padding: 0;
    list-style: none
}

@media screen and (min-width:768px)and (max-width:1024px) {
    .filter__nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 20px;
        gap: 0 20px
    }
}

.filter__nav--scroll {
    max-height: 320px;
    overflow-y: auto
}

.filter__nav-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 22px;
    transition: all .15s ease
}

.filter__nav-link>span {
    padding-top: 2px
}

.filter__nav-link:hover {
    background-color: #e5e5e5
}

.filter__more .btn--link {
    padding: 9px 33px;
    color: #fa9d24;
    font-weight: normal
}

.filter__more .btn--link:hover {
    text-decoration: underline
}

.filter__more .btn--link:hover svg, .filter__more .btn--link:focus svg {
    transform: none
}

.filter__more .btn--link .txt-less {
    display: none
}

.filter__more .btn--link.active .txt-more {
    display: none
}

.filter__more .btn--link.active .txt-less {
    display: block
}

.filter__more .btn--link.active svg {
    transform: rotate(180deg)
}

.filter.open .filter__content {
    display: block
}

.filter.open .filter__toggle>svg {
    transform: rotate(180deg)
}

.filter-item {
    position: relative;
    display: flex;
    padding: 4px 10px;
    padding-left: 26px;
    color: #343a3f;
    background-color: #dde1e6;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px
}

.filter-item__remove {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 4px;
    color: currentColor;
    background-color: rgba(0, 0, 0, 0);
    font-size: 0;
    transition: all .3s ease
}

.filter-item__remove svg {
    display: block;
    width: 16px;
    height: 16px
}

.filter-item__remove:hover {
    background-color: #c1c7cd
}

.filter-item--all {
    padding-left: 10px;
    transition: all .3s ease
}

.filter-item--all:hover {
    color: #fff;
    background-color: #fa9d24
}

.filter-radio {
    position: relative;
    width: 100%
}

.filter-radio input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.filter-radio input[type=radio]:checked~.filter-radio__label::after {
    display: block
}

.filter-radio__label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 2px 0 0
}

.filter-radio__label::before {
    content: "";
    pointer-events: none;
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-bottom: 2px;
    border-radius: 50%;
    border: 1px solid #354f8a
}

.filter-radio__label::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 8px;
    left: 5px;
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #354f8a
}

.filter-checkbox {
    position: relative;
    width: 100%
}

.filter-checkbox input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.filter-checkbox input[type=checkbox]:checked~.filter-checkbox__label::before {
    background-color: #354f8a
}

.filter-checkbox input[type=checkbox]:checked~.filter-checkbox__label::after {
    display: block;
    transform: scale(1) rotate(-45deg)
}

.filter-checkbox__label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 2px 0 0
}

.filter-checkbox__label::before {
    content: "";
    pointer-events: none;
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-bottom: 2px;
    border: 1px solid #354f8a
}

.filter-checkbox__label::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 5px;
    left: 4px;
    display: none;
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform-origin: bottom right
}

.sort-by {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 190px;
    padding: 8px 16px;
    padding-right: 30px;
    height: 40px;
    border: 0;
    border-bottom: 1px solid #0c1724;
    border-radius: 0;
    background-color: #f4f4f4;
    background-image: url("../img/caret.svg");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all .3s ease
}

.sort-by:focus {
    outline: 0
}

.sort-by option {
    padding: 8px 16px
}

.sort-by:hover, .sort-by:focus {
    background-color: #e5e5e5
}

.catagory-view {
    display: flex;
    margin-left: 30px
}

@media screen and (max-width:767px) {
    .catagory-view {
        display: none
    }
}

.catagory-view .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 48px;
    height: 40px;
    color: #0c1724;
    background-color: #fff;
    border: 1px solid #0c1724;
    border-radius: 0;
    transition: all .3s ease
}

.catagory-view .btn--grid {
    border-radius: 4px 0 0 4px
}

.catagory-view .btn--list {
    border-radius: 0 4px 4px 0
}

.catagory-view .btn svg {
    display: block;
    max-width: 100%;
    max-height: 100%
}

.catagory-view .btn:hover {
    background-color: #e5e5e5
}

.catagory-view .btn.active {
    color: #fff;
    background-color: #0c1724
}

.catagory-view .btn.active:hover {
    color: #fff;
    background-color: #0c1724
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    gap: 20px
}

@media screen and (max-width:767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width:440px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr)
    }
}

.product-grid [data-view=list] {
    display: none
}

.product-grid--list {
    grid-template-columns: repeat(1, 1fr)
}

.product-grid--list [data-view=grid] {
    display: none
}

.product-grid--list [data-view=list] {
    display: block
}

.product-grid--list .product-card__meta {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 15px 0 0
}

@media screen and (max-width:1024px) {
    .sidebar-filter {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .sidebar-filter--open {
        pointer-events: auto;
        opacity: 1;
        visibility: visible
    }

    .sidebar-filter--open .sidebar-filter__overlay {
        opacity: 1;
        visibility: visible
    }

    .sidebar-filter--open .sidebar-filter__main {
        transform: translateY(0)
    }

    .sidebar-filter__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0, 0, 0, .8);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .sidebar-filter__main {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        display: block;
        padding: 50px 0 70px;
        background-color: #fff;
        transform: translateY(100%);
        transition: all .3s ease
    }

    .sidebar-filter__content {
        height: 100%;
        padding: 15px 15px 0;
        overflow-x: hidden;
        overflow-y: auto
    }

    .sidebar-filter__header, .sidebar-filter__footer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%
    }

    .sidebar-filter__header {
        height: 50px;
        border-bottom: 1px solid #ebebeb
    }

    .sidebar-filter__footer {
        top: auto;
        bottom: 0;
        padding: 10px 15px;
        background-color: #fff;
        box-shadow: 0 0 8px 8px rgba(0, 0, 0, .05)
    }

    .sidebar-filter__footer .btn {
        justify-content: center;
        width: 100%
    }

    .sidebar-filter__close {
        position: absolute;
        top: 0;
        right: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        padding: 0;
        color: #0c1724;
        background-color: rgba(0, 0, 0, 0);
        border: 0
    }

    .sidebar-filter__close svg {
        display: block;
        width: 24px;
        height: 24px
    }
}

@media screen and (min-width:1025px) {
    .sidebar-filter__header, .sidebar-filter__footer {
        display: none
    }
}