.ahpf-loading{

    opacity:.45;

    pointer-events:none;

    transition:.3s;

}

#ahpf-color-filter{

    min-width:220px;

    padding:10px 15px;

    margin-bottom:25px;

    border:1px solid #ddd;

}
/* Full page loader */
.ahpf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.ahpf-overlay.active {
    display: flex;
}

.ahpf-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #ddd;
    border-top-color: #000;
    border-radius: 50%;
    animation: ahpf-spin .8s linear infinite;
}

@keyframes ahpf-spin {
    to {
        transform: rotate(360deg);
    }
}
.ahpf-filter-wrapper select {
    width: 220px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .ahpf-filter-wrapper select {
        width: 100%;
    }
}