/*
Tiles
----------------------------------------------------------------------------*/
.tile {
    background: var(--color3);
    padding: 2em;
    box-shadow: var(--shadow);
    margin: 1em auto;
    margin-bottom: 2em;
}
.tile > * {
    margin-top: 0;
}

/*
Logotypes
----------------------------------------------------------------------------*/
.logo {
    display: block;
    max-width: 14em;
    max-height: 6em;
    width: auto;
    height: auto;
    margin: 2em auto;
}

/*
Tags
----------------------------------------------------------------------------*/
.tag {
    display: inline-block;
    background: var(--color2);
    font-size: 0.7em;
    padding: 0.5em 1.2em;
    border-radius: 0.2em;
    margin: 0 0.3em 0.6em 0;
    text-decoration: none;
    color: var(--textColor1);
}

.tag-theme {
    background: #ABBEAD;
    font-weight: bold;
}

/*
Chemical elements
----------------------------------------------------------------------------*/
.chemical-element {
    display: inline-block;
    background: var(--color4);
    color: var(--color3);
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
    border-radius: 0.2em;
    text-align: center;
    margin-right: 0.15em;
}

/*
Filters
----------------------------------------------------------------------------*/
.filter {
    box-shadow: var(--shadow);
    box-shadow:
    border: none;
    border: 0.2em solid transparent;
    border-radius: 0.1em;
    padding: 0.5em 1em;
    padding-right: 2.4em;
    margin: 0.5em;
    font-size: 1em;
    background-color: var(--color3);
    line-height: inherit;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../../ressources/img/arrow.2253b5ff8430.svg");
    background-repeat: no-repeat, repeat;
    background-position: right 1em top 50%, 0 0;
    background-size: .8em auto, 100%;
}

/* Hide arrow icon in IE browsers */
.filter::-ms-expand {
    display: none;
}

/* Hover style */
.filter:hover {
    border-color: var(--color2);
}

/*
Links
----------------------------------------------------------------------------*/
a[href^="mailto:"] {
    display: flex;
    align-items: center;
}

a[href^="mailto:"]::before {
    content: "";
    background: url("../../ressources/img/mail.d9ea8780c6f9.svg") no-repeat;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}