/**
* Formulaire de recherche dans le header
*/
.header-search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 91px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
}

.header-search-container.open {
    transform: translateY(0);
}

.header-search-container form {
    display: flex;
    align-items: center;
    height: 44px;
    border-radius: 44px;
    width: 80%;
    background: var(--white) url('/bundles/certcommon/images/search-blue.svg') no-repeat 20px center;
    background-size: 27px 27px;
    padding-left: 50px;
}

@media screen and (max-width: 620px) {
    .header-search-container form {
        width: 90%;
    }    
}

.header-search-container form input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 20px;
    padding: 0 15px;
    font-family: 'DM Sans';
    background: transparent;
}

.header-search-container form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background-color: var(--blue);
    background-size: 100%;
    cursor: pointer;
    width: 36px;
    min-width: 36px;
    height: 36px;
    color: var(--white);
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 700;
    border-radius: 18px;
    padding: 0;
}

.header-search-container form button[type="submit"]:hover {
    background-color: var(--blue-hover);
}

.header-search-container form button[type="submit"]:active {
    background-color: var(--blue-click);
}

.header-search-container form button[type="reset"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue);
    outline: none;
    background-color: var(--white);
    cursor: pointer;
    width: 36px;
    min-width: 36px;
    height: 36px;
    color: var(--blue);
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 700;
    border-radius: 18px;
    margin-left: 10px;
    padding: 0;
    margin: 0 5px;
}

.header-search-container form button[type="reset"]:hover {
    background-color: var(--gray-light);
}

.header-search-container form button[type="reset"]:active {
    background-color: var(--white);
}

/**
* Formulaire de recherche sur la page de recherche
*/
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container form {
    display: flex;
    align-items: center;
    height: 68px;
    border-radius: 68px;
    width: 100%;
    background: var(--gray-light) url('/bundles/certcommon/images/search-blue.svg') no-repeat 20px center;
    background-size: 27px 27px;
    padding-left: 50px;
}

.search-container form input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 20px;
    padding: 0 15px;
    background: transparent;
    font-family: 'DM Sans';
    color: var(--blue);
}

.search-container form input::placeholder {
    color: var(--blue);
    opacity: 1;
}

.search-container form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background-color: var(--blue);
    background-size: 100%;
    cursor: pointer;
    width: 36px;
    min-width: 36px;
    height: 36px;
    color: var(--white);
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 700;
    border-radius: 18px;
    padding: 0;
}

.search-container form button[type="submit"]:hover {
    background-color: var(--blue-hover);
}

.search-container form button[type="submit"]:active {
    background-color: var(--blue-click);
}

.search-container form button[type="reset"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue);
    outline: none;
    background-color: var(--white);
    cursor: pointer;
    width: 36px;
    min-width: 36px;
    height: 36px;
    color: var(--blue);
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 700;
    border-radius: 18px;
    margin-left: 10px;
    padding: 0;
    margin: 0 5px;
}

.search-container form button[type="reset"]:hover {
    background-color: var(--gray-light);
}

.search-container form button[type="reset"]:active {
    background-color: var(--white);
}

/**
* Résultats de recherche
*/
.search-results-item {
    margin-top: 40px;
    margin-bottom: 40px;
}

.search-results-item p {
    margin: 10px 0;
}

.search-results-item h2 {
    margin: 10px 0;
}

.search-results-item h2 a {
    text-decoration: none;
}

.search-results-item h2 a:hover {
    text-decoration: underline;
}

.search-results-item-infos {
    padding-left: 20px;
    position: relative;
}

.search-results-item-infos:before {
    position: absolute;
    top: 0;
    left: 5px;
    content: "\2022";
    color: #593CE5;
}

.search-results-item-description {
    padding-left: 20px;
    position: relative;
}

.search-results-item-description:before {
    position: absolute;
    top: 0;
    left: 5px;
    content: "\2022";
}