.search-container {
    z-index: 999;
    position: relative;
    /* Le mettre au-dessus du reste du contenu. */
}

.search-container input[type="text"] {
    border-top: 0 none;
    border-top-width: 0px;
    border-left: 0 none;
    border-left-width: 0px;
    border-right: 0 none;
    border-right-width: 0px;
    border-width: 0;
    border-radius: 0.3rem;
    padding-left: 0.5rem;
    background: rgba(28, 28, 28, 0.04);
    margin-bottom: 0;
    background: rgba(28, 28, 28, 0.04);
    height: 32px;
    width: 100%;
}

.suggestions {
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.suggestions li {
    list-style: none;
    padding: 10px;
    cursor: pointer;
}


.g-search form::before {
    content: "";
    position: absolute;
    left: 0.625rem;
    width: 20px;
    height: 20px;
    top: 30%;
    color: rgba(28, 28, 28, 0.24);
    font: normal normal normal 16px/1 "Font Awesome 5 Pro", "Font Awesome 5 Free";
}

.suggestions {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.suggestions li {
    padding: 8px;
    cursor: pointer;
}

.suggestions li:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: white;
}

.suggestions li:hover a {
    color: black !important;
}

.width-transition {
    transition: width 0.3s ease;
}

.big-popup {
    z-index: 100;
    position: absolute;
    right: 80px;
    top: -4px;
    width: 10px;
    visibility: hidden;
    transition: width 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.big-popup.show {
    width: 210px;
    visibility: visible;
}

.popup {
    background-color: #fff;
    border: 1px solid #ffffff;
}

.search-wrapper {
    width: 100%;
}

#header-social {
    display: none;
}

@media (max-width: 816px) {
    /* .search-bar {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container:hover .search-bar {
        opacity: 1;
        visibility: visible;
    } */





}

@media (min-width: 816px) {
    #header-social {
        display: block;
    }

    .big-popup {
        right: 35px;
        top: 0px;
    }

    .big-popup.show {
        width: 300px;

    }



}