* {
    --background: #E6E9F4;
    --content-margin: 1em;
}

/* a passer dans header.css */
#header {
    background-color: #FFF;
}

    #header #header_top {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 5px 10px 5px 40px;
        display: flex;
    }

        #header #header_top #logo {
            width: 150px;
            height: 60px;
            float: left;
            margin: auto;
            padding-right: 20px;
            border-right: 1px solid #707173 !important;
        }

            #header #header_top #logo img {
                height: 100%;
                background-image: linear-gradient(to top, var(--main-module-color), var(--main-module-color-opacity));
            }

        #header #header_top #application_name {
            width: 170px;
            height: 60px;
            display: flex;
            margin: auto 10px;
        }

            #header #header_top #application_name div {
                margin: auto;
                height: 100%;
                display: flex;
                max-width: 170px;
            }

                #header #header_top #application_name div #header_logo_collectivity {
                    max-height: 100%;
                    width: 170px;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                #header #header_top #application_name div p {
                    font-family: "Overpass Bold";
                    color: #707173;
                    font-size: 19px;
                    line-height: 23px;
                    text-transform: uppercase;
                    margin: auto;
                    text-align: center;
                }

        #header #header_top #module {
            width: calc(100% - 150px - 190px - 300px);
            height: 100%;
            float: left;
            padding: 4px 5px 2px 5px;
        }

            #header #header_top #module ul {
                height: 100%;
            }

            #header #header_top #module li {
                display: inline-block;
                margin: 0 5px;
                width: 97px;
                text-align: center;
                padding-top: 5px;
                float: left;
            }

                #header #header_top #module li p {
                    margin-top: 5px !important;
                    color: #AFB0B5;
                    font-size: 14.5px;
                    line-height: 15px;
                    font-family: "Overpass Regular";
                    width: 100%;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    margin-bottom: 0;
                }

                #header #header_top #module li img {
                    background-color: #d4d4d4;
                }

                #header #header_top #module li.active img {
                    background-color: var(--main-module-color) !important;
                }

                #header #header_top #module li.out_domain.active img {
                    background-color: #4DC3D8;
                }

                #header #header_top #module li.active p {
                    font-family: "Overpass Bold";
                }

                #header #header_top #module li.out_domain.active p {
                    color: #4DC3D8;
                }

                #header #header_top #module li.active p {
                    color: var(--main-module-color) !important;
                }

        #header #header_top #parameter {
            width: 300px;
            height: 100%;
            float: right;
            box-sizing: content-box;
            display: flex;
            margin: auto;
        }

            #header #header_top #parameter div {
                position: relative;
                float: left;
                width: 100px;
                text-align: center;
                margin: auto;
            }

                #header #header_top #parameter div img {
                    width: 35px;
                }

                #header #header_top #parameter div p {
                    font-family: "Overpass Regular";
                    margin: 0;
                    color: #707173;
                    font-size: 14px;
                    line-height: 15px;
                }

/* Safari 4.0 - 8.0 */
@-webkit-keyframes display {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Standard syntax */
@keyframes display {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes menu {
    0% {
        left: -250px;
    }

    50% {
        left: -250px;
    }

    100% {
        left: 0px;
    }
}

/* Standard syntax */
@keyframes menu {
    0% {
        left: -250px;
    }

    50% {
        left: -250px;
    }

    100% {
        left: 0px;
    }
}

/* Déplacer dans un fichier content.css */
#content {
    position: relative;
    width: 100%;
    background-color: #FFF;
    display: grid;
    grid-template-columns: fit-content(20%) 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "menu content";
}

    #content #menu {
        top: 0;
        background-color: var(--main-module-color);
        /*white-space: nowrap;*/
        grid-area: menu;
    }

@media only screen and (max-width:1400px) {
    #content #menu #in_menu {
        padding-left: 5px !important;
    }
}

#content #menu #in_menu {
    width: 100%;
    min-height: 100%;
    padding: 0 3rem;
}

    #content #menu #in_menu .logo {
        width: 100%;
        height: 100px;
    }

    #content #menu #in_menu .rubric {
        width: 100%;
        height: 100%;
        padding-top: 60px;
        display: flex;
        flex-direction: column;
    }

        #content #menu #in_menu .rubric h3 {
            font-family: "Overpass Extra Light";
            font-size: 25px;
            color: #FFF;
            margin-bottom: 35px;
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: break-word;
        }

            #content #menu #in_menu .rubric ul {
                list-style-type: none;
                border: none;
                background-color: transparent;
            }

            #content #menu #in_menu .rubric ul li {
                width: 100%;
                border: none;
            }

                #content #menu #in_menu .rubric ul li .k-link {
                    padding: 0;
                    white-space: initial;
                }

                #content #menu #in_menu .rubric ul li p {
                    padding: 10px 0px 0px 20px;
                    margin: 0px;
                    font-size: 13px;
                }

        #content #menu #in_menu .rubric li {
            margin: 10px 0;
        }

            #content #menu #in_menu .rubric li a {
                font-family: "Overpass Regular";
                font-size: 14px;
                color: #FFF;
                opacity: 0.5;
            }

                #content #menu #in_menu .rubric li.active a, #content #menu #in_menu .rubric li a:hover {
                    opacity: 1;
                }

            #content #menu #in_menu .rubric li.sub_menu {
                margin: 5px 20px;
                font-size: 12px;
                font-family: "Overpass Extra Light";
            }

        #content #menu #in_menu .rubric .k-state-active, #content #menu #in_menu .rubric .k-state-hover {
            background-color: transparent;
            opacity: 1 !important;
            color: #FFF !important;
        }

            #content #menu #in_menu .rubric .k-state-active span, #content #menu #in_menu .rubric .k-state-hover span {
                color: #FFF !important;
            }

#content #in_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    padding: 0;
    margin: 0;
    grid-area: content;
    height: auto;
    min-height: 0;
}

    #content #in_content .title_page {
        color: #707173;
        text-transform: uppercase;
        font-family: "Overpass Bold";
        font-size: 12px;
        margin-bottom: 15px;
    }

    #content #in_content #content_header {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 20px;
    }

    #content #in_content .info {
        float: left;
        width: calc(100% - 270px);
        font-family: "Overpass Extra Light";
        color: #707173;
        display: inline-block;
    }

        #content #in_content .info a {
            text-decoration: none;
            font-family: "Overpass Extra Light";
            color: #707173;
        }

        #content #in_content .info h1 {
            font-size: 40px;
            display: inline;
            margin-left: -3px;
        }

        #content #in_content .info h2 {
            font-size: 25px;
            display: inline;
        }

        #content #in_content .info h3 {
            font-size: 18px;
            display: inline;
        }

        #content #in_content .info h4 {
            font-size: 12px;
            display: inline;
        }

    #content #in_content .nav {
        float: right;
        width: 270px;
        height: 100%;
        text-align: right;
    }

        #content #in_content .nav a {
            margin-right: 10px;
        }

        #content #in_content .nav img {
            margin-top: 3px;
        }

    #content #in_content .grid {
        height: 100%;
    }

    #content #in_content #detail {
        position: relative;
        flex: 1 auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
    }

/* Déplacer dans un fichier footer.css */
#footer {
    bottom: 0px;
    padding: 2px 5px;
    display: flex;
    flex-direction: row;
    background-color: #707173;
}

#footer #footer_left {
    padding: 2px 10px;
    flex: 1 1 80%;
}

    #footer #footer_left #developed_by {
        margin-top: 5px;
        font-family: "Overpass Regular", "Arial", Sans-Serif;
        font-size: 12px;
        color: #fff;
    }

        #footer #footer_left #developed_by img {
            width: 100px;
            margin-left: 10px;
        }

#footer #footer_right {
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
}

        #footer #footer_right #help, #footer #footer_right #version {
            margin: auto;
            color: white;
            font-size: 12px;
            font-family: "Overpass Regular", "Arial", Sans-Serif;
        }

/* Déplacer dans un fichier loader.css */
#preloader {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fefefe;
    z-index: 2002;
}

    #preloader div {
        font-size: 72px;
        color: #707173;
        width: 72px;
        height: 72px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -36px 0 0 -36px;
    }

/* Déplacer dans un fichier notification.css */
.notification {
    width: 350px;
    font-family: "Overpass Bold";
    background-color: #FFF !important;
    border: 0px solid #707173;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px #707173;
}

    .notification table {
        width: 100%;
    }

        .notification table td:first-child {
            width: 75px;
            background-color: var(--main-module-color);
            border-top-right-radius: 35px;
            border-bottom-right-radius: 35px;
            border-bottom-left-radius: 5px;
            border-top-left-radius: 5px;
        }

            .notification table td:first-child .fa,
            .notification table td:first-child .fab,
            .notification table td:first-child .fal,
            .notification table td:first-child .far,
            .notification table td:first-child .fas {
                color: #FFF;
                font-size: 47px;
                margin-left: 15px;
            }

        .notification table td.message {
            padding: 27px 15px;
            color: #707173;
        }

        .notification table td.close {
            width: 15px;
            vertical-align: top;
            margin: 5px;
            opacity: 1;
            font-size: 16px;
        }

            .notification table td.close span {
                color: #707173;
            }


.form_action {
    position: relative;
    width: 100%;
    text-align: right;
    margin: 5px 0;
}

.title_sub {
    color: #707173;
    text-transform: uppercase;
    font-family: "Overpass Bold";
    font-size: 12px;
    margin: 0px;
    border-bottom: 1px solid var(--main-grid-border-color);
    overflow: hidden;
}

.action {
    font-family: "Overpass Black";
    color: var(--main-module-color) !important;
    text-transform: uppercase;
    margin-right: 25px !important;
}

    .action:hover, .action:focus {
        color: var(--main-module-color);
    }

    .action.k-state-disabled {
        color: var(--main-module-color);
        opacity: 0.5;
    }

    .action span.fa,
    .action span.fab,
    .action span.fal,
    .action span.far,
    .action span.fas {
        margin-right: 10px;
        font-size: 18px;
        float: left;
        color: var(--main-module-color);
    }


.fixed_value:after {
    content: ' *';
}

.fixed_value {
    color: #e74c3c;
}
