:root {
    /*
    * Setup of police for all web site : have to import font !!
    */
    --cnvs-body-font: "Kalam", sans-serif;
    --cnvs-primary-font: "Kalam", sans-serif;
    --cnvs-secondary-font: "Playfair Display", serif;

    /*
    * Setup of Color for all web site.
    */
    --cnvs-themecolor: #ff8800;
    --cnvs-themecolor-rgb: 241,199,122;
    --cnvs-secondary-color: rgba(233,210,172, 0.82);
    --cnvs-body-bg: var(--cnvs-secondary-color);
    --cnvs-body-bg-rgba: 58,133,144;
}

.dropdown-menu .dropdown-item,
.dropdown-menu .list-group-item {
    padding: 0.75rem 1.25rem;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #EEE;
}

.dropdown-menu {
    border-radius: 4px;
    border-color: #EEE;
    overflow: hidden;
}
.dropdown-item:last-child,
.dropdown-menu .list-group-item:last-child {
    border-bottom: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--cnvs-secondary-color);
    color: var(--cnvs-themecolor);
}

.dropdown-menu .list-group-item:hover {
    background-color: rgb(var(--cnvs-themecolor-rgb), .1);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .list-group-item small {
    color: #BBB;
    font-size: 12px;
}