.filter-header {
    width: 100%;
    max-width: 100vw;
    min-height: 30px;
    background-image: url('../images/pngs/pozadí.jpg');
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}

.header-logo-img{
    object-fit: contain;
    height: 100%;
    z-index: 20;
}

.header-logo{
    margin-right: 3vw;
    margin-top: 1.5vh;
    position: absolute;
    top: 0;
    right:0;
    height: 4vh;
}

/*
.filter-header::after {
    content: "";
    position: absolute;
    text-emphasis-position: 0;
    left: 0;
    bottom: -10px;
    width: 100%;
    max-width: 100vw; /* Limit the width to the viewport width 
    height: 10px; /* Adjust the height of the shadow as needed 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    z-index: -1;
    padding: 0;
    margin: 0;

    pointer-events: none;
} 
*/

/* #region  carousel filter container */

.carousel__filter-label {
    width: 100%;
    max-height: 0px;
    font-size: 0.9rem;
    /* overflow: hidden; */
    opacity: 0;
    margin: 0px;
    padding-top: 0px;
    padding-right: 15px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 30;
    transition: all 0.4s ease-in-out;
    display: none;
    font-weight: bold;
    color: aliceblue;
}

.carousel__filter-label.label-active {
    max-height: 60px;
    padding-top: 5px;
    opacity: 1;
    /* overflow: visible; */
}

.carousel__filter-container {
    width: 100vw;
    height: 7vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0px 0px;
    padding: 0px 0px;
    z-index: 20;
}

.carousel__filter-button {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: none;
    transition: background-color 1s;
}

.carousel__filter-button:hover {
    /* background-color: var(--yellow); */
    cursor: pointer;
    border-radius: 50px;
}

.carousel__filter-button:active {
    background-color: salmon;
    border-radius: 50px;
}

.carousel__filter-button img {
    width: 4vh;
    height: 4vh;
    /* padding-right: 10px; */
    margin: 0;
}

.carousel__filter-button-detail {
    max-width: 0;
    overflow: hidden;
    font-size: 1.4vh;
    font-weight: bold;
    text-align: left;
    visibility: hidden;
    margin: 4px 5px 4px 5px;
    max-width: 0px;
    color: rgba(255, 255, 255, 0);
    transition: max-width 0.3s, color 0.35s cubic-bezier(0.830, -0.115, 0.875, -0.035), padding 0.3s, overflow-wrap 0.5s, visibility;
}

.carousel__filter-button:hover .carousel__filter-button-detail {
    max-width: 20vw;
    padding: 1vh 1vw 1vh 0.4vw;
    color: rgb(255, 255, 255, 1);
    visibility: visible;
}

.carousel__filter-button.active-filter {
    /* background-color: var(--yellow); */
    cursor: pointer;
}

.carousel__filter-button.active-filter .carousel__filter-button-detail {
    max-width: 20vw;
    /* padding: 1vh 0.4vw 1vh 1vw; */
    padding: 1vh 1vw 1vh 0.4vw;
    color: rgba(255, 255, 255, 1);
    visibility: visible;
}