.relewise-products {
    position: relative;
}

.relewise-content-list-inner {
    width: 100%;
}

#loadingDiv {
    display: block;
    width: 100%;
    height: 100%;
}

.spinner {
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

.active-filters-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.active-filters-display .product-filter-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(16 16 16 / var(--tw-bg-opacity));
    color: rgb(255 254 248 / var(--tw-text-opacity));
    padding: 6px 12px;
    font-size: 11px;
}

.active-filters-display .product-filter-block > span {
        display: inline-block;
        margin-right: 6px;
}

.active-filters-display .product-filter-block .product-remove-filter {
    display: inline-block;
    position: relative;
    background: transparent !important;
    padding: 0 !important;
    font-size: 12px;
}

.active-filters-display .product-filter-block .product-remove-filter::after {
    display: none!important;
}

.active-filters-display .remove-all-filter {
    color: var(--tw-prose-body);
    background-color: transparent;
    text-decoration: underline;
    cursor: pointer;
    font-size: 12px;
}

#product-sorting-selector {
    background-color: inherit;
    border: none;
}

#sorting-radios {
    input {
        cursor: pointer;
        accent-color: black;
    }

    label {
        cursor: pointer;
    }
}