/*--------------CUISINE--------------*/

.visit_rest_presentation_hashtags_container {
    width: 95%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.visit_rest_presentation_hashtags {
    border: 1px solid #000;
    border-radius: 8px;
    padding: 0.5em 1em 0.5em 1em;
    margin: 0 0.5vw 1vh 0;
    position: relative;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}

.visit_rest_presentation_hashtags_title {
    position: relative;
    margin: 0;
    padding: 0;
    font: 400 calc(var(--corporate_default_font_size) * var(--corporate_product_filter_title)) 'Geologica', sans-serif;
    color: #000;
    transition: 0.2s all ease-in-out;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 1280px) {
    .visit_rest_presentation_hashtags_container {
        margin: 2vmax auto 2vmax auto;
    }
    .visit_rest_presentation_hashtags {
        margin: 0 1vmax 1vmax 0;
    }
}

.visit_rest_presentation_hashtags.active_filter {
    background-color: #a6192e;
    color: #fff;
    transition: 0.2s all ease-in-out;
}

.active_filter .visit_rest_presentation_hashtags_title {
    color: #fff;
    transition: 0.2s all ease-in-out;
}