#filters {
    margin-top: 20px;
    & .multi_select {
        position: relative;
        & .selector {
            cursor: pointer;
            margin-bottom: 10px;
            height: fit-content;
            width: 100%;
            display: flex;
            flex-direction: row;
            border-radius: 10px 10px 10px 10px;
            border: 1px #F49529 solid !important;
            & .title {
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 8px 0px 0px 8px;
                color: #ffffff;
                width: 200px;
                background-color: #F49529;
                padding: 5px;
                text-align: center;
            }
            & .options_selected {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                justify-content: left;
                border-radius: 0px 10px 10px 0px;
                padding-left: 10px;
                padding-right: 10px;
                padding-top: 5px;
                padding-bottom: 5px;
                width: 100%;
                overflow: hidden;
                & i {
                    color: #999999;
                }
                & label {
                    cursor: pointer;
                    position: relative;
                    margin-right: 20px;
                    white-space: nowrap;
                    & input {
                        display: none;
                        white-space: nowrap;
                    }
                }
                & label:after {
                    cursor: pointer;
                    content: 'x';
                    color: #990000;
                    font-weight: bold;
                    position: absolute;
                    top:-5px;
                    right: -10px;

                }
            }
        }
        & .options {
            position: absolute;
            top: 100%;
            left: 0px;
            display: none;
            flex-direction: column;
            background-color: #ffffff;
            border: 1px #F49529 solid !important;
            border-radius: 10px 10px 10px 10px;
            padding: 10px;
            z-index: 100;
            & label {
                display: inline;
                white-space: nowrap;
                & input {
                    margin-right: 5px;
                }
            }
            &.shown {
                display: flex;
            }
        }
        @media screen and (max-width: 500px) {
            & .selector {
                flex-direction: column;
                & .title {
                    border-radius: 8px 8px 0px 0px;
                    width: 100%;
                }
            }
        }
        @media screen and (max-width: 500px) {
            & .options {
                max-width: 100%;
                overflow: hidden;
            }
        }
    }
}

#realisation_results {
    /*display: flex;*/
    /*gap: 20px;*/
    /*flex-wrap: wrap;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    margin-top: 20px;
    & a {
        max-width: 100%;
        & img {
            aspect-ratio: 1.4;
        }
    }
}

@media screen and (max-width: 800px) {
    #realisation_results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    #realisation_results {
        grid-template-columns: repeat(1, 1fr);
    }
}
