.tag-container-spec {
    width: 90%;
    display: flex;
}
.tag-container-spec .tag {
    position:relative; 
    height: 45px;
    margin: 5px;
    padding: 3px 20px;
    border-radius: 25px;
    background: rgb(171, 209, 209);
    display: flex;
    align-items: center;
    color: #333;
    cursor: default;
    font-family: "Confortaa";
    font-size: 15px;
}
.tag i {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
    cursor: pointer;
}
.input-field{
    position:relative;
    text-align: left;
    border: 0px;
    font-family: "Confortaa";
    font-size: 18px;
    Color: #185667;
    font-weight: bold;
    width:90%;
}   
.input-field:focus {
    outline: none;
}
.icon {
    position: relative;
    top: 18px;
    left: 15px;
    width: 40px;
}    

/* Pour le Toast */
#snackbar {
    visibility: hidden; 
    min-width: 250px;
    margin-left: -125px; 
    background-color: #333; 
    color: #fff; 
    text-align: center; 
    border-radius: 2px; 
    padding: 16px;
    position: fixed; 
    z-index: 3; 
    left: 50%; 
    bottom: 200px; 
    border-radius: 25px;
}
#snackbar.show {
    visibility: visible; 
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 200px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 200px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 200px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 200px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}