﻿@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/roboto-regular-webfont.woff2') format('woff2'), url('/fonts/roboto-regular-webfont.woff') format('woff');
}

@font-face {
    font-family: 'InterBold';
    font-style: normal;
    font-weight: bold;
    src: url('/fonts/Inter-Bold.woff2') format('woff2'), url('/fonts/Inter-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/Ubuntu-Regular.woff') format('woff'), url('/fonts/Ubuntu-Regular.tff') format('tff');
}

body {
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    background-color: var(--body-background-color);
    display: flex;
    flex-direction: column;
    font-family: Ubuntu;
    padding: 0;
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    width: 100%;
}


::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border: 6px solid transparent;
    border-radius: 20px;
    cursor: pointer;
}

.panel-primary > .panel-heading {
    background-color: var(--primary-background-color);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--quaternary-background-color);
    border-color: var(--quaternary-background-color-hover);
}

    .btn-primary:hover {
        background-color: var(--quaternary-background-color-hover);
        border-color: var(--quaternary-border-color-hover);
    }

    .btn-primary:active {
        background-color: var(--quaternary-background-color);
        border-color: var(--quaternary-background-color-hover);
    }

        .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover {
            background: var(--primary-background-color-hover);
        }

.list-group-item.active {
    background-color: var(--quaternary-background-color);
    border-color: var(--quaternary-background-color-hover);
}

    .list-group-item:hover, .list-group-item.active:hover, .list-group-item.active:focus {
        background-color: var(--quaternary-background-color-hover);
        border-color: var(--quaternary-background-color-hover);
    }

.list-group-item, .list-group-item a {
    color: black;
    cursor: pointer;
}

    .list-group-item.active, .list-group-item:hover, .list-group-item.active a, .list-group-item:hover a {
        color: white;
        cursor: pointer;
    }

.btn-secondary {
    background: var(--secondary-background-color);
}

    .btn-secondary:hover {
        background: var(--secondary-background-color-hover);
        color: white;
    }

.btn-success {
    background: var(--tertiary-background-color);
}

    .btn-success:hover {
        background: var(--tertiary-background-color-hover);
    }

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: none;
    outline-offset: 0;
}

nav.actu {
    padding: 0 0 0 0;
}

.container.actu {
    padding: 0 0 0 0;
}

.table.table-centered td {
    vertical-align: middle;
}

@media (max-width: 767px) {
    .container.actu {
        width: 100%;
    }
}

#contentPanel {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
}

.flex-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1 1 100%;
    gap: 12px;
    margin: 0 0 0 0;
    max-width: 100%;
    padding: 0 0 0 0;
}

    .flex-content.top {
        margin: 16px 0 0 0;
    }

    .flex-content.center {
        align-items: center;
    }

    .flex-content.end {
        justify-content: flex-end;
    }

.box {
    align-items: stretch;
    background-color: white;
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 8px 0 #000000, 0 6px 20px 0 #000000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    padding: 10px;
    max-height: 600px;
    overflow: hidden;
}

    .box.collapsible {
        flex-flow: row;
        justify-content: space-between;
    }

    .box.third {
        flex: 1 1 75%;
        box-sizing: border-box;
    }

    .box.full {
        flex: 1 1 100%;
        box-sizing: border-box;
    }

@media (max-width: 992px) {
    .box.half {
        flex: 1 1 100%;
        box-sizing: border-box;
    }
}

@media (min-width: 992px) {
    .box.half {
        flex: 1 1 calc(50% - 4px);
        box-sizing: border-box;
        max-width: calc(50% - 4px);
    }
}


.box > .title {
    align-items: center;
    color: var(--primary-background-color);
    display: flex;
    flex: 0 0 0;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 0 8px 0;
    max-height: 30px;
}

    .box > .title img, .box > .title svg {
        margin: 0 5px 0 10px;
    }

    .box > .title i {
        font-size: 20px;
        margin: 0 5px 0 10px;
    }

    .box > .title a {
        color: var(--quaternary-background-color);
        text-decoration: none;
    }

    .box > .title.split {
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }

        .box > .title.split > div.center {
            align-items: center;
            display: flex;
            flex-direction: row;
        }

    .box > .title svg {
        fill: var(--primary-background-color);
    }

.box > .column-content {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.box > .content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
}

    .box > .content.column {
        display: flex;
        flex-direction: column;
    }

    .box > .content.center {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .box > .content.space-evenly {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .box > .content.space-between {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .box > .content svg {
        fill: var(--primary-background-color)
    }

@media (max-width: 575px) {
    .child-container {
        margin: 0 auto;
        padding: 0 0 0 0;
        width: 100%;
    }
}

.actu-carousel-vertical {
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

    .actu-carousel-vertical .actu-carousel-control {
        color: grey;
        display: block;
        height: 25px;
        text-align: center;
        width: 100%;
    }

        .actu-carousel-vertical .actu-carousel-control:hover {
            color: var(--primary-background-color);
        }

    .actu-carousel-vertical .actu-carousel-viewport {
        height: calc(100% - 50px);
        overflow-x: hidden;
        overflow-y: hidden;
        scrollbar-gutter: stable;
        box-sizing: border-box;
        padding-right: 10px;
    }

        .actu-carousel-vertical .actu-carousel-viewport:hover {
            overflow-y: auto;
        }

    .actu-carousel-vertical .actu-carousel-card {
        background: var(--tertiary-background-color);
        border-radius: 15px;
        color: white;
        display: inline-block;
        height: 60px;
        list-style-image: none;
        list-style-type: none;
        margin: 0 10px 0 0;
        overflow: hidden;
        padding: 5px 5px 5px 5px;
        position: relative;
        white-space: normal;
        width: 100%;
    }

        .actu-carousel-vertical .actu-carousel-card.quaternary {
            background: var(--quaternary-background-color);
            color: white;
        }

    .actu-carousel-vertical .actu-carousel-card-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        text-align: center;
        position: relative;
    }

        .actu-carousel-vertical .actu-carousel-card-content a {
            color: white;
            text-decoration: none;
        }

            .actu-carousel-vertical .actu-carousel-card-content a:hover {
                text-decoration: underline;
            }

.actu-carousel {
    display: table;
    height: 100%;
    margin: 0 0 0 0;
    max-width: 100%;
    table-layout: fixed;
    width: 100%;
    box-sizing: border-box;
}

    .actu-carousel .actu-carousel-viewport {
        height: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        scrollbar-gutter: stable;
        box-sizing: border-box;
    }

@-moz-document url-prefix() {
    .actu-carousel .actu-carousel-viewport {
        padding-bottom: 10px;
    }
}

.actu-carousel .actu-carousel-viewport:hover {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scrollbar-gutter: stable;
}

.actu-carousel .actu-carousel-viewport::-webkit-scrollbar {
    background-color: white;
    height: 10px;
    width: 10px;
}

.actu-carousel .actu-carousel-viewport::-webkit-scrollbar-thumb {
    background-color: white;
    border: 6px solid transparent;
    border-radius: 20px;
    cursor: pointer;
}

.actu-carousel .actu-carousel-viewport::-webkit-scrollbar-track {
    background-color: white;
    border-radius: 20px;
}

.actu-carousel .actu-carousel-viewport:hover::-webkit-scrollbar-thumb {
    background-color: grey;
}

.actu-carousel .actu-carousel-viewport:hover::-webkit-scrollbar {
    background-color: lightgrey;
}

.actu-carousel .actu-carousel-viewport:hover::-webkit-scrollbar-track {
    background-color: lightgrey;
    border-radius: 20px;
}

.actu-carousel .actu-carousel-control {
    color: grey;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 25px;
}

    .actu-carousel .actu-carousel-control:hover {
        color: var(--primary-background-color);
    }

.actu-carousel .actu-carousel-shelf {
    display: inline-block;
    height: 100%;
    margin: 0 0 0 0;
    overflow: hidden;
    padding: 0 0 0 0;
    position: relative;
    white-space: nowrap;
}

.actu-carousel .actu-carousel-card {
    background: var(--quaternary-background-color);
    border-radius: 15px;
    color: white;
    display: inline-block;
    height: 80px;
    list-style-image: none;
    list-style-type: none;
    margin: 0 10px 0 0;
    max-height: 80px;
    max-width: 150px;
    overflow: hidden;
    padding: 5px 5px 5px 5px;
    position: relative;
    position: relative;
    top: calc(50% - 40px);
    white-space: normal;
    width: 150px;
}

    .actu-carousel .actu-carousel-card.professor {
        background: var(--primary-background-color)
    }

    .actu-carousel .actu-carousel-card.dashboard {
        background: var(--secondary-background-color);
    }

        .actu-carousel .actu-carousel-card.dashboard.full {
            max-width: 100%;
            width: 100%;
        }

.actu-carousel .actu-carousel-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
    position: relative;
}

    .actu-carousel .actu-carousel-card-content a {
        color: white;
        font-weight: bold;
        margin: auto;
        text-decoration: none;
    }

        .actu-carousel .actu-carousel-card-content a:hover {
            text-decoration: underline;
        }

    .actu-carousel .actu-carousel-card-content svg {
        fill: white;
        left: 10px;
        position: absolute;
        top: 10px;
    }

#footerPanel {
    align-content: space-evenly;
    display: flex;
    flex-direction: row;
    padding: 40px 10px 40px 10px;
}

    #footerPanel > .footer-left {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: flex-start;
    }

        #footerPanel > .footer-left > p {
            color: #969696;
            margin: 0 0 0 0;
        }

    #footerPanel > .footer-middle {
        display: flex;
        flex-direction: row;
        flex-grow: 2;
    }

    #footerPanel > .footer-right {
        align-content: space-evenly;
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: end;
    }

        #footerPanel > .footer-right > .flex-item {
            color: var(--primary-background-color);
            flex-grow: 1;
            font-weight: bold;
            padding: 5px;
            text-align: right;
        }

    #footerPanel svg {
        fill: var(--primary-background-color);
    }

#addKeyDashboardSelect {
    padding: 10px 30px 10px 20px;
}

#addKeyModalBody {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px 40px 20px 40px;
    text-align: center;
}

    #addKeyModalBody > * {
        font-size: 18px;
        margin: 0 0 20px 0;
    }

.main-nav {
    height: 100px;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 0 0 0 0;
}

    .main-nav.bottom {
        margin: 0 0 20px 0;
    }

    .main-nav svg {
        fill: var(--primary-background-color);
    }

        .main-nav svg:hover {
            fill: var(--primary-background-color-hover);
        }

    .main-nav > ul > li.open > a {
        background: var(--drop-down-menu-background-color);
        color: white;
    }

    .main-nav ul ul.dropdown-menu {
        background: var(--drop-down-menu-background-color);
        border-radius: 0;
        font-family: Ubuntu;
        margin: 0 0 0 0;
    }

        .main-nav ul ul.dropdown-menu li a {
            color: white;
            display: table-cell;
            font-size: 16px;
            font-weight: bold;
            height: 100%;
            letter-spacing: 0.1em;
            padding: 10px;
            position: relative;
            width: 100%;
            z-index: 0;
        }

        .main-nav ul ul.dropdown-menu li:hover {
            background: var(--drop-down-menu-background-color-hover);
        }

    .main-nav ul.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
        background: transparent;
    }

    .main-nav > .title {
        align-items: center;
        color: var(--primary-background-color);
        display: flex;
        flex-direction: row;
        flex: 1 1 auto;
        font-size: 20px;
        font-weight: bold;
        padding: 0 0 0 16px;
    }

        .main-nav > .title > span {
            left: -12px;
            position: relative;
        }

        .main-nav > .title > a {
            text-decoration: none;
        }

        .main-nav > .title > p {
            margin: 0 0 0 0;
        }



@media only screen and (min-width: 768px) {
    .main-nav > .right-panel {
        display: flex;
        gap: 16px;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .main-nav > .right-panel {
        display: flex;
        gap: 8px;
        align-items: center;
    }
}

.main-nav .home {
    align-items: center;
    color: var(--primary-background-color);
    display: flex;
    flex-direction: row;
    font-size: 18px;
    flex: 1 1 auto;
    height: 100%;
    text-decoration: none;
}


    .main-nav .home a {
        color: var(--primary-background-color);
        margin-left: 5px;
        text-decoration: none;
    }

        .main-nav .home a:hover {
            color: var(--primary-background-color-hover);
            margin-left: 5px;
            text-decoration: none;
        }

.main-nav .custom {
    align-items: center;
    color: var(--primary-background-color);
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    font-size: 18px;
    height: 100%;
    justify-content: center;
    text-decoration: none;
}

.main-nav ul.menu {
    height: 100px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

    .main-nav ul.menu > li {
        height: 100px;
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
    }

        .main-nav ul.menu > li > a {
            align-items: center;
            color: var(--secondary-drop-down-menu-color);
            display: flex;
            flex-direction: row;
            font-size: 18px;
            height: 100px;
            justify-content: center;
            margin: 0 0 0 0;
            padding: 0 20px 0 20px;
            text-decoration: none;
        }

        .main-nav ul.menu > li.open > a {
            background: var(--drop-down-menu-background-color);
            color: white;
        }

            .main-nav ul.menu > li.open > a > .menu-svg {
                background-image: url(/images/actu/menu-hover.svg);
                height: 22px;
                width: 19px;
            }

        .main-nav ul.menu > li > a:hover {
            background: var(--drop-down-menu-background-color-hover);
            color: white;
        }

        .main-nav ul.menu > li > a > .menu-svg {
            background-image: url(/images/actu/menu.svg);
            height: 22px;
            width: 19px;
        }

        .main-nav ul.menu > li > a:hover > .menu-svg {
            background-image: url(/images/actu/menu-hover.svg);
            height: 22px;
            width: 19px;
        }

.main-nav .profile {
    height: 100px;
    margin: 0 0 0 0;
    margin-left: auto;
    padding: 0 0 0 0;
}

    .main-nav .profile > li {
        height: 100px;
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
    }

        .main-nav .profile > li > a {
            align-items: center;
            color: #969696;
            display: flex;
            flex-direction: row;
            font-size: 18px;
            height: 100px;
            justify-content: center;
            margin: 0 0 0 0;
            padding: 0 20px 0 20px;
            text-decoration: none;
        }

            .main-nav .profile > li > a:hover {
                background: var(--primary-background-color);
                color: white;
            }

.main-nav .greeting-div {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}

.subnav {
    align-items: center;
    background: var(--nav-background-color);
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0 0 0 0;
    padding: 8px 8px 8px 12px;
    flex-wrap: wrap;
    justify-content: start;
}

    .subnav.placeholder {
        background: transparent;
        color: transparent;
        height: 8px;
        margin: 0 0 0 0;
        min-height: 8px;
    }

@media only screen and (min-width: 768px) {
    .subnav.space-evenly {
        justify-content: space-evenly;
    }
}

@media only screen and (max-width: 768px) {
    .subnav.space-evenly {
        justify-content: start;
    }
}

.subnav.half {
    justify-content: start;
}

@media only screen and (min-width: 768px) {
    .subnav.half > * {
        flex: 1 1 48%;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 768px) {
    .subnav.half > * {
        flex: 1 1 100%;
        box-sizing: border-box;
    }
}

.subnav > p, .subnav > span {
    color: var(--quaternary-background-color);
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    margin: 0 0 0 0;
}

.subnav a {
    align-items: center;
    color: var(--quaternary-background-color);
    display: flex;
    flex-direction: row;
    text-decoration: none;
}

    .subnav a.disabled {
        opacity: 0.4;
    }

.subnav > svg {
    cursor: pointer;
}

    .subnav > svg rect {
        fill: var(--body-background-color);
    }

        .subnav > svg rect:hover {
            fill: var(--primary-background-color);
            fill-opacity: 0.1;
        }

    .subnav > svg.active rect {
        fill: var(--septenary-background-color);
        fill-opacity: 0.3;
    }

        .subnav > svg.active rect:hover {
            fill: var(--septenary-background-color);
            fill-opacity: 0.6;
        }

    .subnav > svg path {
        fill: var(--primary-background-color);
        pointer-events: none;
    }

#contentPanel > nav input, #contentPanel > nav select, nav.actu-nav input, nav.actu-nav select {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: bold;
    padding: 6px;
    text-indent: 10px;
}

    #contentPanel > nav input.indent, #contentPanel > nav select.indent, nav.actu-nav input.indent, nav.actu-nav select.indent {
        text-indent: 30px;
    }

    #contentPanel > nav input:focus, #contentPanel > nav select:focus, nav.actu-nav input:focus, nav select:focus {
        outline: none;
    }

#productSearch {
    background: var(--body-background-color) url('/images/actu/search.svg') 8px center no-repeat !important;
    text-indent: 30px;
}

    #productSearch:focus {
        outline: none;
    }

    #productSearch::placeholder, #productSearch:-ms-input-placeholder, #productSearch:-moz-placeholder, #productSearch::-moz-placeholder {
        color: #DADADA;
        font-size: 20px;
        opacity: 1;
        padding-left: 30px;
    }


.actu-btn {
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 16px;
    padding: 8px 18px 8px 18px;
}

a.btn-primary.actu-btn {
    color: white;
    padding: 8px 18px 8px 18px;
}


a.btn-default.actu-btn {
    background: white;
    color: var(--primary-background-color);
    padding: 8px 18px 8px 18px;
}

a.btn-default:hover.actu-btn {
    background: var(--body-background-color);
    color: var(--primary-background-color);
    padding: 8px 18px 8px 18px;
}

.actu-btn:disabled {
    pointer-events: none;
}

.highlight {
    color: var(--drop-down-menu-background-color);
    font-size: 16px;
    text-align: center;
}

.modal-header {
    border: none;
}

.modal-title {
    color: var(--primary-background-color);
}

.btn-default.focus, .btn-default:focus, .btn-default:hover, .btn-default.focus, .btn-default:focus, .btn-default:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
    background-color: var(--primary-background-color-fade);
    outline: none;
}

.btn-default.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
    background-color: var(--primary-background-color-fade);
    outline: none;
}

.vertical-center {
    -ms-transform: translateY(-50%);
    margin: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .main-content {
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .main-content {
        align-items: center;
        box-sizing: border-box;
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        width: 100%;
    }
}

#contentPanel .breadcrumb {
    background: transparent;
    color: var(--primary-background-color);
    font-size: 18px;
    margin: 0 0 0 0;
    padding: 8px 0 0 0;
    width: 100%;
}

    #contentPanel .breadcrumb a {
        color: var(--primary-background-color);
        text-decoration: none;
    }

        #contentPanel .breadcrumb a:hover {
            text-decoration: underline;
        }

.actu-dropdown {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: var(--body-background-color) url('data:image/svg+xml;utf8,<svg width="14" height="6" viewBox="0 0 14 6" xmlns="http://www.w3.org/2000/svg"><g><path d="M7 6L0 0H14L7 6Z" /></g></svg>') 98% center no-repeat;
    border: none;
    border-radius: 20px;
    color: var(--primary-background-color);
    cursor: pointer;
    font-family: Ubuntu;
    font-weight: bold;
    padding: 4px;
    width: 100%;
}

    .actu-dropdown:focus-within {
        background: var(--body-background-color) url('data:image/svg+xml;utf8,<svg width="14" height="6" viewBox="0 0 14 6" xmlns="http://www.w3.org/2000/svg"><g><path d="m7 0-7 6h14z" /></g></svg>') 98% center no-repeat;
    }

    .actu-dropdown:focus {
        outline: none;
    }

    .actu-dropdown.large {
        padding: 20px;
    }

.close {
    opacity: .8;
}

.actu-primary {
    color: var(--primary-background-color);
    font-size: 16px;
    text-align: center;
    width: 80%;
}

#eurekaPageListGroup > div.list-group-item:hover {
    background: var(--primary-background-color);
    border-color: white;
}

#eurekaPageListGroup > div.list-group-item.active {
    background: var(--primary-background-color);
    border-color: white;
}

#eurekaPageListGroup > div.list-group-item[data-type] > button {
    background: white;
    color: black;
    width: 100%;
}

    #eurekaPageListGroup > div.list-group-item[data-type] > button:hover {
        background: var(--primary-background-color);
        color: white;
        width: 100%;
    }

#eurekaPageListGroup > div.list-group-item > ul.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

    #eurekaPageListGroup > div.list-group-item > ul.dropdown-menu > li > a {
        background-color: white;
        color: black;
    }

        #eurekaPageListGroup > div.list-group-item > ul.dropdown-menu > li > a:hover {
            background-color: var(--primary-background-color);
            color: white;
        }


.actu-title {
    color: var(--primary-background-color);
    font-family: InterBold;
    font-size: 20px;
    font-weight: bold;
}

.btn-embed {
    direction: rtl;
    font-weight: bold;
    position: absolute;
    right: 10px;
    text-decoration: none;
    top: 25%;
}

.modal p > strong, .modal h1, .modal h2, .modal h3, .modal h4 {
    color: var(--primary-background-color);
}

.add-key-flex {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
}

#addKeyTextBox {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #F6F7FB url('/images/actu/key.svg') 8px center no-repeat !important;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: bold;
    font-weight: normal;
    padding: 6px;
    text-indent: 30px;
    width: 100%;
}

    #addKeyTextBox:focus {
        outline: none;
    }

    #addKeyTextBox::placeholder, #addKeyTextBox:-ms-input-placeholder, #addKeyTextBox:-moz-placeholder, #addKeyTextBox::-moz-placeholder {
        color: #DADADA;
        font-size: 20px;
        opacity: 1;
        padding-left: 30px;
    }

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/* The switch - the box around the slider */

.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

    /* Hide default HTML checkbox */

    .switch input {
        height: 0;
        opacity: 0;
        width: 0;
    }

/* The slider */

.slider {
    -webkit-transition: .4s;
    background-color: var(--quaternary-background-color);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

    .slider:before {
        -webkit-transition: .4s;
        background-color: white;
        bottom: 4px;
        content: "";
        height: 26px;
        left: 4px;
        position: absolute;
        transition: .4s;
        width: 26px;
    }

input:checked + .slider {
    background-color: var(--quaternary-background-color);
}

input + .slider.success {
    background-color: var(--tertiary-background-color);
}

input + .slider.danger {
    background-color: var(--septenary-background-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--quaternary-background-color);
}

input:checked + .slider:before {
    -ms-transform: translateX(26px);
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.glyphicon.spinning {
    -webkit-animation: spin2 1s infinite linear;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}
