@charset "UTF-8";
.lm-carrieres-filters {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 2rem -.3rem;
}

.lm-carrieres-filters > div {
    width: 220px;
    margin: 1rem 0.3rem;
}

.drop-display > div {
    display: flex;
    flex-wrap: wrap;
}

.singleDropMulti {
    position: relative;
}

.singleDropMulti .drop label,
.singleDropMulti .drop.labelhover.open label{
    position: absolute;
    top: -1.4rem;
    transform: initial;
    margin: 0;
    left: 0;
    transition: all 300ms ease;
    font-size: 80%;
}
.singleDropMulti .drop.labelhover label {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 0;
    font-size: 100%;
}

.drop {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drop.open {
    z-index: 100;
}

.drop.open .drop-screen {
    z-index: 100;
    display: block;
}

.drop.open .drop-options {
    z-index: 200;
    max-height: 200px;
}

.drop.open .drop-display {
    z-index: 200;
    border-color: #465;
}

.drop select {
    display: none;
}

.drop .drop-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0px;
    left: 0px;
    opacity: 0;
    display: none;
    z-index: 1;
}

.link {
    text-align: center;
    margin: 20px 0;
    color: #8CACD7;
}

.drop .drop-display {
    position: relative;
    padding: 0px 20px 5px 5px;
    border: 1px solid #b7ab91;
    width: 100%;
    background: transparent;
    z-index: 1;
    margin: 0;
    font-size: 16px;
    min-height: 42px;
}

.drop .drop-display:hover:after {
    opacity: 0.75;
}

.drop .drop-display:after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f078";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #525252;
}

.drop .drop-display .item {
    position: relative;
    display: inline-block;
    border: 2px solid #333;
    margin: 6px 5px 0px 0px;
    padding: 0px 25px 0px 10px;
    overflow: hidden;
    height: 32px;
    line-height: 28px;
}

.drop .drop-display .item .btnclose {
    color: #444;
    position: absolute;
    font-size: 16px;
    right: 5px;
    top: 10px;
    cursor: pointer;
}

.drop .drop-display .item .btnclose:hover {
    opacity: 0.75;
}

.drop .drop-display .item.remove {
    -webkit-animation: removeSelected 0.2s, hide 1s infinite;
    animation: removeSelected 0.2s, hide 1s infinite;
    -webkit-animation-delay: 0s, 0.2s;
    animation-delay: 0s, 0.2s;
}

.drop .drop-display .item.add {
    -webkit-animation: addSelected 0.2s;
    animation: addSelected 0.2s;
}

.drop .drop-display .item.hide {
    display: none;
}

.drop .drop-options {
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 100%;
    max-height: 0px;
    overflow-y: auto;
    transition: all 0.25s linear;
    z-index: 1;
}

.drop .drop-options a {
    display: block;
    line-height: 40px;
    padding: 0px 20px;
    color: #000;
    position: relative;
    min-height: 40px;
    transition: all 300ms;
    overflow: hidden;
}

.drop .drop-options a:hover {
    background: #f2f2f2;
    cursor: pointer;
}

.drop .drop-options a.remove {
    min-height: initial !important;
    -webkit-animation: removeOption 0.2s;
    animation: removeOption 0.2s;
    max-height: 0px;
}

.drop .drop-options a.add {
    -webkit-animation: addOption 0.2s;
    animation: addOption 0.2s;
}

.drop .drop-options a.hide {
    display: none;
}

.drop .btnclosesingle {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    height: 20px;
}

@-webkit-keyframes pop {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pop {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes removeOption {
    from {
        max-height: 40px;
    }
    to {
        max-height: 0px;
    }
}

@keyframes removeOption {
    from {
        max-height: 40px;
    }
    to {
        max-height: 0px;
    }
}

@-webkit-keyframes addOption {
    from {
        max-height: 0px;
    }
    to {
        max-height: 40px;
    }
}

@keyframes addOption {
    from {
        max-height: 0px;
    }
    to {
        max-height: 40px;
    }
}

@-webkit-keyframes removeSelected {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes removeSelected {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-webkit-keyframes addSelected {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes addSelected {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes hide {
    from, to {
        max-height: 0px;
        max-width: 0px;
        padding: 0px;
        margin: 0px;
        border-width: 0px;
    }
}

@keyframes hide {
    from, to {
        max-height: 0px;
        max-width: 0px;
        padding: 0px;
        margin: 0px;
        border-width: 0px;
    }
}