﻿@screen-md-max: 1200px;
@screen-sm-max: 992px;
@screen-xs-max: 767px;
@screen-xxs-max: 480px;

@gris: #646464;
@grisintermediaire: #C1C1C1;
@orange: #FF732F;

@headerBgColor: @orange;
@headerFontColor: #000000;
@vignetteHeaderBgColor: #646464;
@vignetteHeaderFontColor: #ffffff;
@vignetteBgColor: #eeeeee;
@vignetteFontColor: #000000;
@footerBgColor: #646464;
@footerFontColor: #ffffff;
@cookieColor: @orange;

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Roboto-Regular.ttf) format("truetype");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------------------------------------------------------------------------------- */

.border-radius(@radius) {
    -webkit-border-radius: @radius;
    border-radius: @radius;
}

.transition(@transition) {
    -webkit-transition: @transition;
    -moz-transition: @transition;
    -o-transition: @transition;
    transition: @transition;
}

.box-shadow(@shadow) {
    -webkit-box-shadow: @shadow;
    -moz-box-shadow: @shadow;
    box-shadow: @shadow;
}

/* ------------------------------------------------------------------------------------------------------------------------------------- */

body {
    overflow-x: hidden;
    min-height: 680px;
}

#logo-browser {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;

    > div {
        text-align: center;

        > a {
            text-decoration: none;
            color: inherit;

            > div {
                font-size: 20px;
                margin-bottom: 16px;
            }
        }
    }
}

.container {
    display: inline-block;
    margin: 15px;
    width: 100% !important;
}

.breadcrumb {
    background-color: transparent !important;
    padding-right: 60px !important;

    > li {
        > a {
            color: @gris;
            font-size: 12px;
            text-decoration: none;
        }
    }
}

.PrintBtn {
    border: 1px solid @gris;
    cursor: pointer;
    height: 35px;
    margin-top: 3px;
    padding-top: 6px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px;
    z-index: 2;
    .border-radius(50%);

    > svg {
        height: 22px;
        width: 22px;

        > g {
            > rect {
                fill: @gris;
                stroke: @gris;
            }

            > path {
                fill: @gris;
                stroke: @gris;
            }

            > polyline {
                stroke: @gris;
            }
        }
    }

    &:hover {
        border-color: @headerBgColor;

        > svg {
            > g {
                > rect {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > path {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > polyline {
                    stroke: @headerBgColor;
                }
            }
        }
    }
}

.PDFBtn {
    border: 1px solid @gris;
    cursor: pointer;
    height: 35px;
    margin-top: 3px;
    padding-top: 6px;
    position: absolute;
    right: 40px;
    text-align: center;
    top: 0;
    width: 35px;
    .border-radius(50%);

    > svg {
        margin-left: -1px;
        margin-top: -4px;
        height: 28px;
        width: 28px;

        > g {
            > polyline {
                fill: @gris;
                stroke: @gris;
            }

            > line {
                fill: @gris;
                stroke: @gris;
            }

            > path {
                fill: @gris;
                stroke: @gris;
            }

            > rect {
                fill: @gris;
                stroke: @gris;
            }
        }
    }

    &:hover {
        border-color: @headerBgColor;

        > svg {
            > g {
                > polyline {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > line {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > path {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > rect {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }
            }
        }
    }
}

.ScrollBtn {
    border: 1px solid @gris;
    bottom: 15px;
    cursor: pointer;
    display: none;
    height: 35px;
    padding-top: 5px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    .border-radius(5px);

    > i {
        color: @gris;
    }

    &:hover {
        background-color: @vignetteHeaderBgColor;
        border-color: white;

        > i {
            color: white;
        }
    }
}

.header {
    display: flex;

    > div {
        padding: 5px;

        > div:first-of-type {
            padding: 0;

            > a {
                > img {
                    width: 176px;
                }
            }
        }

        > div:nth-of-type(n + 2) {
            padding: 10px;
        }

        > div:last-of-type {
            > div {
                > input {
                    border-right: 0;
                }

                > span {
                    > button {
                        border-radius: 0 4px 4px 0;
                    }
                }

                > div:last-of-type {
                    > ul {
                        > li {
                            > div.ui-state-active {
                                background-color: @gris;
                                border: 1px solid @gris;
                            }
                        }
                    }
                }
            }
        }
    }
}

.french-flag {
    background: #FFFFFF;
    height: 27px;
    width: 41px;
    .box-shadow(0 3px 5px #AAAAAA);

    &:before {
        background: #002395;
        content: "";
        height: 27px;
        position: absolute;
        width: calc(41px / 3);
    }

    &:after {
        background: #ED2939;
        content: "";
        height: 27px;
        margin-left: calc(41px / 3 * 2);
        position: absolute;
        width: calc(41px / 3);
    }
}

#bandeau-cookie {
    align-items: center;
    background-color: #333;
    bottom: 0px;
    color: #fff;
    display: flex;
    font-family: roboto;
    font-size: 15px;
    height: 65px;
    justify-content: center;
    left: 0px;
    letter-spacing: 0px;
    line-height: initial;
    opacity: 0;
    padding: 0 15px;
    position: fixed;
    right: 0px;
    z-index: 1000;
    .transition(all 600ms cubic-bezier(0.645, 0.045, 0.355, 1));

    > div {
        align-items: center;
        display: flex;
        justify-content: center;

        > div:first-of-type {
            > a {
                color: @cookieColor;
                font-weight: 600;
            }
        }

        > div:last-of-type {
            > button {
                background-color: #333;
                border: 1px solid @cookieColor;
                color: @cookieColor;
                font-weight: 500;
                font-size: 16px;
                height: 40px;
                transition-duration: 0.4s;
                width: 129px;

                &:hover {
                    background-color: @cookieColor;
                    border: 1px solid #fff;
                    color: #fff;
                }
            }
        }
    }
}

@media (max-width:1000px) {
    #bandeau-cookie {
        height: 110px;
    }
}

@media (max-width:768px) {
    #bandeau-cookie {
        height: 150px;

        > div > div:last-of-type > button {
            height: auto;
            width: auto;
        }
    }
}

@media (max-width :570px) {
    #bandeau-cookie {
        height: 180px;
    }
}

#MemberAccessModal {
    > div {
        position: fixed;
        right: 30px;

        > div {
            > div {
                font-weight: 500;
                font-family: inherit;
                line-height: 1.1;
                font-size: 30px;
                text-decoration: underline;
                padding-bottom: 0;
                border: 0;
            }

            > form {
                > div:first-of-type {
                    padding: 15px 15px 0 15px;

                    > div:last-of-type {
                        margin: 0;
                    }
                }

                > div:last-of-type {
                    border: 0;
                    text-align: left;
                }
            }
        }
    }
}

#modal_limit {
    text-align: center;
    padding: 0 !important;

    &::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

    > div {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
}

.gm-style {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
    font-size: 14px;
    line-height: 1.42857143 !important;
    color: #333 !important;
}

#Bar {
    border-color: transparent;
    margin: 0;
    min-height: 0;
    text-align: center;

    > div {
        > div:nth-of-type(2) {
            border: none;

            > ul {
                display: inline-block;
                float: none;
                margin-bottom: -6px;

                > li {
                    &.divider-vertical {
                        border-left: 1px solid #c1c1c1;
                        border-right: 1px solid white;
                        height: 16px;
                        margin: 8px 10px;
                    }

                    > a {
                        padding-bottom: 5px;
                        padding-top: 5px;
                    }
                }
            }

            &.in {
                padding-bottom: 10px;
            }
        }
    }
}

#FooterBar {
    border: 0;
    box-shadow: none;
}

.after-right::after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-left-color: transparent;
    border-left-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #CCCCCC;
    margin-top: 5px;
    margin-right: -10px;
}

.after-down::after {
    border-top-color: transparent !important;
    border-width: 5px 5px 0 5px !important;
    border-top-color: #CCCCCC !important;
    border-left-color: transparent !important;
    margin-top: 7px !important;
}

.back-down {
    background-image: -webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);
    background-image: -o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));
    background-image: linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
    background-repeat: repeat-x;
    -webkit-box-shadow: inset 0 3px 9px rgba(0,0,0,.075);
    box-shadow: inset 0 3px 9px rgba(0,0,0,.075);
    color: #555 !important;

    &:hover {
        background-image: -webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%) !important;
        background-image: -o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%) !important;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2)) !important;
        background-image: linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%) !important;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0) !important;
        background-repeat: repeat-x !important;
        -webkit-box-shadow: inset 0 3px 9px rgba(0,0,0,.075) !important;
        box-shadow: inset 0 3px 9px rgba(0,0,0,.075) !important;
        color: #555 !important;
    }
}

#Carousel {
    overflow-x: auto;

    > div {
        > img {
            width: 100%;
            max-height: 390px;
            margin-left: auto;
            margin-right: auto;
        }

        > div {
            > img {
                width: 100%;
                max-height: 390px;
                margin-left: auto;
                margin-right: auto;
            }
        }
    }
}

#DefSearch {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 16;

    > i {
        color: @headerBgColor;
        font-size: 20px;
        left: 14px;
        padding: 15px 12px;
        position: absolute;
        top: 0;
        z-index: 4;
    }

    > div:first-of-type {
        > input {
            font-size: 20px;
            height: 50px;
            padding-left: 40px;
            .border-radius(20px 0px 0px 20px);
        }

        > span {
            > button {
                font-size: 20px;
                height: 50px;
                background: @headerBgColor;
                border-color: @headerBgColor;
                color: @headerFontColor;
                text-shadow: 0 1px 0 @headerBgColor;
                .border-radius(0px 20px 20px 0px);
            }
        }
    }

    > div:last-of-type {
        > ul {
            > li {
                > div.ui-state-active {
                    background-color: @gris;
                    border: 1px solid @gris;
                }
            }
        }
    }
}

#CarouselRGAA {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 17;
    display: flex;
    justify-content: center;
}

#UsefullInformations {
    .border-radius(5px);
    .box-shadow(0 3px 5px #AAAAAA);

    > .UITitle {
        background-color: @gris;
        color: white;
        padding: 1px;
        text-align: center;
        /*&:first-of-type {
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }*/
    }

    > .UIContent {
        border: 1px solid @grisintermediaire;
        padding-left: 10px;

        &:last-of-type {
            /*border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;*/
            display: flex;
            justify-content: center;

            > div {
                > a {
                    > img {
                        width: 100%;
                    }
                }
            }

            > div:not(:last-of-type) {
                float: left;
            }
        }

        > .UIContentTitle {
            font-weight: bold;
        }

        > .UIContentContent {
            > a {
                color: @gris;
                text-decoration: none;

                &:hover {
                    color: @headerBgColor;
                }
            }
        }
    }

    > #UIMap {
        border: 1px solid @grisintermediaire;
    }
}

#UsefullBtn {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 60px;

    > div {
        background-color: @headerBgColor;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        cursor: pointer;
        margin-bottom: 10px;
        padding: 10px;
        position: relative;
        right: -100px;
        width: 140px;
        .box-shadow(0 3px 5px #AAAAAA);
        .transition(right 1s);

        &:hover {
            right: 0;
        }

        > div:first-of-type {
            float: left;
            padding-left: 2px;
            text-align: center;
            width: 20px;
        }

        > div:last-of-type {
            width: 135px;

            > a {
                color: @headerFontColor;
                text-decoration: none;
                padding-left: 10px;
            }
        }
    }
}

.footer {
    background: linear-gradient(to bottom,lighten(@footerBgColor, 10%) 0,@footerBgColor 100%);
    overflow: hidden;

    > nav {
        background: none;
        border: none;
        box-shadow: none;
        margin: 0;
        min-height: 0;
        text-align: center;

        > div {
            margin-bottom: -6px;

            > div {
                > ul {
                    float: none;

                    > li {
                        > a {
                            color: @footerFontColor !important;
                            font-weight: bold;
                            padding-bottom: 0;
                            padding-top: 10px;

                            &:hover, &:active {
                                color: darken(@footerFontColor, 10%) !important;
                            }
                        }
                    }
                }
            }
        }
    }

    > div {
        color: @footerFontColor;
        margin-bottom: 15px;
        margin-top: 15px;

        > a {
            color: @footerFontColor;
            text-decoration: none;

            &:hover, &:active {
                color: darken(@footerFontColor, 10%);
                text-decoration: none;
            }
        }
    }
}

#AbandonedConcessions {
    > div {
        > div:first-of-type {
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
            width: 50%;

            > div {
                > input {
                    font-size: 12px;
                    line-height: 1.5;
                }

                > span {
                    cursor: pointer;
                    pointer-events: auto;
                }
            }
        }

        > ul {
            margin-left: auto;
            margin-right: auto;
            display: table;

            > li {
                > a {
                    color: #636365;
                    padding: 6px 12px;
                }

                &.active {
                    > a {
                        background-color: #636365;
                        border-color: #636365;
                        color: white;
                    }
                }
            }
        }

        > table {
            border-collapse: inherit;
            margin: 0;
            padding: 0;
            table-layout: auto;
            width: 100%;

            > thead {
                > tr {
                    border: 1px solid #ddd;
                    padding: .35em;

                    > th {
                        cursor: pointer;
                        padding: .625em;

                        > span {
                            color: #333;
                            font-weight: bold;
                        }
                    }
                }
            }

            > tbody {
                > tr {
                    cursor: pointer;
                    border: 1px solid #ddd;
                    padding: .35em;

                    > td {
                        padding: .625em;
                        vertical-align: middle;

                        &:last-of-type {
                            > a {
                                text-decoration: none;
                                color: #333333;

                                > svg {
                                    > g {
                                        > path {
                                            fill: #333333 !important;
                                        }
                                    }
                                }
                            }

                            &:hover {
                                > a {
                                    color: @headerBgColor;

                                    > svg {
                                        > g {
                                            > path {
                                                fill: @headerBgColor !important;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#Burial {
    > div {
        > div:first-of-type {
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
            width: 50%;

            > div {
                > input {
                    font-size: 12px;
                    line-height: 1.5;
                }

                > span {
                    cursor: pointer;
                    pointer-events: auto;
                }
            }
        }

        > div {
            > ul {
                margin-left: auto;
                margin-right: auto;
                display: table;

                > li {
                    > a {
                        color: #636365;
                        padding: 6px 12px;
                    }

                    &.active {
                        > a {
                            background-color: #636365;
                            border-color: #636365;
                            color: white;
                        }
                    }
                }
            }

            > table {
                border-collapse: inherit;
                margin: 0;
                padding: 0;
                table-layout: auto;
                width: 100%;

                > thead {
                    > tr {
                        border: 1px solid #ddd;
                        padding: .35em;

                        > th {
                            cursor: pointer;
                            padding: .625em;

                            > span {
                                color: #333;
                                font-weight: bold;
                            }
                        }
                    }
                }

                > tbody {
                    > tr {
                        cursor: pointer;
                        border: 1px solid #ddd;
                        padding: .35em;

                        > td {
                            padding: .625em;
                            vertical-align: middle;

                            &:last-of-type {
                                > a {
                                    text-decoration: none;
                                    color: #333333;
                                }

                                &:hover {
                                    > a {
                                        color: @headerBgColor;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#BurialLoader, #PatrimonyLoader, #GuidedtourLoader, #CemeteriesplansLoader {
    position: absolute;
    z-index: 2;

    > .cssload-loader {
        height: 62px;
        left: 48%;
        perspective: 780px;
        position: absolute;
        top: 200px;
        width: 62px;
        .border-radius(50%);

        > .cssload-inner {
            position: absolute;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            .border-radius(50%);

            &:first-of-type {
                left: 0%;
                top: 0%;
                animation: cssload-rotate-one 1.15s linear infinite;
                -webkit-animation: cssload-rotate-one 1.15s linear infinite;
                -moz-animation: cssload-rotate-one 1.15s linear infinite;
                border-bottom: 3px solid black;
            }

            &:nth-of-type(2) {
                right: 0%;
                top: 0%;
                animation: cssload-rotate-two 1.15s linear infinite;
                -webkit-animation: cssload-rotate-two 1.15s linear infinite;
                -moz-animation: cssload-rotate-two 1.15s linear infinite;
                border-right: 3px solid black;
            }

            &:last-of-type {
                right: 0%;
                bottom: 0%;
                animation: cssload-rotate-three 1.15s linear infinite;
                -webkit-animation: cssload-rotate-three 1.15s linear infinite;
                -moz-animation: cssload-rotate-three 1.15s linear infinite;
                border-top: 3px solid black;
            }
        }
    }
}

#showmap {
    text-decoration: none;
    color: #333333;

    &:hover {
        color: @headerBgColor;
    }
}

.hovera {
    color: @headerBgColor !important;
}

#modal_sansplan {
    text-align: center;
    padding: 0 !important;

    &::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

    > div {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
}

#Cemeteries {
    > div {
        > h4 {
            border-left: 3px solid @gris;
            padding: 10px;

            &:hover {
                color: @vignetteHeaderBgColor;
            }
        }

        > p {
            margin: 0 0 30px;
        }

        &:last-of-type {
            > span {
                line-height: 1.75;
            }

            > a {
                display: inline-block;
                height: 100px;
                margin-bottom: 4px;
                padding-top: 10px;
                text-align: center;
                text-decoration: none;
                vertical-align: middle;
                width: 100px;
                .border-radius(5px);
                .box-shadow(0 3px 5px #AAAAAA);

                > img {
                    height: 55px;
                    margin-bottom: 5px;
                    width: 50%;
                }

                > span {
                    color: white;
                }

                &:first-of-type {
                    background-color: #687486;

                    &:hover {
                        background-color: darken(#687486, 10%)
                    }
                }

                &:last-of-type {
                    background-color: #906a90;

                    &:hover {
                        background-color: darken(#906a90, 10%)
                    }
                }
            }
        }
    }
}

#Contact {
    > h4 {
        border-left: 3px solid #646464;
        padding: 10px;
    }

    > div {
        > form {
            > div {
                > div {
                    > label {
                        font-weight: normal;
                    }
                }
            }

            > div:nth-of-type(2) {
                > div {
                    > div {
                        > textarea {
                            resize: vertical;
                        }
                    }

                    &:nth-last-of-type(2) {
                        > div {
                            color: @gris;
                            font-size: 10px;

                            > a {
                                text-decoration: none;
                                color: #333;

                                &:hover {
                                    color: @headerBgColor;
                                }
                            }

                            > div {
                                > label {
                                    line-height: 2.15;
                                }
                            }
                        }
                    }

                    &:last-of-type {
                        > div {
                            > button {
                                width: 100%;
                            }
                        }
                    }
                }
            }
        }
    }
}

#MailSent {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100px;
    justify-content: center;
    text-align: center;

    > a {
        color: @gris;

        &:hover {
            color: @headerBgColor;
            text-decoration: none;
        }
    }
}

#RGPDCard {
    color: @gris;
    font-size: 10px;
    font-style: italic;
    text-align: center;
}

#RGPDCard > div > a {
    text-decoration: none;
    color: @gris;

    &:hover {
        color: @orange;
    }
}

.PrintDBtn {
    border: 1px solid @gris;
    cursor: pointer;
    height: 35px;
    margin-top: 3px;
    padding-top: 6px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px;
    z-index: 2;
    .border-radius(50%);

    > svg {
        height: 22px;
        width: 22px;

        > g {
            > rect {
                fill: @gris;
                stroke: @gris;
            }

            > path {
                fill: @gris;
                stroke: @gris;
            }

            > polyline {
                stroke: @gris;
            }
        }
    }

    &:hover {
        border-color: @headerBgColor;

        > svg {
            > g {
                > rect {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > path {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > polyline {
                    stroke: @headerBgColor;
                }
            }
        }
    }
}

#RetourRecherche {
    border: 1px solid @gris;
    color: @gris;
    cursor: pointer;
    height: 35px;
    margin-top: 3px;
    padding-top: 6px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 35px;
    z-index: 2;
    .border-radius(50%);

    &:hover {
        border: 1px solid @headerBgColor;
        color: @headerBgColor;
    }
}

#Defunct {
    > div {
        padding: 0;

        > div:first-of-type {
            background: @vignetteHeaderBgColor;
            border-bottom: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            text-align: center;

            > h5 {
                margin: 0;
            }
        }

        > div:last-of-type {
            > form {
                > div {
                    > div {
                        > div {
                            > label {
                                margin-bottom: 0;
                                padding-top: 7px;
                                text-align: right;
                            }
                        }
                    }
                }

                > div:nth-of-type(4) {
                    > div {
                        > div {
                            > div {
                                cursor: pointer;
                                text-align: right;
                                -ms-user-select: none;
                                -moz-user-select: none;
                                -webkit-user-select: none;
                                user-select: none;

                                &:hover {
                                    color: @vignetteHeaderBgColor;
                                    text-decoration: underline;
                                }
                            }
                        }
                    }
                }

                > div:last-of-type {
                    > div:first-of-type {
                        > div {
                            align-items: center;
                            display: flex;
                            height: 34px;
                            margin: 0;

                            > div {
                                color: @vignetteHeaderBgColor;
                                cursor: pointer;
                                -ms-user-select: none;
                                -moz-user-select: none;
                                -webkit-user-select: none;
                                user-select: none;

                                &:hover {
                                    text-decoration: underline;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.ui-autocomplete {
    > li {
        > div.ui-state-active {
            background-color: @gris;
            border: 1px solid @gris;
        }
    }
}

#DefunctResult {
    > div {
        > div:first-of-type {
            background: @vignetteHeaderBgColor;
            border-bottom: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            text-align: center;

            > h5 {
                margin: 0;
            }
        }

        > div:nth-of-type(2) {
            > div {
                > div {
                    > div:first-of-type {
                        > label {
                            width: 100%;

                            > input {
                                margin: 0;
                                width: 100%;
                            }
                        }
                    }

                    > div:nth-of-type(2) {
                        > table {
                            width: 100%;

                            > thead {
                                display: none;
                            }

                            > tbody {
                                > tr {
                                    > td {
                                        cursor: pointer;

                                        > p {
                                            &:first-of-type {
                                                margin: 0;
                                                text-decoration: underline;

                                                > .viewlink:hover {
                                                    color: @headerBgColor;
                                                    text-decoration: underline;
                                                }
                                            }

                                            &:last-of-type {
                                                color: @gris;
                                                font-size: 10px;
                                            }
                                        }

                                        &:hover {
                                            > p {
                                                color: @vignetteHeaderBgColor;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                    > div:last-of-type {
                        text-align: center;

                        > ul {
                            > li {
                                > a {
                                    color: #636365;
                                    font-size: 10px;
                                }

                                &.active {
                                    > a {
                                        background-color: #636365;
                                        border-color: #636365;
                                        color: white;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        > div:last-of-type {
            background: @vignetteHeaderBgColor;
            border-top: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            cursor: pointer;
            text-align: center;

            > h5 {
                margin: 0 0 4px 0;
            }

            &:hover {
                & when (@headerBgColor = #ffffff) {
                    color: #000000;
                }

                & when (@headerBgColor = #000000) {
                    color: #ffffff;
                }

                color: @headerBgColor;
            }
        }
    }
}

#DRMap {
    > img:first-of-type {
        width: 100%;
    }
}

#DefunctSheet {
    > div:first-of-type {
        > div:first-of-type {
            > div {
                margin: 0 0 15px 0;

                > h5 {
                    font-size: large;
                    text-align: center;
                }

                > img {
                    cursor: zoom-in;
                }

                > span {
                    color: #960201;

                    > a {
                        color: inherit;
                        text-decoration: none;
                    }
                }

                > p {
                    font-size: small;
                }

                > ul {
                    list-style-type: none;
                    padding: 0;

                    > li {
                        cursor: pointer;

                        > p {
                            font-size: small;
                            margin: 0;

                            > a {
                                color: #333;
                                text-decoration: none;

                                &:hover {
                                    color: @headerBgColor;
                                }
                            }
                        }
                    }
                }
            }
        }

        > div:last-of-type {
            > table {
                margin-bottom: 0;
                margin-top: 35.4px;

                > tbody {
                    > tr {
                        > td:first-of-type {
                            padding-right: 5%;
                        }

                        > td {
                            border: none;
                            padding: 0;
                        }
                    }
                }
            }

            > div:first-of-type {
                > img {
                    max-width: 130px;
                }
            }
        }
    }

    > div:nth-of-type(2):not(#DefunctSheetMenu) {
        > img {
            cursor: zoom-in;
        }
    }
}

#DefunctSheetMenu {
    > #planzone {
        background-color: #DB8E2D;
        color: white;
        cursor: pointer;
        display: table;
        height: 130px;
        margin: 0 auto;
        margin-bottom: 6px;
        padding-top: 10px;
        text-align: center;
        width: 130px;
        .border-radius(5px);
        .box-shadow(0 3px 5px #AAAAAA);

        > img {
            height: auto;
            margin-bottom: 4px;
            width: 88%;
        }

        &:hover {
            background-color: darken(#DB8E2D, 5%);
        }
    }

    > #localisation {
        background-color: #687486;
        color: white;
        cursor: pointer;
        display: table;
        height: 130px;
        margin: 0 auto;
        margin-bottom: 6px;
        padding-top: 10px;
        text-align: center;
        width: 130px;
        .border-radius(5px);
        .box-shadow(0 3px 5px #AAAAAA);

        > i {
            margin-bottom: 10px;
            margin-top: 4.8px;
        }

        &:hover {
            background-color: darken(#687486, 5%);
        }
    }

    > #information {
        background-color: #85C2C2;
        color: white;
        cursor: pointer;
        display: table;
        height: 130px;
        margin: 0 auto;
        margin-bottom: 6px;
        padding-top: 10px;
        text-align: center;
        width: 130px;
        .border-radius(5px);
        .box-shadow(0 3px 5px #AAAAAA);

        &:hover {
            background-color: darken(#85C2C2, 5%);
        }
    }

    > #concession {
        background-color: #906A90;
        color: white;
        cursor: pointer;
        display: table;
        height: 130px;
        margin: 0 auto;
        margin-bottom: 6px;
        padding-top: 10px;
        text-align: center;
        width: 130px;
        .border-radius(5px);
        .box-shadow(0 3px 5px #AAAAAA);

        > i {
            margin-bottom: 10px;
            margin-top: 4.8px;
        }

        &:hover {
            background-color: darken(#906A90, 5%);
        }
    }
}

#DefunctSheetInfo {
    margin-top: 10px;

    > p {
        background-color: @vignetteHeaderBgColor;
        color: @vignetteHeaderFontColor;
        cursor: pointer;
        font-size: large;
        font-weight: bold;
        text-align: center;
        .border-radius(3px);
        .box-shadow(0 3px 5px #AAAAAA);
    }

    > div {
        display: none;

        &:first-of-type {
            > .photoconc {
                margin-bottom: 10px;
                text-align: center;

                > img {
                    width: 90%;
                }
            }
        }

        &:last-of-type {
        }
    }
}

#modal_without_posistion {
    text-align: center;
    padding: 0 !important;

    &::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

    > div {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
}

#ErrorPage {
    > article {
        > div {
            > p {
                font-size: 22px;
                padding: 128px 0px;
            }
        }
    }
}

#HomeBtn {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-evenly;

    > div {
        width: 100px;
        text-align: center;

        > a {
            & when (@headerFontColor = #ffffff) {
                color: #000000;
            }

            color: @headerFontColor;
            text-decoration: none;

            > div {
                background-color: @headerBgColor;
                background-image: linear-gradient(to bottom,lighten(@headerBgColor, 20%) 0,@headerBgColor 100%);
                cursor: pointer;
                display: table-cell;
                height: 60px;
                line-height: 60px;
                margin-bottom: 5px;
                width: 60px;
                .border-radius(50%);

                &:hover {
                    background-color: lighten(@headerBgColor, 5%);
                    background-image: linear-gradient(to bottom,lighten(@headerBgColor, 10%) 0,lighten(@headerBgColor, 5%) 100%);
                }

                > i {
                    color: @headerFontColor;
                }
            }
        }

        &:hover {
            > a {
                & when (@headerFontColor = #000000) {
                    color: #000000;
                }

                & when (@headerFontColor = #ffffff) {
                    color: #000000;
                }

                color: darken(@headerFontColor, 20%);

                > div {
                    background-color: lighten(@headerBgColor, 5%);
                    background-image: linear-gradient(to bottom,lighten(@headerBgColor, 10%) 0,lighten(@headerBgColor, 5%) 100%);

                    > i {
                        & when (@headerFontColor = #ffffff) {
                            color: #ffffff;
                        }

                        color: darken(@headerFontColor, 20%);
                    }
                }
            }
        }
    }
}

#HomeThumbs {
    > div {
        margin-bottom: 20px;

        > div {
            border-radius: 10px;

            &:hover {
                .box-shadow(0 3px 5px #AAAAAA);
            }

            > div:first-of-type {
                background-color: @vignetteHeaderBgColor;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                padding: 5px;
                text-align: center;

                > span {
                    color: @vignetteHeaderFontColor;
                    font-family: 'Roboto', Calibri;
                }
            }

            > div:nth-of-type(2) {
                > img {
                    width: 100%;
                }
            }

            > div:nth-of-type(3) {
                background-color: @vignetteBgColor;
                padding: 9px;

                & when (@vignetteBgColor = #ffffff) {
                    -webkit-box-shadow: inset 1px 0px 0px 0px #cccccc, inset -1px 0px 0px 0px #cccccc;
                    -moz-box-shadow: inset 1px 0px 0px 0px #cccccc, inset -1px 0px 0px 0px #cccccc;
                    box-shadow: inset 1px 0px 0px 0px #cccccc, inset -1px 0px 0px 0px #cccccc;
                }

                > p {
                    font-family: 'Roboto', Calibri;
                    line-height: 1.7;
                    text-align: center;

                    > a {
                        color: @vignetteFontColor;
                        text-decoration: none;

                        &:hover {
                            color: @headerBgColor;
                        }
                    }
                }
            }

            > div:last-of-type {
                background-color: @footerBgColor;
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
            }
        }

        &:nth-of-type(2) {
            > div {
                > div:nth-of-type(3) {
                    min-height: 200px;
                }
            }
        }
    }
}

.listactuNews {
    background: white;
    bottom: 115px;
    display: none;
    padding: 10px 15px;
    position: fixed;
    right: 38px;
    text-align: center;
    width: 200px;
    .border-radius(4px);

    > div {
        > a {
            color: black;
            text-decoration: none;

            &:hover {
                font-weight: bold;
            }
        }

        &:first-of-type {
            padding-bottom: 5px;
        }

        &:last-of-type {
            padding-top: 5px;
        }

        &:not(:last-of-type) {
            border-bottom: 1px solid #C1C1C1;
        }

        &:not(:first-of-type):not(:last-of-type) {
            padding-bottom: 5px;
            padding-top: 5px;
        }
    }

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 0;
        border: 11px solid transparent;
        border-top-color: white;
        border-bottom: 0;
        margin-left: -11px;
        margin-bottom: -11px;
    }
}

#actuNews {
    align-items: center;
    background-color: @headerBgColor;
    bottom: 30px;
    cursor: pointer;
    display: flex;
    height: 72px;
    justify-content: center;
    position: fixed;
    right: 100px;
    width: 72px;
    z-index: 1;
    .border-radius(50%);

    > img {
        width: 50px;
        z-index: 0;
    }

    > span {
        background-color: red;
        position: absolute;
        right: 0;
        top: 0;
    }
}

#DeadForFrance {
    > div {
        > div:first-of-type {
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
            width: 50%;

            > div {
                > input {
                    font-size: 12px;
                    line-height: 1.5;
                }

                > span {
                    cursor: pointer;
                    pointer-events: auto;
                }
            }
        }

        > ul {
            margin-left: auto;
            margin-right: auto;
            display: table;

            > li {
                > a {
                    color: #636365;
                    padding: 6px 12px;
                }

                &.active {
                    > a {
                        background-color: #636365;
                        border-color: #636365;
                        color: white;
                    }
                }
            }
        }

        > table {
            border-collapse: inherit;
            margin: 0;
            padding: 0;
            table-layout: auto;
            width: 100%;

            > thead {
                > tr {
                    border: 1px solid #ddd;
                    padding: .35em;

                    > th {
                        cursor: pointer;
                        padding: .625em;

                        > span {
                            color: #333;
                            font-weight: bold;
                        }
                    }
                }
            }

            > tbody {
                > tr {
                    cursor: pointer;
                    border: 1px solid #ddd;
                    padding: .35em;

                    > td {
                        padding: .625em;
                        vertical-align: middle;

                        &:last-of-type {
                            > a {
                                text-decoration: none;
                                color: #333333;
                            }

                            &:hover {
                                > a {
                                    color: @headerBgColor;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#DispersionsRegister,
#DispersionsRegisterIframe,
#BurialIframe,
#RechercheDefuntIframe {
    > div {
        > div:first-of-type {
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
            width: 50%;

            > div {
                > input {
                    font-size: 12px;
                    line-height: 1.5;
                }

                > span {
                    cursor: pointer;
                    pointer-events: auto;
                }
            }
        }

        > ul {
            margin-left: auto;
            margin-right: auto;
            display: table;

            > li {
                > a {
                    color: #636365;
                    padding: 6px 12px;
                }

                &.active {
                    > a {
                        background-color: #636365;
                        border-color: #636365;
                        color: white;
                    }
                }
            }
        }

        > table {
            border-collapse: inherit;
            margin: 0;
            padding: 0;
            table-layout: auto;
            width: 100%;

            > thead {
                > tr {
                    border: 1px solid #ddd;
                    padding: .35em;

                    > th {
                        cursor: pointer;
                        padding: .625em;

                        > span {
                            color: #333;
                            font-weight: bold;
                        }
                    }
                }
            }

            > tbody {
                > tr {
                    cursor: pointer;
                    border: 1px solid #ddd;
                    padding: .35em;

                    > td {
                        padding: .625em;
                        vertical-align: middle;

                        &:last-of-type {
                            > a {
                                text-decoration: none;
                                color: #333333;
                            }

                            &:hover {
                                > a {
                                    color: @headerBgColor;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#Historic {
    > div {
        > h4 {
            border-left: 3px solid #646464;
            padding: 10px;
        }
    }

    > div:last-of-type {
        > img {
            width: 100%;
        }
    }
}

#MatureConcessions {
    > div {
        > div:first-of-type {
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
            width: 50%;

            > div {
                > input {
                    font-size: 12px;
                    line-height: 1.5;
                }

                > span {
                    cursor: pointer;
                    pointer-events: auto;
                }
            }
        }

        > ul {
            margin-left: auto;
            margin-right: auto;
            display: table;

            > li {
                > a {
                    color: #636365;
                    padding: 6px 12px;
                }

                &.active {
                    > a {
                        background-color: #636365;
                        border-color: #636365;
                        color: white;
                    }
                }
            }
        }

        > table {
            border-collapse: inherit;
            margin: 0;
            padding: 0;
            table-layout: auto;
            width: 100%;

            > thead {
                > tr {
                    border: 1px solid #ddd;
                    padding: .35em;

                    > th {
                        cursor: pointer;
                        padding: .625em;

                        > span {
                            color: #333;
                            font-weight: bold;
                        }
                    }
                }
            }

            > tbody {
                > tr {
                    cursor: pointer;
                    border: 1px solid #ddd;
                    padding: .35em;

                    > td {
                        padding: .625em;
                        vertical-align: middle;

                        &:last-of-type {
                            > a {
                                text-decoration: none;
                                color: #333333;
                            }

                            &:hover {
                                > a {
                                    color: @headerBgColor;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#ExpiredCommonGround {
    > div {
        > div:first-of-type {
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
            width: 50%;

            > div {
                > input {
                    font-size: 12px;
                    line-height: 1.5;
                }

                > span {
                    cursor: pointer;
                    pointer-events: auto;
                }
            }
        }

        > ul {
            margin-left: auto;
            margin-right: auto;
            display: table;

            > li {
                > a {
                    color: #636365;
                    padding: 6px 12px;
                }

                &.active {
                    > a {
                        background-color: #636365;
                        border-color: #636365;
                        color: white;
                    }
                }
            }
        }

        > table {
            border-collapse: inherit;
            margin: 0;
            padding: 0;
            table-layout: auto;
            width: 100%;

            > thead {
                > tr {
                    border: 1px solid #ddd;
                    padding: .35em;

                    > th {
                        cursor: pointer;
                        padding: .625em;

                        > span {
                            color: #333;
                            font-weight: bold;
                        }
                    }
                }
            }

            > tbody {
                > tr {
                    cursor: pointer;
                    border: 1px solid #ddd;
                    padding: .35em;

                    > td {
                        padding: .625em;
                        vertical-align: middle;

                        &:last-of-type {
                            > a {
                                text-decoration: none;
                                color: #333333;
                            }

                            &:hover {
                                > a {
                                    color: @headerBgColor;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#Settlement {
    > div {
        > iframe {
            width: 100%;
        }
    }
}

#Tariffs {
    > div {
        > iframe {
            width: 100%;
        }

        > ul {
            > li {
                > a {
                    color: @gris;

                    &:hover {
                        color: @vignetteHeaderBgColor;
                    }
                }

                &.active {
                    > a {
                        color: @vignetteHeaderBgColor;
                    }
                }
            }
        }

        > div {
            border: 1px solid #DDDDDD;
            border-top: 0;

            > div {
                > div {
                    > table {
                        > thead {
                            > tr {
                                > th:first-of-type {
                                    width: 70%;
                                }

                                > th:last-of-type {
                                    width: 30%;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#News {
    > div {
        > div {
            > div {
                cursor: pointer;
                margin-bottom: 20px;
                overflow: hidden;
                transition: 0.3s;
                .border-radius(10px);
                .box-shadow(0 4px 8px 0 rgba(0,0,0,0.2));

                &:hover {
                    .box-shadow(0 8px 16px 0 rgba(0,0,0,0.2));

                    > div:last-of-type {
                        > span:last-of-type {
                            color: @orange;
                        }
                    }
                }

                > div:first-of-type {
                    background-color: @grisintermediaire;

                    > img.no-photo {
                        width: 100%;
                    }
                }

                > div:last-of-type {
                    padding: 16px;

                    > h4 {
                        color: @gris;
                    }

                    > span:last-of-type {
                        bottom: 25px;
                        position: absolute;
                        right: 25px;
                    }
                }
            }
        }

        > nav {
            text-align: center;

            > ul {
                > li {
                    > a {
                        color: #636365;
                        font-size: 10px;
                    }

                    &.active {
                        > a {
                            background-color: #636365;
                            border-color: #636365;
                            color: white;
                        }
                    }
                }
            }
        }
    }
}

#NewsCard {
    > div {
        padding-top: 10px;
        padding-bottom: 10px;
        .border-radius(10px);
        .box-shadow(0 4px 8px 0 rgba(0,0,0,0.2));

        > div:last-of-type {
            align-items: center;
            display: flex;
            text-align: center;

            > i {
                cursor: pointer;
                float: left;
                width: 10%;

                &:hover {
                    color: @headerBgColor;
                }
            }

            > img {
                float: left;
                margin-left: auto;
                margin-right: auto;
                max-height: 500px;
                width: auto;
                max-width: 50%;
                .border-radius(10px);
                .box-shadow(0 4px 8px 0 rgba(0,0,0,0.2));
            }

            > #pdfdocument {
                float: left;
                margin-left: auto;
                margin-right: auto;
                width: 50%;

                > svg > g > line,
                > svg > g > path,
                > svg > g > rect {
                    fill: #950000;
                    stroke: #950000;
                }

                > svg > g > polyline:not(:first-of-type) {
                    stroke: #950000;
                }
            }

            > p {
                padding-top: 10px;
            }
        }
    }
}

#Procedures {
    > div {
        > iframe {
            width: 100%;
        }

        > p:last-of-type {
            > a {
                color: @gris;

                &:hover {
                    color: @vignetteHeaderBgColor;
                    text-decoration: none;
                }
            }
        }
    }
}

#Operators {
    > div {
        > iframe {
            width: 100%;
        }

        > p:last-of-type {
            > a {
                color: @gris;

                &:hover {
                    color: @headerBgColor;
                    text-decoration: none;
                }
            }
        }
    }
}

#Sitemap {
    > div {
        > ul {
            list-style: square;

            > li {
                > a {
                    color: @gris;
                    font-weight: bold;
                }
            }

            > ul {
                list-style: square;

                > ul {
                    list-style: square;

                    > ul {
                        list-style: square;

                        > li {
                            > a {
                                color: @gris;

                                &:hover {
                                    color: @headerBgColor
                                }
                            }
                        }
                    }

                    > li {
                        > a {
                            color: @gris;

                            &:hover {
                                color: @headerBgColor
                            }
                        }
                    }
                }
            }
        }
    }
}

#Accessibilite {
    > div {
        > div {
            > p:not(:first-of-type) {
                display: grid;
                grid-gap: 5px;
                margin-bottom: 20px;

                a {
                    color: @gris;

                    &:hover {
                        color: @headerBgColor
                    }
                }
            }

            > ul {
                margin-bottom: 20px;

                > li {
                    > span {
                        position: relative;
                        left: 15px;

                        a {
                            color: @gris;

                            &:hover {
                                color: @headerBgColor
                            }
                        }
                    }
                }
            }
        }
    }
}

#Patrimony {
    > div {
        > div:first-of-type {
            background: @vignetteHeaderBgColor;
            border-bottom: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            text-align: center;

            > h5 {
                margin: 0;

                > i {
                    cursor: pointer;
                }
            }
        }

        > div:nth-of-type(2) {
            > div {
                > div {
                    padding-top: 15px;

                    > div:first-of-type {
                        > label {
                            width: 100%;

                            > input {
                                margin: 0;
                                width: 100%;
                            }
                        }
                    }

                    > div:nth-of-type(2) {
                        > table {
                            width: 100%;

                            > thead {
                                display: none;
                            }

                            > tbody {
                                > tr {
                                    > td {
                                        cursor: pointer;

                                        > div {
                                            > div:first-of-type {
                                                align-items: center;
                                                display: flex;
                                                float: left;
                                                height: 34px;
                                                justify-content: flex-start;
                                                width: 10%;

                                                > div {
                                                    background: @gris;
                                                    color: white;
                                                    height: 20px;
                                                    text-align: center;
                                                    width: 20px;
                                                    .border-radius(50%);
                                                }
                                            }

                                            > div:last-of-type {
                                                > p {
                                                    &:first-of-type {
                                                        margin: 0;
                                                        text-decoration: underline;
                                                    }

                                                    &:last-of-type {
                                                        color: @gris;
                                                        font-size: 10px;
                                                        margin-left: 25px;
                                                    }
                                                }
                                            }
                                        }

                                        &:hover {
                                            > div {
                                                > div:first-of-type {
                                                    > div {
                                                        background: @vignetteHeaderBgColor;
                                                        color: @vignetteHeaderFontColor;
                                                    }
                                                }

                                                > div:last-of-type {
                                                    > p {
                                                        color: @vignetteHeaderBgColor;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                    > div:last-of-type {
                        text-align: center;

                        > ul {
                            > li {
                                > a {
                                    color: #636365;
                                    font-size: 10px;
                                }

                                &.active {
                                    > a {
                                        background-color: #636365;
                                        border-color: #636365;
                                        color: white;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        > div:last-of-type {
            background: @vignetteHeaderBgColor;
            border-top: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            cursor: pointer;
            text-align: center;

            > h5 {
                margin: 0 0 4px 0;
            }

            &:hover {
                & when (@headerBgColor = #ffffff) {
                    color: #000000;
                }

                & when (@headerBgColor = #000000) {
                    color: #ffffff;
                }

                color: @headerBgColor;
            }
        }
    }
}

#Patrimony-hide {
    background: @headerBgColor;
    border-radius: 4px;
    color: #ffffff;
    display: none;
    padding: 10px 15px;
    margin: 0 15px;
    position: absolute;
    top: 100px;
    width: 40px;
    z-index: 2;

    > i {
        cursor: pointer;
    }
}

.gm-style-iw {
    border-radius: 4px !important;
    min-height: 121px;
    min-width: 280px;
    overflow: visible !important;
    padding: 10px 33px 10px 10px !important;

    > div {
        min-width: 250px;

        > div {
            max-height: inherit;
        }
    }

    > button {
        border: 1px solid #A5A5A5 !important;
        height: 26px !important;
        opacity: 1 !important;
        right: 4px !important;
        top: 4px !important;
        width: 26px !important;
        .border-radius(50%);

        &:hover {
            border-color: @headerBgColor !important;
        }

        > span {
            margin: 5px !important;
        }
    }
}

#PMap {
    > .iwcontent {
        padding: 8px;
        .border-radius(4px);
        .box-shadow(0 2px 7px 1px rgba(0,0,0,0.3));

        > div {
            > div {
                > h5 {
                    > i {
                        cursor: pointer;
                        float: right;
                    }
                }
            }
        }
    }
}

.iwcontent {
    max-height: inherit;
    max-width: 400px;
    width: 100%;

    > div {
        border: 0;
        box-shadow: none;
        margin-bottom: auto;

        > div:first-of-type {
            background: @vignetteHeaderBgColor;
            border: 0;
            color: @vignetteHeaderFontColor;

            > h5 {
                display: flow-root;
                height: 30.8px;
                margin: 0;

                > span {
                    cursor: pointer;
                    text-align: center;

                    &:not(.pull-right) {
                        cursor: default;
                        font-size: 10px;
                        padding-left: 20px;
                    }

                    &.pull-right:hover {
                        color: @headerBgColor;
                    }
                }

                > #Galleryi {
                    border: 1px solid #A5A5A5;
                    bottom: 33px;
                    color: #A5A5A5;
                    cursor: pointer;
                    height: 26px;
                    padding: 5px;
                    position: absolute;
                    right: 4.5px;
                    text-align: center;
                    width: 26px;
                    .border-radius(50%);

                    &:hover {
                        color: @headerBgColor;
                        border-color: @headerBgColor;
                    }
                }

                > #Patrimonyi {
                    border: 1px solid #A5A5A5;
                    bottom: 4px;
                    color: #A5A5A5;
                    cursor: pointer;
                    height: 26px;
                    padding: 5px;
                    position: absolute;
                    right: 4px;
                    text-align: center;
                    width: 26px;
                    .border-radius(50%);

                    &:hover {
                        color: @headerBgColor;
                        border-color: @headerBgColor;
                    }
                }

                > #Guidedtouri {
                    border: 1px solid #A5A5A5;
                    bottom: 4px;
                    color: #A5A5A5;
                    cursor: pointer;
                    height: 26px;
                    padding: 5px;
                    position: absolute;
                    right: 4px;
                    text-align: center;
                    width: 26px;
                    .border-radius(50%);

                    &:hover {
                        color: @headerBgColor;
                        border-color: @headerBgColor;
                    }
                }

                > #DefSheeti {
                    border: 1px solid #A5A5A5;
                    bottom: 62px;
                    color: #A5A5A5;
                    cursor: pointer;
                    height: 26px;
                    padding: 5px;
                    position: absolute;
                    right: 4.5px;
                    text-align: center;
                    width: 26px;
                    .border-radius(50%);

                    &:hover {
                        color: @headerBgColor;
                        border-color: @headerBgColor;
                    }
                }
            }

            > span {
                font-size: 10px;
                left: 46px;
                position: absolute;
                top: 39px;
            }
        }

        > div:last-of-type {
            padding-top: 11px;

            > img {
                cursor: pointer;
                float: left;
                margin-right: 10px;
                max-height: 150px;
                max-width: 150px;
                padding-top: 4px;
                .border-radius(5px);
            }
        }
    }
}

#Guidedtour {
    > div {
        > div:first-of-type {
            background: @vignetteHeaderBgColor;
            border-bottom: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            text-align: center;

            > h5 {
                margin: 0;

                > i {
                    cursor: pointer;
                }
            }
        }

        > div:nth-of-type(2) {
            > div {
                > select:nth-of-type(2) {
                    margin-top: 15px;
                }

                > div {
                    padding-top: 15px;

                    > div:not(:last-of-type) {
                        cursor: pointer;
                    }

                    > div:first-of-type {
                        align-items: center;
                        display: flex;
                        float: left;
                        height: 34px;
                        justify-content: flex-start;
                        width: 10%;

                        > div {
                            background: #646464;
                            color: white;
                            height: 20px;
                            text-align: center;
                            width: 20px;
                            .border-radius(50%);
                        }
                    }

                    > div:nth-of-type(2) {
                        > p:first-of-type {
                            margin: 0;
                            text-decoration: underline;
                        }

                        > p:last-of-type {
                            color: @gris;
                            font-size: 10px;
                            margin-left: 25px;
                        }
                    }

                    > p {
                        min-height: 60px;
                    }
                }
            }
        }

        > div:last-of-type {
            background: @vignetteHeaderBgColor;
            border-top: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            cursor: pointer;
            text-align: center;

            > h5 {
                margin: 0 0 4px 0;
            }

            &:hover {
                & when (@headerBgColor = #ffffff) {
                    color: #000000;
                }

                & when (@headerBgColor = #000000) {
                    color: #ffffff;
                }

                color: @headerBgColor;
            }
        }
    }
}

#Guidedtour-hide {
    background: @headerBgColor;
    border-radius: 4px;
    color: #ffffff;
    display: none;
    padding: 10px 15px;
    margin: 0 15px;
    position: absolute;
    top: 100px;
    width: 40px;
    z-index: 2;

    > i {
        cursor: pointer;
    }
}

.PrintGTBtn {
    border: 1px solid @gris;
    cursor: pointer;
    height: 35px;
    margin-top: 3px;
    padding-top: 6px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px;
    .border-radius(50%);

    > svg {
        height: 22px;
        width: 22px;

        > g {
            > rect {
                fill: @gris;
                stroke: @gris;
            }

            > path {
                fill: @gris;
                stroke: @gris;
            }

            > polyline {
                stroke: @gris;
            }
        }
    }

    &:hover {
        border-color: @headerBgColor;

        > svg {
            > g {
                > rect {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > path {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > polyline {
                    stroke: @headerBgColor;
                }
            }
        }
    }
}

#GuidedtourGallery {
    padding-right: 0 !important;
}

.PrintCBtn {
    border: 1px solid @gris;
    cursor: pointer;
    height: 35px;
    margin-top: 3px;
    padding-top: 6px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px;
    .border-radius(50%);

    > svg {
        height: 22px;
        width: 22px;

        > g {
            > rect {
                fill: @gris;
                stroke: @gris;
            }

            > path {
                fill: @gris;
                stroke: @gris;
            }

            > polyline {
                stroke: @gris;
            }
        }
    }

    &:hover {
        border-color: @headerBgColor;

        > svg {
            > g {
                > rect {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > path {
                    fill: @headerBgColor;
                    stroke: @headerBgColor;
                }

                > polyline {
                    stroke: @headerBgColor;
                }
            }
        }
    }
}

#Cemeteriesplans {
    > div {
        > div:first-of-type {
            background: @vignetteHeaderBgColor;
            border-bottom: 5px solid @gris;
            color: @vignetteHeaderFontColor;
            text-align: center;

            > h5 {
                font-size: 20px;
                margin: 0;
            }
        }

        > div:last-of-type {
            > div:not(:first-of-type) {
                margin-bottom: 0;
            }
        }
    }
}

#CPMap {
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;

    > div {
        > div.gm-style {
            > div:first-of-type {
                > div:first-of-type {
                    > div:nth-of-type(2) {
                        > div:first-of-type {
                            > img {
                                background-color: white;
                            }

                            > svg {
                                background-color: white;
                            }
                        }
                    }
                }

                > div:last-of-type {
                    > div {
                        > div:last-of-type {
                            > div:last-of-type {
                                > div {
                                    > div {
                                        > div {
                                            min-height: auto;

                                            > button {
                                                margin-top: 2px !important;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#CCMap {
    > div {
        > div {
            > div:nth-of-type(2) {
                > div:last-of-type {
                    > div {
                        > div:last-of-type {
                            > div:last-of-type {
                                > div {
                                    > div {
                                        > div {
                                            min-height: auto;

                                            > button {
                                                margin-top: 2px !important;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#modal_planv3, #modal_sans_plan, #modal_planv4_fond_jpg, #modal_provisoire {
    text-align: center;
    padding: 0 !important;

    &::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

    > div {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
}

#ReportInformation {
    > div {
        padding-right: 15px;
        padding-left: 15px;

        > h3 {
            > a {
                color: #333;
                cursor: pointer;
                font-size: 12px;
                text-decoration: none;

                &:hover {
                    color: @orange;
                }
            }
        }

        > div {
            > form {
                > div {
                    > label {
                        font-weight: normal;
                    }

                    > div {
                        > label {
                            font-weight: normal;
                        }
                    }
                }

                > div:nth-of-type(7) {
                    > div {
                        > textarea {
                            height: 100px;
                            resize: vertical;
                        }
                    }
                }

                > div:nth-of-type(9) {
                    > div {
                        > textarea {
                            height: 100px;
                            resize: vertical;
                        }
                    }
                }

                > div:nth-last-of-type(4) {
                    > div {
                        > textarea {
                            height: 100px;
                            resize: vertical;
                        }
                    }
                }

                > div:nth-last-of-type(3) {
                    > div {
                        color: @gris;
                        font-size: 10px;

                        > a {
                            text-decoration: none;
                            color: #333;

                            &:hover {
                                color: @headerBgColor;
                            }
                        }

                        > div {
                            > label {
                                line-height: 2.15;
                            }
                        }
                    }
                }

                > div:last-of-type {
                    margin-bottom: 20px;
                }
            }
        }
    }
}

#RGPDCard2 {
    color: @gris;
    font-size: 10px;
    font-style: italic;
    text-align: center;
}

#RGPDCard2 > div > a {
    text-decoration: none;
    color: @gris;

    &:hover {
        color: @orange;
    }
}

#RGPDCard3 {
    color: @gris;
    font-size: 10px;
    font-style: italic;
    text-align: center;
}

#RGPDCard3 > div > div > a {
    text-decoration: none;
    color: @gris;

    &:hover {
        color: @orange;
    }
}

#RGPDCard4 {
    color: @gris;
    font-size: 10px;
    font-style: italic;
    text-align: center;
}

#RGPDCard4 > div > div > a {
    text-decoration: none;
    color: @gris;

    &:hover {
        color: @orange;
    }
}

#RGPDCard5 {
    bottom: 150px;
    color: @gris;
    font-size: 10px;
    font-style: italic;
    text-align: center;
    position: absolute;
}

#RGPDCard5 > div > a {
    text-decoration: none;
    color: @gris;

    &:hover {
        color: @orange;
    }
}

@media (max-width: @screen-xs-max) {
    #RGPDCard5 {
        bottom: 249px;
    }
}

@media (max-height: 680px) {
    #RGPDCard5 {
        margin-bottom: 20px;
        position: relative;
        bottom: auto;
    }
}

#WorkRequest {
    > div {
        > form {
            > div {
                > div {
                    > label {
                        font-weight: normal;
                    }

                    > div {
                        > label {
                            font-weight: normal;
                        }

                        > div {
                            > hr {
                                margin-bottom: 15px;
                                margin-top: 0;
                            }
                        }
                    }
                }

                > div:nth-last-of-type(5) {
                    > div {
                        > textarea {
                            height: 150px;
                            resize: vertical;
                        }
                    }
                }

                > div:nth-last-of-type(3) {
                    > div {
                        color: @gris;
                        font-size: 10px;

                        > a {
                            text-decoration: none;
                            color: #333;

                            &:hover {
                                color: @headerBgColor;
                            }
                        }

                        > div {
                            > label {
                                line-height: 2.15;
                            }
                        }
                    }
                }
            }
        }
    }
}

#AddPJModal {
    > div {
        > div {
            > div:nth-of-type(2) {
                > div:first-of-type {
                    > div {
                        > span {
                            display: table;
                            overflow: hidden;
                            position: relative;

                            > input {
                                background: white;
                                cursor: inherit;
                                display: block;
                                filter: alpha(opacity=0);
                                font-size: 100px;
                                min-height: 100%;
                                min-width: 100%;
                                opacity: 0;
                                outline: none;
                                position: absolute;
                                right: 0;
                                text-align: end;
                                top: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

#PJTable {
    > tbody {
        > tr {
            > td {
                vertical-align: middle;

                &:last-of-type {
                    text-align: center;
                }
            }
        }
    }
}

#PriceQuote {
    > div:first-of-type {
        > div {
            > div:first-of-type {
                > label {
                    text-align: center;
                    width: 100%;
                }
            }

            > div:nth-of-type(2) {
                > ul {
                    > li {
                        > a {
                            color: #636365;
                            font-size: 10px;
                        }

                        &.active {
                            > a {
                                background-color: #636365;
                                border-color: #636365;
                                color: white;
                            }
                        }
                    }
                }
            }

            > div:nth-of-type(3) {
                > table {
                    width: 100% !important;

                    > tbody {
                        > tr {
                            > td:nth-of-type(3) {
                                > a {
                                    color: @headerBgColor;
                                }
                            }
                        }
                    }
                }
            }

            > div:last-of-type {
                > ul {
                    > li {
                        > a {
                            color: #636365;
                            font-size: 10px;
                        }

                        &.active {
                            > a {
                                background-color: #636365;
                                border-color: #636365;
                                color: white;
                            }
                        }
                    }
                }
            }
        }
    }
}

#LegalNotice {
    > div {
        > div {
            > h4 {
                color: @headerBgColor;
            }

            > p {
                > a {
                    text-decoration: none;
                    color: #333;

                    &:hover {
                        color: @headerBgColor;
                    }
                }
            }

            > h3 {
                text-align: center;

                > a {
                    text-decoration: none;
                    color: #333;

                    &:hover {
                        color: @headerBgColor;
                    }
                }
            }

            > div > a {
                text-decoration: none;
                color: #333;

                &:hover {
                    color: @headerBgColor;
                }
            }
        }
    }
}

#FormulaireRenouvellement {
    > div {
        > form {
            > div:first-of-type {
                > div:nth-last-of-type(3) {
                    > div {
                        color: @gris;
                        font-size: 10px;

                        > a {
                            text-decoration: none;
                            color: #333;

                            &:hover {
                                color: @headerBgColor;
                            }
                        }

                        > div {
                            > label {
                                line-height: 2.15;
                            }
                        }
                    }
                }
            }

            > div:last-of-type {
                margin-bottom: 20px;
            }
        }
    }
}

#vuedetaillecc {
    color: #333;
    cursor: pointer;
    text-decoration: none;

    &:hover {
        color: @headerBgColor;
    }
}

#maniftc {
    text-decoration: none;
    color: #333333;

    &:hover {
        color: @headerBgColor;
    }
}

#WorkRequestLoader {
    background-color: white;
    border: 1px solid;
    bottom: 0;
    height: 100px;
    left: 0;
    line-height: 90px;
    margin: auto;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 400px;
}

#documentsobligatoire {
    background: white;
    cursor: inherit;
    display: block;
    filter: alpha(opacity=0);
    font-size: 100px;
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    outline: none;
    position: absolute;
    right: 0;
    text-align: end;
    top: 0;
}

.hover-trash {
    cursor: pointer;

    &:hover {
        color: @orange;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------- */
.has-error {
    > input {
        border: 2px solid #a94442;
    }
}

.col-xs-13,
.col-sm-13,
.col-md-13,
.col-lg-13 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-13 {
    width: 20% !important;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-13 {
        width: 20% !important;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-13 {
        width: 20% !important;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-13 {
        width: 20% !important;
        float: left;
    }
}

.btn-gescime {
    color: @headerFontColor;
    background-color: @headerBgColor;
    border-color: darken(@headerBgColor, 10%);
}

.btn-gescime:hover,
.btn-gescime:focus,
.btn-gescime:active,
.btn-gescime.active,
.open .dropdown-toggle.btn-gescime {
    & when (@headerBgColor = #000000) {
        color: #ffffff !important;
    }

    color: @headerFontColor;
    background-color: darken(@headerBgColor, 5%);
    border-color: darken(@headerBgColor, 10%);
}

.btn-gescime:active,
.btn-gescime.active,
.open .dropdown-toggle.btn-gescime {
    background-image: none;
}

.btn-gescime.disabled,
.btn-gescime[disabled],
fieldset[disabled] .btn-gescime,
.btn-gescime.disabled:hover,
.btn-gescime[disabled]:hover,
fieldset[disabled] .btn-gescime:hover,
.btn-gescime.disabled:focus,
.btn-gescime[disabled]:focus,
fieldset[disabled] .btn-gescime:focus,
.btn-gescime.disabled:active,
.btn-gescime[disabled]:active,
fieldset[disabled] .btn-gescime:active,
.btn-gescime.disabled.active,
.btn-gescime[disabled].active,
fieldset[disabled] .btn-gescime.active {
    background-color: lighten(@headerBgColor, 10%);
    border-color: lighten(@headerBgColor, 5%);
}

.btn-gescime .badge {
    color: lighten(@headerBgColor, 10%);
    background-color: lighten(@headerBgColor, 5%);
}

table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
    padding-left: 30px;
    padding-right: 8px !important;
}

table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::after,
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::after {
    left: 8px;
    right: auto !important;
}

/* ------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: inherit !important;
    }

    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: inherit !important;
    }

    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: inherit !important;
    }
}

@media (max-width: @screen-xxs-max) {
    #Tariffs {
        > div {
            > div {
                > div {
                    padding: 10px;
                }
            }
        }
    }
}

@media (min-width: @screen-xxs-max) {
    #Contact {
        > div {
            > form {
                > div:nth-of-type(2) {
                    > div {
                        > div {
                            > textarea {
                                height: 180px;
                            }
                        }
                    }
                }
            }
        }
    }

    #Tariffs {
        > div {
            > div {
                > div {
                    padding: 20px;
                }
            }
        }
    }
}

@media (max-width: @screen-xs-max) {
    .header {
        > div {
            > div:last-of-type {
                float: right;
                margin-right: 60px;
                width: calc(~"100% - 60px");

                > div {
                    > input {
                        border-color: transparent;
                        float: right;
                        padding: 0;
                        width: 0px;
                    }

                    > span {
                        > button {
                            .border-radius(4px);
                        }
                    }
                }
            }
        }
    }

    #Bar {
        > div {
            > div {
                > button {
                    position: absolute;
                    right: 0;
                    top: -57px;
                }

                > ul {
                    > li {
                        > a::after {
                            display: block;
                            content: " ";
                            float: right;
                            width: 0;
                            height: 0;
                            border-color: transparent;
                            border-left-color: transparent;
                            border-style: solid;
                            border-width: 5px 0 5px 5px;
                            border-left-color: #CCCCCC;
                            margin-top: 5px;
                            margin-right: -10px;
                        }

                        > ul {
                            background-color: #EFEFEF;
                        }
                    }
                }
            }
        }
    }

    .footer {
        > div {
            float: none;
        }

        > nav {
            > div {
                > div {
                    > ul {
                        display: inline-block;
                    }
                }
            }
        }
    }

    #Cemeteries {
        > div:last-of-type {
            margin: 20px 0;
        }
    }

    #CCMap {
        height: 350px;
        margin-bottom: 20px;
    }

    #DefunctSheet {
        > div:first-of-type {
            > div:first-of-type {
                > table {
                    margin: 35.4px 15px;

                    > tbody {
                        > tr {
                            > td {
                                border: none;
                                padding: 0;
                            }
                        }
                    }
                }
            }

            > div:last-of-type {
                > div {
                    margin: 0 0 15px 0;

                    > span {
                        color: #960201;
                    }

                    > p {
                        font-size: small;
                    }

                    > ul {
                        list-style-type: none;
                        padding: 0;

                        > li {
                            cursor: pointer;

                            > p {
                                font-size: small;
                                margin: 0;

                                > a {
                                    color: #333;
                                    text-decoration: none;

                                    &:hover {
                                        color: @headerBgColor;
                                    }
                                }
                            }
                        }
                    }

                    &:last-of-type {
                        text-align: center;
                    }
                }

                > div:last-of-type {
                    > img {
                        max-width: 130px;
                    }
                }
            }
        }
    }

    #Settlement {
        > div {
            > iframe {
                height: 380px;
            }
        }
    }

    #Tariffs {
        margin-bottom: 15px;

        > div {
            > iframe {
                height: 380px;
            }
        }
    }

    #NewsCard {
        margin-bottom: 15px;

        > div {
            > div {
                > div:last-of-type {
                    > img {
                        cursor: default;
                    }
                }
            }
        }
    }

    #Procedures {
        > div {
            > iframe {
                height: 380px;
            }
        }
    }

    #Operators {
        > div {
            > iframe {
                height: 380px;
            }
        }
    }

    .iwcontent {
        max-height: none;

        > div {
            > .panel-body {
                cursor: pointer;
            }
        }
    }

    #PriceQuote {
        > div:first-of-type {
            > div {
                > div:first-of-type {
                    > label {
                        > input {
                            width: 200px;
                        }
                    }
                }
            }
        }
    }

    #DMap {
        height: 350px;
    }

    #DRMap {
        height: 350px;
    }

    #PMap {
        height: 350px;
    }

    #GTMap {
        height: 350px;
    }

    #CPMap {
        height: 350px;
    }

    #Cemeteriesplans {
        > div {
            > div:last-of-type {
                > div:not(:first-of-type) {
                    padding-left: 0;
                    padding-right: 0;
                }
            }
        }
    }

    #FormulaireRenouvellement {
        > div {
            > form {
                > div {
                    > div:not(#filesTable) {
                        > div:not(:last-of-type) {
                            margin-bottom: 15px;
                        }
                    }
                }
            }
        }
    }
}

@media (min-width: @screen-xs-max) {
    .header {
        > div {
            > div:last-of-type {
                float: right;
            }
        }
    }

    .dropdown-submenu {
        position: relative;
        cursor: pointer;

        > a {
            &:after {
                border-left-color: #fff;
            }
        }

        > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -6px;
            margin-left: -1px;
            .border-radius(0 6px 6px 6px);
        }

        > a {
            &:after {
                display: block;
                content: " ";
                float: right;
                width: 0;
                height: 0;
                border-color: transparent;
                border-style: solid;
                border-width: 5px 0 5px 5px;
                border-left-color: #CCCCCC;
                margin-top: 5px;
                margin-right: -10px;
            }
        }
    }

    .dropdown-submenu.pull-left {
        float: none;

        > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            .border-radius(6px 0 6px 6px);
        }
    }

    .footer {
        > div {
            float: right;
        }
    }

    #CCMap {
        height: 430px;
    }

    #PMap {
        height: 430px;
    }

    #GTMap {
        height: 430px;
    }

    #Settlement {
        > div {
            > iframe {
                height: 680px;
            }
        }
    }

    #Tariffs {
        > div {
            > iframe {
                height: 680px;
            }
        }
    }

    #Procedures {
        > div {
            > iframe {
                height: 680px;
            }
        }
    }

    #Operators {
        > div {
            > iframe {
                height: 680px;
            }
        }
    }

    #PriceQuote {
        > div:first-of-type {
            > div {
                > div:first-of-type {
                    > label {
                        > input {
                            width: 500px;
                        }
                    }
                }

                > div:nth-of-type(2) {
                    display: none;
                    text-align: center;
                }

                > div:last-of-type {
                    text-align: center;
                }
            }
        }
    }

    #Bar {
        > div {
            > div {
                > ul {
                    > li {
                        > ul {
                            background-color: white !important;
                        }
                    }
                }
            }
        }
    }

    #Cemeteriesplans {
        > div {
            > div:last-of-type {
                > div:nth-of-type(2) {
                    padding-left: 0;
                }

                > div:nth-of-type(4) {
                    padding-right: 0;
                }
            }
        }
    }
}

@media (max-width: @screen-sm-max) {
    #Cemeteries {
        > div {
            float: none;
        }
    }

    #DefunctSheet {
        > div:nth-of-type(2):not(#DefunctSheetMenu) {
            text-align: center;

            > img {
                margin-bottom: 20px;
                width: 80%;
            }
        }
    }

    #DefunctSheetMenu {
        display: flex;
        flex-wrap: wrap;
        margin: 10px 0;
        text-align: center;

        > div {
            float: left;
            margin: 0 4px;
        }
    }

    #NewsCard {
        > h3 {
            > span {
                display: block;
                float: none;
            }
        }
    }

    #PMap {
        > .iwcontent {
            max-width: 400px;
            position: relative !important;
            top: inherit !important;
            width: 100%;
        }
    }

    #ReportInformation {
        > div {
            > div {
                > form {
                    > div.form-group {
                        > div:not(:last-of-type) {
                            margin-bottom: 15px;
                        }
                    }

                    > div:not(.form-group) {
                        > div {
                            > div:not(:last-of-type) {
                                margin-bottom: 15px;
                            }
                        }
                    }
                }
            }
        }
    }

    #WorkRequest {
        > div {
            > form {
                > div {
                    > div.form-group {
                        > div:not(:last-of-type) {
                            margin-bottom: 15px;
                        }
                    }

                    > div:not(.form-group) {
                        > div {
                            > div:not(:last-of-type) {
                                margin-bottom: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (min-width: @screen-sm-max) {
    #DefSearch {
        top: 60px;
    }

    #CarouselRGAA{
        top: 121px;
    }

    #Defunct {
        left: 50px;
        top: 525px;
        position: absolute;
        z-index: 1;
    }

    #DMap {
        height: 530px;
    }

    #DefunctResult {
        left: 50px;
        top: 525px;
        position: absolute;
        z-index: 1;
    }

    #DRMap {
        height: 530px;
    }

    #Settlement {
        > div {
            > p {
                padding-left: 20px;
            }
        }
    }

    #News {
        > div {
            > div {
                > div {
                    > div:first-of-type {
                        float: left;
                        margin-right: 16px;
                        max-height: 150px;
                        max-width: 150px;
                        width: 30%;
                    }
                }
            }
        }
    }

    #NewsCard {
        > div {
            > div {
                > div:not(:first-of-type) {
                    margin-left: auto;
                    margin-right: auto;
                    width: 40%;
                }
            }
        }
    }

    #Procedures {
        > div {
            > p {
                padding-left: 20px;
            }
        }
    }

    #Operators {
        > div {
            > p {
                padding-left: 20px;
            }
        }
    }

    #Patrimony {
        top: 520px;
        position: absolute;
        z-index: 1;
    }

    #PMap {
        height: 530px;
    }

    #Guidedtour {
        top: 520px;
        position: absolute;
        z-index: 1;
    }

    #GTMap {
        height: 530px;
    }

    #WorkRequest {
        > div {
            > form {
                > div {
                    margin-left: 30px;
                    margin-bottom: 15px;
                }
            }
        }
    }

    #RGPDCard3 {
        > div {
            margin-left: 30px;
        }
    }

    #CPMap {
        height: 530px;
    }
}

@media (min-width: @screen-sm-max) and (max-width: 1096px) {
    .operationfuneraire {
        > div:nth-of-type(2) {
            > div:first-of-type {
                > label:first-of-type {
                    margin-left: 10px;
                }
            }
        }
    }
}

@media (max-width: @screen-md-max) {
    #MatureConcessions {
        > div {
            > div:first-of-type {
                width: 100%;
            }

            > ul:first-of-type {
                display: table !important;
            }

            > table {
                border: 0;
                border-collapse: collapse;

                > thead {
                    border: none;
                    clip: rect(0 0 0 0);
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    padding: 0;
                    position: absolute;
                    width: 1px;

                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;
                    }
                }

                > tbody {
                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;

                        > td {
                            border-bottom: 1px solid #ddd;
                            display: block;
                            text-align: right;

                            > div {
                                float: left;
                                font-weight: bold;

                                > span {
                                    font-weight: bold;
                                }
                            }

                            &:nth-child(2) {
                                border-top: 0;
                            }

                            &:last-child {
                                border-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    #AbandonedConcessions {
        > div {
            > div:first-of-type {
                width: 100%;
            }

            > ul:first-of-type {
                display: table !important;
            }

            > table {
                border: 0;
                border-collapse: collapse;

                > thead {
                    border: none;
                    clip: rect(0 0 0 0);
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    padding: 0;
                    position: absolute;
                    width: 1px;

                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;
                    }
                }

                > tbody {
                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;

                        > td {
                            border-bottom: 1px solid #ddd;
                            display: block;
                            text-align: right;

                            > div {
                                float: left;
                                font-weight: bold;

                                > span {
                                    font-weight: bold;
                                }
                            }

                            &:nth-child(2) {
                                border-top: 0;
                            }

                            &:last-child {
                                border-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    #ExpiredCommonGround {
        > div {
            > div:first-of-type {
                width: 100%;
            }

            > ul:first-of-type {
                display: table !important;
            }

            > table {
                border: 0;
                border-collapse: collapse;

                > thead {
                    border: none;
                    clip: rect(0 0 0 0);
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    padding: 0;
                    position: absolute;
                    width: 1px;

                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;
                    }
                }

                > tbody {
                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;

                        > td {
                            border-bottom: 1px solid #ddd;
                            display: block;
                            text-align: right;

                            > div {
                                float: left;
                                font-weight: bold;

                                > span {
                                    font-weight: bold;
                                }
                            }

                            &:nth-child(2) {
                                border-top: 0;
                            }

                            &:last-child {
                                border-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    #DeadForFrance {
        > div {
            > div:first-of-type {
                width: 100%;
            }

            > ul:first-of-type {
                display: table !important;
            }

            > table {
                border: 0;
                border-collapse: collapse;

                > thead {
                    border: none;
                    clip: rect(0 0 0 0);
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    padding: 0;
                    position: absolute;
                    width: 1px;

                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;
                    }
                }

                > tbody {
                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;

                        > td {
                            border-bottom: 1px solid #ddd;
                            display: block;
                            text-align: right !important;

                            > div {
                                float: left;
                                font-weight: bold;

                                > span {
                                    font-weight: bold;
                                }
                            }

                            &:nth-child(2) {
                                border-top: 0;
                            }

                            &:last-child {
                                border-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    #DispersionsRegister {
        > div {
            > div:first-of-type {
                width: 100%;
            }

            > ul:first-of-type {
                display: table !important;
            }

            > table {
                border: 0;
                border-collapse: collapse;

                > thead {
                    border: none;
                    clip: rect(0 0 0 0);
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    padding: 0;
                    position: absolute;
                    width: 1px;

                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;
                    }
                }

                > tbody {
                    > tr {
                        border-bottom: 3px solid #ddd;
                        display: block;
                        margin-bottom: .625em;

                        > td {
                            border-bottom: 1px solid #ddd;
                            display: block;
                            text-align: right;

                            > div {
                                float: left;
                                font-weight: bold;

                                > span {
                                    font-weight: bold;
                                }
                            }

                            &:nth-child(2) {
                                border-top: 0;
                            }

                            &:last-child {
                                border-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    #Burial {
        > div {
            > div:first-of-type {
                width: 100%;
            }

            > div {
                > ul:first-of-type {
                    display: table !important;
                }

                > table {
                    border: 0;
                    border-collapse: collapse;

                    > thead {
                        border: none;
                        clip: rect(0 0 0 0);
                        height: 1px;
                        margin: -1px;
                        overflow: hidden;
                        padding: 0;
                        position: absolute;
                        width: 1px;

                        > tr {
                            border-bottom: 3px solid #ddd;
                            display: block;
                            margin-bottom: .625em;
                        }
                    }

                    > tbody {
                        > tr {
                            border-bottom: 3px solid #ddd;
                            display: block;
                            margin-bottom: .625em;

                            > td {
                                border-bottom: 1px solid #ddd;
                                display: block;
                                text-align: right;

                                > div {
                                    float: left;
                                    font-weight: bold;

                                    > span {
                                        font-weight: bold;
                                    }
                                }

                                &:nth-child(2) {
                                    border-top: 0;
                                }

                                &:last-child {
                                    border-bottom: 0;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (min-width: @screen-md-max) {
    #RGPDCard {
        > div {
            padding-left: 60px;
        }
    }
}

@media (min-width: @screen-xs-max) and (max-width: @screen-sm-max) {
    #DefunctCard {
        margin-top: 20px;
    }

    #DefunctResultCard {
        margin-top: 20px;
    }

    #DMap {
        height: 430px;
    }

    #DRMap {
        height: 430px;
    }

    #PatrimonyCard {
        height: 430px;
        margin-top: 20px;
    }

    #GuidedtourCard {
        height: 430px;
        margin-top: 20px;
    }

    #CPMap {
        height: 430px;
    }
}

@keyframes cssload-rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-one {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@-moz-keyframes cssload-rotate-one {
    0% {
        -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes cssload-rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-two {
    0% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@-moz-keyframes cssload-rotate-two {
    0% {
        -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes cssload-rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-webkit-keyframes cssload-rotate-three {
    0% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@-moz-keyframes cssload-rotate-three {
    0% {
        -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}