

.altanz-pf-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #f7c988
}








.altanz-pf-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    color: #4d4d4d;
    transition: color 0.2s ease;
    padding-bottom: 10px;
}

.altanz-pf-item:hover {
    color: #000;
}

.altanz-pf-arrow {
    width: 5px;
    height: 5px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.2s ease;
}

.altanz-pf-item.active .altanz-pf-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.altanz-pf-item.active {
    color: #000;
}





/* =========================================
   ALTANZ LUXURY UNDERLINE
========================================= */


.altanz-pf-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background: #111;
    transition: width 0.35s ease;
}

/* Hover */

.altanz-pf-item:hover::after {
    width: 100%;
}

/* Active */

.altanz-pf-item.has-active::after,
.altanz-pf-item.active::after {

    width: 100%;
    background: #0d2c6c;
    height: 1px;
}


.altanz-pf-item.has-active {

    color: #0d2c6c;
}







/*
|--------------------------------------------------------------------------
| AJAX LOADING
|--------------------------------------------------------------------------
*/

.altanz-pf-loading {

    opacity: 0.45;

    pointer-events: none;

    transition: opacity 0.25s ease;
}

/*
|--------------------------------------------------------------------------
| CLEAR BUTTON
|--------------------------------------------------------------------------
*/

.altanz-pf-clear-all {

    position: relative;
    top: -4px;
    
    background: none;
    border: none;
    padding: 0;
    margin-left: 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;

    color: #0d2c6c;

    text-decoration: underline;
    
    text-transform: capitalize;

    cursor: pointer;

    display: none;
}

.altanz-pf-clear-all:hover {

    opacity: 0.7;
}




/*
|--------------------------------------------------------------------------
| OPEN DROPDOWN STATE
|--------------------------------------------------------------------------
*/

.altanz-pf-item.active .altanz-pf-label {
    color: #0d2c6c;
}


.altanz-pf-item.active::after {
    opacity: 1;
}


/*
|--------------------------------------------------------------------------
| FILTER BACKDROP
|--------------------------------------------------------------------------
*/

.altanz-pf-backdrop {

    display: none !important;
}


.altanz-pf-backdrop.active {

    opacity: 1;
    visibility: visible;
}
























