﻿

.show-next {
    opacity: 0;
}

.show-next.visible {
    opacity: 1;
    pointer-events: all;
}


.filter-item-pp {
    flex: 0 0 auto;
    margin: 0 10px 10px 0;
    position: relative;
    /*width: 32%;*/
}

.filter-btn-pp {
    background-color: white;
    border-radius: 8px;
    border: solid 1px var(--grey-light);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    color: var(--grey-dark);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 15px 12px;
    transition: all .2s ease;
}

.filter-item .filter-content-pp {
    background-color: white;
    background-color: var(--main-bg);
    border: solid 1px var(--grey-light);
    border-radius: 8px;
    box-shadow: 0 13px 16px 0 var(--shadow);
    left: 0;
    max-height: 0;
    max-width: 500px;
    min-width: 400px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 51px;
    transition: all .2s ease;
    z-index: 500;
}

.filter-content-view-pp {
    max-height: 429px;
    width: calc(100% + 20px);
    padding-right: 17px;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.filter-content-reset-pp {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px 15px;
    display: flex;
    width: 100%;
    height: 50px;
    background-color: white;
    background-color: var(--main-bg);
    justify-content: space-between;
    border-top: solid 1px var(--grey-light);
    z-index: 20;
}

.filter-item.open .filter-content {
    max-height: 500px;
    opacity: 1;
    padding: 15px;
    padding-bottom: 60px;
}

.filters-container-pp .filters-list-pp .filter-item-pp .filter-content-pp .filter-content-view-pp {
    max-height: 429px;
    width: calc(100% + 20px);
    padding-right: 17px;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.filters-container .delete-filters {
    background-image: url(../images/icons/ic_x_round_white.svg);
    background-size: 20px 20px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding-right: 45px;
    border-radius: 8px;
    bottom: 0;
    font-size: .9rem;
    opacity: 0;
    padding: 8px 45px 6px 15px;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.filters-container .delete-filters.visible {
    opacity: 1;
    pointer-events: all;
}

.counterInfos {
    text-align: center;
    font-weight: bold;
    font-size: large;
}

.filterInfos {

}

.action-btn {
    background-color: var(--blue-light);
    border-radius: 8px;
    border: solid 1px var(--grey-light);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    /*color: var(--grey-dark);*/
    width: auto;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 15px 12px;
    transition: all .2s ease;
    text-align: center;
}

body.dark .action-btn {
    background-color: var(--grey-light);
    border: solid 1px var(--grey-light);
    color: var(--grey-dark);
}
