@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto-regular-webfont.woff2') format('woff2'), url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'InterBold';
    src: url('fontsInter-Bold.woff2') format('woff2'), url('fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Regular.woff') format('woff'), url('fonts/Ubuntu-Regular.tff') format('tff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: var(--body-background-color);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    padding: 0;
    display: flex;
    font-family: Ubuntu;
    flex-direction: column;
    width: 100%;
}


::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 20px;
    border: 6px solid transparent;
    cursor: pointer;
}

.panel-primary > .panel-heading {
    color: var(--primary-accent-color);
    background-color: var(--primary-background-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-background-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 {
    width: 100%;
    margin: 0 auto;
}

.flex-content {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
    flex-wrap: wrap;
    padding: 0 0 0 0;
    gap: 12px;
    max-width: 100%;
    margin: 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 {
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
    align-items: stretch;
    background-color: white;
    padding: 10px;
    border-radius: 14px;
    border: none;
    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);
}

    .box > .title {
        max-height: 30px;
        display: flex;
        flex: 0 0 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 8px 0;
        color: var(--primary-background-color);
    }

        .box > .title img, .box > .title svg {
            margin: 0 5px 0 10px;
        }

        .box > .title i {
            margin: 0 5px 0 10px;
            font-size: 20px;
        }

        .box > .title a {
            text-decoration: none;
            color: var(--quaternary-background-color);
        }

        .box > .title.split {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 8px;
        }

            .box > .title.split > div.center {
                display: flex;
                flex-direction: row;
                align-items: center;
            }

        .box > .title svg {
            fill: var(--primary-background-color);
        }

    .box > .column-content {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        height: 0;
    }

    .box > .content {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        height: 100%;
        flex: 1 1 auto;
    }

        .box > .content.column {
            display: flex;
            flex-direction: column;
        }

        .box > .content.center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .box > .content.space-evenly {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
        }

        .box > .content.space-between {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        .box > .content svg {
            fill: var(--primary-background-color)
        }

@media (max-width: 575px) {
    .child-container {
        padding: 0 0 0 0;
        margin: 0 auto;
        width: 100%;
    }
}

.actu-carousel-vertical {
    align-items: center;
    width: 100%;
    height: 100%;
}

    .actu-carousel-vertical .actu-carousel-control {
        width: 100%;
        height: 25px;
        text-align: center;
        color: grey;
        display: block;
    }

        .actu-carousel-vertical .actu-carousel-control:hover {
            color: var(--primary-background-color);
        }

    .actu-carousel-vertical .actu-carousel-viewport {
        height: calc(100% - 40px);
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

        .actu-carousel-vertical .actu-carousel-viewport:hover {
            width: 100%;
            overflow-x: hidden;
            overflow-y: scroll;
        }

        .actu-carousel-vertical .actu-carousel-viewport .actu-carousel-shelf {
            width: calc(100% - 15px);
            position: relative;
            padding: 0 0 0 0;
            margin: 0 0 0 0;
        }

        .actu-carousel-vertical .actu-carousel-viewport:hover .actu-carousel-shelf {
            width: calc(100% - 5px);
            position: relative;
            padding: 0 0 0 0;
            margin: 0 0 0 0;
        }

    .actu-carousel-vertical .actu-carousel-card {
        width: 100%;
        height: 60px;
        overflow: hidden;
        margin: 0 10px 0 0;
        position: relative;
        display: inline-block;
        background: var(--tertiary-background-color);
        color: white;
        list-style-image: none;
        list-style-type: none;
        white-space: normal;
        border-radius: 15px;
        padding: 5px 5px 5px 5px;
    }

    .actu-carousel-vertical .actu-carousel-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

        .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;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 0 0 0;
}

    .actu-carousel .actu-carousel-viewport {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

        .actu-carousel .actu-carousel-viewport:hover {
            width: 100%;
            overflow-x: auto !important;
            overflow-y: hidden;
        }

    .actu-carousel .actu-carousel-control {
        width: 25px;
        height: 100%;
        vertical-align: middle;
        color: grey;
        display: table-cell;
    }

        .actu-carousel .actu-carousel-control:hover {
            color: var(--primary-background-color);
        }

    .actu-carousel .actu-carousel-shelf {
        position: relative;
        display: inline-block;
        white-space: nowrap;
        margin: 0 0 0 0;
        overflow: hidden;
        padding: 0 0 0 0;
        height: 100%;
    }

    .actu-carousel .actu-carousel-card {
        width: 150px;
        max-width: 150px;
        height: 80px;
        max-height: 80px;
        overflow: hidden;
        margin: 0 10px 0 0;
        position: relative;
        display: inline-block;
        background: var(--quaternary-background-color);
        color: white;
        list-style-image: none;
        list-style-type: none;
        white-space: normal;
        border-radius: 15px;
        padding: 5px 5px 5px 5px;
        position: relative;
        top: calc(50% - 40px);
    }

    .actu-carousel .actu-carousel-card-content {
        display: flex;
        flex-direction: column;
        /*        align-items: center;
        justify-content: center;*/
        height: 100%;
        text-align: center;
        overflow-y: auto;
        overflow-x: hidden;
    }

        .actu-carousel .actu-carousel-card-content a {
            font-weight: bold;
            color: white;
            text-decoration: none;
            margin: auto;
        }

            .actu-carousel .actu-carousel-card-content a:hover {
                text-decoration: underline;
            }

        .actu-carousel .actu-carousel-card-content svg {
            position: absolute;
            fill: white;
            left: 10px;
            top: 10px;
        }

#footerPanel {
    padding: 40px 10px 40px 10px;
    display: flex;
    flex-direction: row;
    align-content: space-evenly;
}

    #footerPanel > .footer-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-grow: 1;
    }

        #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 {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-content: space-evenly;
        flex-grow: 1;
    }

        #footerPanel > .footer-right > .flex-item {
            padding: 5px;
            color: var(--primary-background-color);
            font-weight: bold;
            flex-grow: 1;
            text-align: right;
        }

    #footerPanel svg {
        fill: var(--primary-background-color);
    }

#addKeyDashboardSelect {
    padding: 10px 30px 10px 20px;
}

#addKeyModalBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px 20px 40px;
    text-align: center;
}

    #addKeyModalBody > * {
        font-size: 18px;
        margin: 0 0 20px 0;
    }

.main-nav {
    display: flex;
    flex-direction: row;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    align-items: center;
    background: white;
    height: 100px;
    width: 100%;
    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);
        margin: 0 0 0 0;
        border-radius: 0;
        font-family: Ubuntu;
    }

        .main-nav ul ul.dropdown-menu li a {
            position: relative;
            z-index: 0;
            padding: 10px;
            height: 100%;
            color: white;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 0.1em;
            display: table-cell;
            width: 100%;
        }

        .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 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color: var(--primary-background-color);
        font-size: 20px;
        font-weight: bold;
        padding: 0 0 0 16px;
    }

        .main-nav > .title > span {
            position: relative;
            left: -12px;
        }

        .main-nav > .title > a {
            text-decoration: none;
        }

        .main-nav > .title > p {
            margin: 0 0 0 0;
        }

    .main-nav > .home {
        display: flex;
        flex-direction: row;
        align-items: center;
        color: var(--primary-background-color);
        font-size: 18px;
        text-decoration: none;
        margin: 0 0 0 24px;
        height: 100%;
    }


        .main-nav > .home a {
            text-decoration: none;
            color: var(--primary-background-color);
            margin-left: 5px;
        }

            .main-nav > .home a:hover {
                text-decoration: none;
                color: var(--primary-background-color-hover);
                margin-left: 5px;
            }

    .main-nav > .custom {
        display: flex;
        flex: 1 1 auto;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        color: var(--primary-background-color);
        font-size: 18px;
        text-decoration: none;
        margin: 0 0 0 24px;
        height: 100%;
    }

        .main-nav > .custom > * {
            margin: 0 0 0 24px;
        }

    .main-nav > ul.menu {
        height: 100px;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
    }

        .main-nav > ul.menu > li {
            list-style-type: none;
            list-style-position: outside;
            list-style-image: none;
            height: 100px;
        }

            .main-nav > ul.menu > li > a {
                height: 100px;
                color: var(--secondary-drop-down-menu-color);
                font-size: 18px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0 0 0 0;
                padding: 0 20px 0 20px;
                text-decoration: none;
            }

            .main-nav > ul.menu > li.open > a {
                color: white;
                background: var(--drop-down-menu-background-color);
            }

                .main-nav > ul.menu > li.open > a > .menu-svg {
                    background-image: url(/images/actu/menu-hover.svg);
                    width: 19px;
                    height: 22px;
                }

            .main-nav > ul.menu > li > a:hover {
                color: white;
                background: var(--drop-down-menu-background-color-hover);
            }

            .main-nav > ul.menu > li > a > .menu-svg {
                background-image: url(/images/actu/menu.svg);
                width: 19px;
                height: 22px;
            }

            .main-nav > ul.menu > li > a:hover > .menu-svg {
                background-image: url(/images/actu/menu-hover.svg);
                width: 19px;
                height: 22px;
            }

    .main-nav > .profile {
        margin-left: auto;
        height: 100px;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
    }

        .main-nav > .profile > li {
            list-style-type: none;
            list-style-position: outside;
            list-style-image: none;
            height: 100px;
        }

            .main-nav > .profile > li > a {
                height: 100px;
                color: #969696;
                font-size: 18px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0 0 0 0;
                padding: 0 20px 0 20px;
                text-decoration: none;
            }

                .main-nav > .profile > li > a:hover {
                    color: white;
                    background: var(--primary-background-color);
                }

    .main-nav > .greeting-div {
        display: inline-block;
        margin: 0 12px 0 24px;
    }

.subnav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    background: var(--nav-background-color);
    padding: 8px 8px 8px 12px;
    margin: 0 0 0 0;
    gap: 8px;
}

    .subnav.placeholder {
        color: transparent;
        background: transparent;
        margin: 0 0 0 0;
        height: 8px;
        min-height: 8px;
    }

    .subnav.space-evenly {
        justify-content: space-evenly;
    }

        .subnav.space-evenly > * {
            flex: 1 1 auto;
        }

    .subnav > p, .subnav > span {
        margin: 0 0 0 0;
        font-size: 18px;
        font-weight: bold;
        line-height: 27px;
        color: var(--quaternary-background-color)
    }

    .subnav a {
        text-decoration: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        color: var(--quaternary-background-color);
    }

        .subnav a.disabled {
            opacity: 0.4;
        }

    .subnav > svg {
        cursor: pointer;
    }

        .subnav > svg rect {
            fill: var(--body-background-color);
        }

            .subnav > svg rect:hover {
                fill-opacity: 0.1;
                fill: var(--primary-background-color);
            }

        .subnav > svg.active rect {
            fill-opacity: 0.3;
            fill: var(--septenary-background-color);
        }

            .subnav > svg.active rect:hover {
                fill-opacity: 0.6;
                fill: var(--septenary-background-color);
            }

        .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 {
    flex: 1 1 0;
    padding: 6px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 20px;
    font-weight: normal;
    text-indent: 30px;
    background: var(--body-background-color);
}

    #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('search.svg') 8px center no-repeat !important;
    text-indent: 30px;
    flex: 1 1 0;
    padding: 6px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 20px;
    font-weight: normal;
    text-indent: 30px;
    background: var(--body-background-color);

}

    #productSearch:focus {
        outline: none;
    }

    #productSearch::placeholder, #productSearch:-ms-input-placeholder, #productSearch:-moz-placeholder, #productSearch::-moz-placeholder {
        font-size: 20px;
        color: #DADADA;
        opacity: 1;
        padding-left: 30px;
    }


.actu-btn {
    border-radius: 40px;
    font-size: 16px;
    padding: 8px 18px 8px 18px;
    border: none;
    color: white;
}

a.btn-primary.actu-btn {
    color: white;
    padding: 8px 18px 8px 18px;
}


a.btn-default.actu-btn {
    color: var(--primary-background-color);
    background: white;
    padding: 8px 18px 8px 18px;
}

a.btn-default:hover.actu-btn {
    color: var(--primary-background-color);
    background: var(--body-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;
    padding: 15px 15px 0 15px;
}

.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 {
    outline: none;
    background-color: var(--primary-background-color-fade);
}

.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 {
    outline: none;
    background-color: var(--primary-background-color-fade);
}

.vertical-center {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .main-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        box-sizing: border-box;
        gap: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .main-content {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
}

#contentPanel .breadcrumb {
    width: 100%;
    padding: 8px 0 0 0;
    background: transparent;
    font-size: 18px;
    color: var(--primary-background-color);
    margin: 0 0 0 0;
}

    #contentPanel .breadcrumb a {
        color: var(--primary-background-color);
        text-decoration: none;
    }

        #contentPanel .breadcrumb a:hover {
            text-decoration: underline;
        }

.actu-dropdown {
    color: var(--primary-background-color);
    padding: 4px;
    border-radius: 20px;
    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;
    font-weight: bold;
    width: 100%;
    border: none;
    font-family: Ubuntu;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

    .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 {
    text-align: center;
    width: 80%;
    color: var(--primary-background-color);
    font-size: 16px;
}

#eurekaPageListGroup > div.list-group-item.active {
    background: #008080;
    border-color: white;
}

#eurekaPageListGroup > div.list-group-item[data-type] > button {
    width: 100%;
}

#eurekaPageListGroup > div.list-group-item > ul.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.actu-title {
    color: var(--primary-background-color);
    font-family: InterBold;
    font-size: 20px;
    font-weight: bold;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.btn-embed {
    position: absolute;
    top: 25%;
    right: 20px;
    font-weight: bold;
    text-decoration: none;
}

.modal p > strong, .modal h1, .modal h2, .modal h3, .modal h4 {
    color: var(--primary-background-color);
}

.add-key-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

#addKeyTextBox {
    width: 100%;
    padding: 6px;
    border-radius: 40px;
    background: #F6F7FB url('key.svg') 8px center no-repeat !important;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 20px;
    font-weight: normal;
    text-indent: 30px;
}

    #addKeyTextBox:focus {
        outline: none;
    }

    #addKeyTextBox::placeholder, #addKeyTextBox:-ms-input-placeholder, #addKeyTextBox:-moz-placeholder, #addKeyTextBox::-moz-placeholder {
        font-size: 20px;
        color: #DADADA;
        opacity: 1;
        padding-left: 30px;
    }
