html, body, #layout_container {
    height: 100%;
    
    /*Customisation*/
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
}

body {
    background-color: #F1F1F1;
}

.pointer {
    cursor: pointer;
}
.pointer-help {
    cursor: help;
}

/* Style des barres de recherche */
#search-bar .form-control, #search-bar button {
    box-shadow: none;
}
#search-bar input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

/* ========== */
/* HOVER GROW */
/* ========== */
.hover-grow {
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.hover-grow:hover {
    transform: scale(1.01);
}

.rounded-5 {
    border-radius: 1rem;
}
@media (min-width: 576px) {
    .rounded-sm-5 {
        border-radius: 1.5rem !important;
    }   
}