@charset "UTF-8";

/******************************************************************
*                                                                 *
*             	              COLORS                              *
*                                                                 *
******************************************************************/
/****************************
*      	   Variables        *
*****************************/
/**** Variables globales *****/
html {
    width: 100%;
    height: 100%;
    --monge-blue: #003E66;
    --monge-red: #C61624;
    --monge-white: #FFF;

    --body-bg: var(--monge-blue);

    --footer-bg: var(--monge-blue);
    --footer-text: #fff;
    --footer-link-color: #fff;
}

/******************************************************************
*                                                                 *
*             	              Global                              *
*                                                                 *
******************************************************************/

body {
    background-color: var(--body-bg);
    width: 100%;
    min-height: 100%;
    position: relative;
    font-family: "Raleway", "Lucida sans", verdana, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: normal;
    text-rendering: optimizeLegibility;
    color: #000;
    background-position: 30%;
}

.container {
    background-color: #FFF;
}
p {
    line-height: 1.3;
    margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", Montserrat, Lucida Sans Unicode, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 10px;
}

a {
    transition: all 150ms ease-in;
}

a:visited {
    transition: all 150ms ease-in;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    line-height: 28px;
}

form {
    margin-bottom: 0;
}

input, select, .radio, .form-control {
    border-radius: 0;
}

.asterisque {
    font-size: 1.4rem;
    font-family: Raleway, "Lucida sans", verdana, sans-serif;
    color: var(--monge-blue);
}

.form-group-head .asterisque {
    line-height: 0;
}

.checked .form-group-head {
    display: flex;
    align-items: baseline;
}

div.checked {
    position: relative;
    margin-top: 10px;
}

.checked-inline {
    display: flex;
    align-items: baseline;
}

.fa {
    vertical-align: middle;
}

h1, h2 {
    color: #000;
}

.form-icon {
    color: #01abe1;
}

.btn {
    font-family: 'Raleway-Bold', sans-serif;
    display: flex;
    height: 49px;
    padding: 18px 35px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--monge-red);
    color: #FFF;
}
.btn-valider-modif,
.connexion .btn {
    background-color: var(--monge-red);
}

.btn:hover, .btn:focus, .btn:active {
    transition: all 150ms ease-in;
    background-color: var(--monge-white);
    color: var(--monge-red);
    border: 1px solid var(--monge-red);
}

/************************************************
*                                               *
*             	     Flex                       *
*                                               *
*************************************************/

.centered {
    display: flex;
    justify-content: center;
}

/************************************************
*                                               *
*             	 A REFAIRE                      *
*                                               *
*************************************************/

.vertical {
    padding: 30px;
}

.vertical h1 {
    margin: -30px -30px 25px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    padding: 20px;
    text-transform: none;
}

.ralewayBold {
    font-family: Raleway-Bold, sans-serif;
}

.ralewayBold label {
    display: inline;
}

.strong, .bold {
    font-weight: bold;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 82em) {
    .container-fluid {
        max-width: 100%;
    }
    .vertical {
        padding: 0px;
    }
    .padding-responsive {
        padding: 30px;
    }
}


@media screen and (max-width: 63.9375em) {
    #tarteaucitronRoot #tarteaucitronAlertBig button {
        display: block;
        margin: 10px auto;
    }
}


/****************************
*        	  Footer         *
*****************************/

.footer {
    background-color: var(--footer-bg);
    font-style: italic;
    color: var(--footer-text);
}
.footer a {
    color: var(--footer-link-color);
}
.footer a:hover,
.footer a:focus {
    text-decoration: underline;
    font-weight: bold;
}

.footer .footer-top {
    padding: 2rem 0 2rem 1em;
    border-bottom: 1px solid var(--footer-text);
    margin-bottom: 16px;
}

.footer .footer-bottom-link {
    text-decoration: underline;
}

.footer-top ul {
    display: flex;
    flex-direction: column;
    padding: 0 9px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
@media only screen and (min-width: 40em) {
    .footer-top ul {
        flex-direction: row;
    }
    .footer-top ul li + li {
        margin-left: 10px;
        position: relative;
    }
    .footer-top ul li + li:before {
        content: "•";
        position: absolute;
        left: -12px;
    }
}


a.footer-bottom-link, a.footer-bottom-link:focus, a.footer-bottom-link:hover {
    color: var(--footer-link-color);
}

.has-error {
    color: #f34141;
}
@media only screen and (max-width: 40em) {
    .footer {
    }
    .footer .footer-top{
        display: flex;
        padding: 1rem;
        align-items: start;
        gap: 1rem;
    }
    .footer-top ul{
        padding: 0;
        gap: 0;
        flex-direction: column;
        align-items: start;
    }
}
