/* PARA CATEGORY */
#product-list-top-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
}

#js-product-list-top{
    justify-content: center;
    align-items: center;

    gap: 30px;
    padding: 0;
}

.cc-product-list-top .step_switcher {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    font-size: 10px;
}

.cc-product-list-top .step_switcher .step {
    cursor: pointer;
}

.cc-product-list-top .step_switcher .step i {
    margin-right: 2.5px;
}

.cc-product-list-top .step_switcher .step:hover {
    color: #000;
}

.cc-product-list-top .step_switcher .step.selected * {
    color: #000;
}

/* /PARA CATEGORY */

.products-sort-order {
    display: none;
}

#search_filters .products-sort-order { 
    display: block;
}

#products .cc-product-list-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#search_filters_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: none;

    
}

#st-container #search_filters_background .cc_loader{ 
    border: 1px solid #000;
    border-radius: 50%;    
    font-size: 48px;
    width: 75px;
    height: 75px;
    text-align: center;
}

#st-container #search_filters_background.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 100;
    background: rgba(0,0,0,0.15);
}

#products #search_filters_wrapper .title_block {
    display: none;
}

#products #search_filters_wrapper #search_filters{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

#products #search_filters_wrapper #search_filters .facet-content{
    position: relative;
}


#products #search_filters_wrapper #search_filters .facet-content .facet-title {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    padding: 5px;
    
    cursor: pointer;
}

#products #search_filters_wrapper #search_filters .facet-content .facet-title .cc_facet_count.show {
    font-size: 10px;    
    width: 15px;
    margin-left: 5px;
    background-color: #000;
    text-align: center;
    border-radius: 50%;
    color: #FFF;
}

#products #search_filters_wrapper #search_filters .facet-content .facet-title .arrow{ 
    margin-left: 5px;
    transition: all .1s ease-in-out;
    font-size: 22px;
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet-title .arrow{ 
    rotate: -180deg;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box{
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 12;
    height: 0;
    transition: all .5s ease-in;

    background-color: #FFF;
    border: 1px solid #e7e7e7;

    padding: 20px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;

    min-width: 365px;

    -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.65);
    -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.65);
    box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.65);
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box{
    display: grid;
    height: auto;
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_price {
    display: block!important;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li {
    border: 1px solid #e6e6e6;
    border-radius: 4px;    
    text-align: center;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li.facet_filter_color {
    border: 1px solid #FFF;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li.facet_filter_color .fa-check{
    display: none;
    color: #FFF;
    line-height: 25px;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li.facet_filter_color .facet-label.active .fa-check{
    display: inline-block;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li:not(.facet_filter_color):has( input:checked),
#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li:not(.facet_filter_color):has( a.current),
#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li:not(.facet_filter_color):hover {
    background-color: #000;    
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li:not(.facet_filter_color):has( input:checked) a,
#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li:not(.facet_filter_color):has( a.current) a,
#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li:not(.facet_filter_color):hover a {
    color: #FFF;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li a {
    display: block;
    width: 100%;
    padding: 7px;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li .custom-input-box {
    display: none;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box .facet_filter_item_li .magnitude {
    display: none;
}

#products #search_filters_wrapper .bottom-buttons{
    display: none;
}
/* tallas sujetador */
#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador {
    display: flex;
    flex-direction: column;    
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador .facet_filter_tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;

    padding: 20px 0;
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador .facet_filter_tabs .facet_filter_tab_item {
    cursor: pointer;
}
#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador .facet_filter_tabs .facet_filter_tab_item:hover,
#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador .facet_filter_tabs .facet_filter_tab_item.active {
    font-weight: 500;
    text-decoration: underline;
    color: #000;
    text-underline-offset: 10px;
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador .facet_filter_content {
    display: none;
}

#products #search_filters_wrapper #search_filters .facet-content.displayed .facet_filter_box.facet_talla_sujetador .facet_filter_content.active {
    display: block;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box.facet_talla_sujetador .facet_filter_section {
    list-style: none;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box.facet_talla_sujetador .facet_filter_section .section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

#products #search_filters_wrapper #search_filters .facet-content .facet_filter_box.facet_talla_sujetador .facet_filter_section .section .facet-label {
    margin: 0;
}

/* ACTIVE filters */
#js-active-search-filters {
    margin-bottom: 30px;
}

#js-active-search-filters .active_filters {
    display: flex;
    justify-content: center;
    align-items: center;
}

#js-active-search-filters .active_filters .active_filter_item {
    background-color: #f4f4f2;
    border: none;
    border-radius: 4px;
    color: #000;
    padding: 5px;
}

#js-active-search-filters .active_filters .active_filter_item i{ 
    margin-left: 3px;
}

#js-active-search-filters .active_filters .active_filter_item:hover i{ 
    color: #FFF;
}

#js-active-search-filters .active_filters .active_filter_item:hover {
    background-color: #000;
    color: #FFF;
}

#js-active-search-filters .js-search-filters-clear-all{
    margin-left: 15px;
    text-decoration: underline;
}

#search_filters .facet ul.faceted-slider {
    overflow: visible;
    /*width: 100%;*/
}

#search_filters_wrapper .facet_filter_box .ui-slider {
    height: 5px;
    border: none;
    background: #58585A;
}

#search_filters_wrapper .facet_filter_box .ui-slider-handle {
    border: 1px solid #58585A;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: white;
    top: -9px;
    box-shadow: 0px 3px 3px rgb(0 0 0 / 10%);
}

#search_filters_wrapper .facet_filter_box .ui-slider-handle:nth-child(3) {
    background: #58585A;
}

#search_filters_wrapper .facet_filter_box .ui-slider-range {
    background: #58585A;
}