#actionbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.topbuttons {
    position: inherit;
}

#filterbar {
    height: 6vw;
    display: flex;
    align-items: center;
}

#filterbar .fas {
    font-size: 3vw;
}

#filterText {
    height: 100%;
    padding: .1vw 1vw 0.1vw .2vw;
    font-size: 3vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: var(--popup-text-color);
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#filterbar>.input-with-icon {
    width: 40vw;
}

#keyboard-trigger-filtre {
    margin-right: 8vw;
}

#eraser-trigger-filtre {
    margin-right: 4vw;
}

#CategorieContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#imgbtnhome,
#eraseImg {
    height: 3vw;
}

#selectPanel {
    width: 100%;
    opacity: 0.9;
}

#pt-main>.ui-page-active {
    overflow: hidden;
}

#ProductContainer {
    display: none;
}

#ProductContainerContent {
    margin-top: 1vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1vw;
}

.data-category {
    width: 45vw;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.data-category img {
    max-width: 14vw;
    max-height: 10vw;
    object-fit: contain;
}

.data-all .h1-like {
    color: #098B03;
    font-family: DaxWeb-CondLight;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: normal;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

a:hover .data-category {
    border-color: #c0c0ff;
}

a:hover .data-category span {
    background-color: #c0c0ff;
    color: #098B03;
}

.data-category span {
    padding: 0.1vh 0.5vw;
    overflow: hidden;
}

.categoryexamples {
    display: flex;
    justify-content: space-evenly;
    padding: 0.5vw;
}

.MenuFilterField {
    display: inline-block;
    text-align: left;
    font-size: 12pt;
    width: 27vw;
    min-height: calc(3vw + 1em);
}

.MenuButton {
    display: inline-block;
    text-align: center;
    font-size: 12pt;
    width: 6vw;
    min-height: calc(3vw + 1em);
}

.MenuButton img {
    height: 3vw;
}

.linkpointer {
    cursor: pointer;
}

.CatStyle {
    width: 10vh;
    height: 9vh;
    border: 1px solid #C0C0C0;
    border-radius: .5vh;
    float: left;
    margin: .5vh;
    overflow: hidden;
}

.spanCat {
    clear: left;
    color: black;
    font-size: .7vh;
    height: 1.5vh;
    width: 100%;
    background: url("../../../images/picto-right.png") 100% 50% no-repeat rgb(238, 238, 238);
    overflow: hidden;
    display: block;
    text-transform: uppercase;
}

.imgCat {
    width: 100%;
    height: 7.5vh;
    object-fit: contain;
}

@media (orientation: portrait) {
    #actionbar {
        margin-top: calc(3vh + 10vw);
        height: 6vh;
    }

    #CategorieContainer,
    #actionbar {
        margin-left: 4vw;
        width: 92vw;
    }

    #actionbar img {
        width: 6vw;
    }

    .data-category {
        height: calc(12.1vw + 22px);
    }

    #ProductContainer {
        margin-top: calc(2vh + 9vw);
    }
}

@media (orientation: landscape) {
    #actionbar {
        height: 6vh;
    }

    #CategorieContainer {
        margin-top: 2vh;
    }

    #CategorieContainer,
    #actionbar {
        margin-left: calc(5vw + 10vh);
        width: calc(93vw - 10vh);
    }

    #actionbar img {
        width: 6vh;
        height: 6vh;
    }

    .data-category {
        margin-top: 3vh;
        height: 14vh;
        width: 21vw;
    }

    #ProductContainer {
        margin-left: calc(2vw + 8.5vh);
    }

    .data-category img {
        max-width: 6.5vw;
        max-height: 11vh;
    }

    .MenuFilterField {
        width: 25vw;
        min-height: calc(3vh + 1em);
    }

    .CatStyle {
        width: 10vw;
        height: 9vw;
        border-radius: .5vw;
        margin: .5vw;
    }

    .spanCat {
        font-size: .7vw;
        height: 2.5vh;
        padding-right: .8vw;
    }

    .imgCat {
        height: calc(9vw - 2.5vh);
        border-radius: .5vw;
    }

    #filterText {
        font-size: 4vh;
    }
}