#page_cookies {
    font-family: 'Eina01-Regular', sans-serif;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.46;
    letter-spacing: normal;
    color: #384146;
}

#page_cookies h1 {
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 35px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.57;
    letter-spacing: -1.6px;
    color: #1a58aa;
    margin-top: 33px;
}

#page_cookies h2 {
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 20px;
    line-height: 19px;
    color: #000000;
}

#cook_ariane {
    margin-top: 27px;
    font-family: 'Eina01-SemiBold', sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #000000;
    display: block
}

#cook_ariane2 {
    margin-top: 27px;
    font-family: 'Eina01-SemiBold', sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #000000;
    display: none;
}

#cook_container {
    padding: 70px 50px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 22px;
}

.cook_container_container {
    margin: 0 27px;
}

/* .cook_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 149px;
    height: 34px;
    border-radius: 2px;
    border: #164094 solid 1px;
    background-color: white;
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 11px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.09;
    letter-spacing: normal;
    text-align: center;
    color: #164094;
    text-transform: uppercase;
    margin: 22px 0;
} */

.cook_box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 149px;
    height: 34px;
    border-radius: 2px;
    border: #164094 solid 1px;
    background-color: white;
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 11px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.09;
    letter-spacing: normal;
    text-align: center;
    color: #164094;
    text-transform: uppercase;
    margin: 22px 0;
}

/* .cook_button:hover {
    background-color: #164094;
    color: white;
    transition: background-color 666ms ease, color 666ms ease;
} */

.cook_box:hover {
    background-color: #164094;
    color: white;
    transition: background-color 666ms ease, color 666ms ease;
}

/* .cook_button a {
    text-decoration: none;
} */

.cook_box a {
    text-decoration: none;
    cursor: pointer;
}

/* .cook_button a:hover {
    color: white !important;
} */

.cook_box a:hover {
    color: white !important;
}

#page_cookies a {
    font-family: 'Eina01-SemiBold', sans-serif;
    font-weight: 600;
    color: #1a58aa;
}

#page_cookies span {
    font-family: 'Eina01-SemiBold', sans-serif;
}

#page_cookies hr {
    width: 100%;
    height: 1px;
    margin: 27px 0;
    color: #979797;
}






/* ======================================
	         	POPIN TEST 1
====================================== */

.cook_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.cook_overlay:target {
    visibility: visible;
    opacity: 1;
}

.cook_popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 77%;
    position: relative;
    transition: all 5s ease-in-out;
}

.cook_popup .cook_close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    text-decoration: none;
    color: black;
}

.cook_popup .close:hover {
    color: #164094;
}

.cook_popup .cook_content {
    max-height: 30%;
    overflow: auto;
}










/* ======================================
	         	POPIN TEST 2
====================================== */

.smart-popin {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    /* scrollbar will appear if the viewport is too tight to display all the popin content */
    opacity: 0;
    visibility: hidden;

    /* design */

    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.smart-popin:target {
    opacity: 1;
    visibility: visible;
}

.smart-popin .sp-table {
    display: table;
    height: 100%;
    width: 100%;
}

.smart-popin .sp-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    /* this space is important to let the box-shadow exceed around the popin - so it has to be at least equal to the shadow radius */
}

.smart-popin .sp-body {
    position: relative;
    /* to allow absolute positionning inside */
    z-index: 1;
    /* to ensure the popin body will be over the .sp-back layer */
    width: auto;
    /* by default the width of the wider element inside */
    min-width: 300px;
    /* standard width for xs smartphones (320px) minus 2*10px (.sp-cell margins) */
    margin: 0 auto;

    /* design */

    background-color: #ffffff;
    padding: 2em;
    -webkit-box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25);
    width: 66.66%;
    /* 66.66 looks good :-) */
    ;
}

.smart-popin .sp-body * {
    max-width: 100%;
    /* this is a security to prevents wide elements such as img to stretch the popin beyond the viewport width */
}

.smart-popin .sp-back {
    /* only used to get clicks out of the popin body */
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
}

.smart-popin .sp-close {
    position: absolute;
    top: 0;
    right: 0;

    width: 36px;
    height: 36px;

    text-align: center;
    line-height: 36px;
    font-size: 1.6em;
    color: #000000;
    font-weight: 900;
    text-decoration: none;
}









/* ======================================
	         	POPIN
====================================== */

#cook_popin h1,
.cook_text_center {
    text-align: center;
}

#cook_popin p b {
    display: inline-flex;
    align-items: center;
}

#cook_popin p b::before {
    font-size: 150%;
    content: "!";
    font-family: mm-icons !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 5px;
    color: #164094;
}

.cook_popin_flex {
    display: flex;
    flex-flow: row nowrap;
}

.cook_popin_flex_child {
    width: 50%;
}

#cook_popin .cook_radio_btn1,
#cook_popin .cook_radio_btn2 {
    display: inline-block;
    margin: 0 13px;
}

#cook_popin .cook_radio_btn1 input,
#cook_popin .cook_radio_btn2 input {
    margin: 0 8px;
    cursor: pointer;
}

#cook_popin .cook_radio_btn1 input,
#cook_popin .cook_radio_btn2 input {
    display: none;
}

#cook_popin .cook_radio_btn1 input + label:before,
#cook_popin .cook_radio_btn2 input + label:before {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-top: -3px;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 14px;
    height: 14px;
    cursor: pointer;
}

#cook_popin .cook_radio_btn1 input:hover + .label1:before,
#cook_popin .cook_radio_btn2 input:hover + .label2:before {
    background: lightgrey;
}

#cook_popin .cook_radio_btn1 input:checked + .label1:before,
#cook_popin .cook_radio_btn2 input:checked+ .label2:before {
    background: #1a58aa;
    border-color: #1a58aa;
    box-shadow: inset 0px 0px 0px 2px #fff;
}

.cook_popin_choix {
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
}










/* ======================================
	         	TABLEAU
====================================== */

#page_cookies .cook_tableau {
    list-style: none;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding-left: 0;
}

#page_cookies .cook_tableau .cook_tableau_col {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

#page_cookies .cook_tableau .cook_tableau_col1 {
    background-color: #f2f5f9;
}

#page_cookies .cook_tableau .cook_tableau_col2 {
    background-color: white;
}

#page_cookies .cook_tableau .cook_tableau_col3 {
    background-color: white;
    margin-bottom: 10px;
}

#page_cookies .cook_tableau .cook_tableau_col .cook_services {
    flex-basis: 20%;
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 1px;
    color: #404040;
    padding: 12px 4px 12px 20px;
    margin: 0;
}

#page_cookies .cook_tableau .cook_tableau_col .cook_role {
    flex-basis: 60%;
    font-family: 'Eina01-Regular', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.69;
    letter-spacing: 1.1px;
    color: #404040;
    padding: 12px 4px 12px 20px;
    margin: 0;
}

#page_cookies .cook_tableau .cook_tableau_col .cook_conservation {
    flex-basis: 20%;
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 1px;
    color: #404040;
    padding: 12px 4px 12px 20px;
    margin: 0;
}

#page_cookies .cook_tableau .cook_tableau_col .cook_services.cook_col,
#page_cookies .cook_tableau .cook_tableau_col .cook_role.cook_col,
#page_cookies .cook_tableau .cook_tableau_col .cook_conservation.cook_col {
    font-family: 'FuturaPT-Demi', sans-serif;
    font-size: 14px;
    letter-spacing: normal;
    background-color: #f2f5f9;
}

#page_cookies .cook_tableau .cook_tableau_col .cook_role.cook_col {
    margin: 0 10px;
}

#page_cookies .cook_tableau .cook_tableau_col .cook_role.cook_col,
#page_cookies .cook_tableau .cook_tableau_col .cook_conservation.cook_col {
    padding-left: 15px;
}







/* ======================================
	         	RWD
====================================== */

@media screen and (max-width: 768px) {
    #page_cookies h2 {
        padding: 33px 12px 0 12px;
    }

    #page_cookies p {
        padding: 0 12px;
    }

    #cook_container {
        padding: 0 0 25px 0;
    }

    #cook_ariane {
        display: none;
    }

    #cook_ariane2 {
        display: block;
    }

    .cook_button {
        margin: 22px 12px;
    }

    .cook_popin_flex {
        display: flex;
        flex-flow: column nowrap;
    }

    .cook_popin_flex_child {
        width: 100%;
    }

    #cook_popin_radiochoix {
        text-align: center;
    }

    #page_cookies .cook_tableau .cook_tableau_col .cook_services {
        flex-basis: 20%;
        font-size: 10px;
        letter-spacing: 0.7px;
        padding: 12px 4px 12px 20px;
        margin: 0;
    }

    #page_cookies .cook_tableau .cook_tableau_col .cook_role {
        flex-basis: 60%;
        font-size: 12px;
        line-height: 1.17;
        letter-spacing: 0.9px;
        padding: 12px 4px 12px 20px;
        margin: 0;
    }

    #page_cookies .cook_tableau .cook_tableau_col .cook_conservation {
        flex-basis: 20%;
        font-size: 10px;
        letter-spacing: 0.7px;
        padding: 12px 4px 12px 20px;
        margin: 0;
    }
}
