/* GPwidgetBasket */
.GPwidgetBasket {
    position: absolute;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #333;
}

.GPwidgetBasket input[type='text'],
.GPwidgetBasket input[type='button'] {
    -webkit-appearance: none;
    color: #333333;
}

.GPwidgetBasket input[type="checkbox"] {
    display: none;
}

.GPwidgetBasket select {
    padding-left: 3px;
    border-radius: 3px;
}

.GPwidgetBasket form {
    margin-bottom: 0;
}

.GPwidgetBasket * {
    box-sizing: border-box;
    background-repeat: no-repeat;
}

/* Basket */
#GPBasket {
    font-size: 11px;
}

#GPBasket {
    top: 70px;
    left: 8px;
}

#GPBasket [draggable] {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}

/* Manage opening of the components through hiden checkboxes */

#GPBasket input[type="checkbox"] + div,
#GPBasket input[type="checkbox"] + label + div {
    max-height: 0px;
}

#GPBasket label {
    display: block;
}

/* Showing/hiding objects list */

#GPshowObjectsListPicto {
    position: relative;
    float: left;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-out 0s, box-shadow 0.5s ease-out 0s, border 0.5s ease-out 0s, border-radius 0.5s ease-out 0s;
    cursor: pointer;
}

#GPshowObjectsListOpen,
#GPshowObjectsListClose {
    position: absolute;
    display: block;
    transition: border-radius 0.5s ease-out 0s, opacity 0.5s ease-out 0s;
}

#GPshowObjectsListOpen {
    background-position: 0 0;
    opacity: 1;
}

#GPshowObjectsListClose {
    opacity: 0;
}

#GPbasket input[type="checkbox"]:checked + div + #GPshowObjectsListPicto {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#GPbasket input[type="checkbox"]:checked + div + #GPshowObjectsListPicto #GPshowObjectsListClose {
    opacity: 1;
}

/* Objects list */

#GPobjectsList {
    position: relative;
    width: 180px;
    border-bottom-right-radius: 0;
    opacity: 0;
    overflow: auto;
    transition: max-height 0.5s ease-out 0s, opacity 0.5s ease-out 0.25s;
}

#GPbasket input[type="checkbox"]:checked + #GPobjectsList {
    max-height: 232px;
    opacity: 1;
    transition: max-height 0.5s ease-in 0s, opacity 0.25s ease-in 0s;
}

/* Object : general */

.GPbasket_object {
    position: relative;
    top: 0;
    background-color: #FFF;
    border-bottom: 1px dotted #CCC;
    overflow: hidden;
}

#GPobjectsList .GPbasket_object:last-child {
    border-bottom: none;
}

.GPbasketTools,
.GPobjectBasicTools,
.GPobjectAdvancedTools {
    position: relative;
    width: 100%;
    height: 28px;
}

.GPbasketTools {
    display: block;
    max-height: 28px;
    opacity: 1;
    transition: max-height 0.5s ease-out 0s, opacity 0.5s ease-out 0s;
}

.GPobjectVisibility,
.GPobjectInfo,
.GPobjectInfoOpened,
.GPobjectRemove {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.GPobjectVisibility,
.GPobjectName,
.GPobjectInfo,
.GPobjectInfoOpened,
.GPobjectRemove,
.GPobjectOpacity,
.GPobjectOpacityValue {
    position: absolute;
    top: 0;
}

.GPghostObject {
    opacity: 0;
}

/* Object basic tools */

.GPobjectBasicTools {
    background-color: #FFF;
}

.GPobjectVisibility {
    left: 0;
    background-position: -28px 0;
}

input[type="checkbox"]:checked + .GPobjectVisibility {
    background-position: 0 0;
}

.GPobjectName {
    left: 28px;
    width: calc(100% - 56px);
    line-height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 4px;
    cursor: move;
}

.outOfRange .GPobjectName {
    color: #AAA;
}

/* Showing object advanced tools */

.GPshowObjectAdvancedTools {
    top: 0;
    right: 0;
    background-position: -112px 0;
}

.GPobjectAdvancedTools {
    display: block;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out 0s, opacity 0.5s ease-out 0s;
}

#GPbasket input[type="checkbox"]:checked + label + .GPobjectAdvancedTools {
    max-height: 28px;
    opacity: 1;
}

/* Object advanced tools */

/*.GPobjectInfo {
  left: 0;
  background-position: -55px 0;
}

.GPobjectInfoOpened {
  left: 0;
  background-position: -83px 0;
}*/

/*.GPobjectOpacity {
  left: 28px;
  width: calc(100% - 100px);
  height: 28px;
  padding-left: 8px;
}*/

/*.GPobjectOpacityValue {
  width: 32px;
  left: calc(100% - 60px);
  line-height: 28px;
  font-size: 10px;
  font-style: italic;
  cursor: default;
}*/

/* Showing/hiding objects list */

#GPshowObjectsListPicto {
    width: 38px;
    height: 38px;
}

#GPshowObjectsListOpen,
#GPshowObjectsListClose {
    top: 3px;
    left: 3px;
    width: 32px;
    height: 32px;
    background-image: url("images/GPshowBasket.png");
}

#GPshowObjectsListClose {
    background-position: -32px 0;
}

#GPobjectSwitcher input[type="checkbox"]:checked + div + #GPshowObjectsListPicto #GPshowObjectsListOpen {
    opacity: 0.7;
}

#GPobjectSwitcher input[type="checkbox"]:checked + div + #GPshowObjectsListPicto #GPshowObjectsListClose {
    background-color: rgba(0, 60, 136, 0.3);
}

#GPobjectSwitcher input[type="checkbox"]:checked + div + #GPshowObjectsListPicto:hover #GPshowObjectsListClose {
    background-color: rgba(0, 60, 136, 0.4);
}

/*  basket tools  */
.GPbasketZoom,
.GPbasketPdf,
.GPbasketPmr,
.GPbasketRemove {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.GPbasketZoom,
.GPbasketPdf,
.GPbasketPmr,
.GPbasketRemove {
    position: absolute;
    top: 0;
}

.GPbasketZoom,
.GPbasketPdf,
.GPbasketPmr,
.GPbasketRemove {
    background-image: url("images/GPbasketTools.png");
}

.GPbasketZoom {
    left: 0;
    background-position: -28px 0;
}

.GPbasketPdf {
    left: 28px;
    background-position: -85px 0;
}

.GPbasketPmr {
    left: 56px;
    background-position: -108px 0;
}

.GPbasketRemove {
    right: 8px;
    background-position: -136px 0;
}

/*  object tools  */
.GPobjectSelected,
.GPobjectZoom,
.GPobjectPdf,
.GPobjectRemove {
    position: absolute;
    top: 0;
}

.GPobjectSelected {
    background-image: url("images/GPobjectSelect.png");
}

.GPobjectZoom,
.GPobjectPdf,
.GPobjectRemove {
    background-image: url("images/GPobjectTools.png");
}

.GPobjectSelected,
.GPobjectZoom,
.GPobjectPdf,
.GPobjectRemove {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.GPobjectSelected {
    display: inline-block;
    left: 0;
    background-position: -0 0;
}

.GPobjectZoom {
    right: 50px;
    background-position: -20px 0;
}

.GPobjectPdf {
    right: 30px;
    background-position: -60px 0;
}

.GPobjectRemove {
    right: 10px;
    background-position: -100px 0;
}

input[type="checkbox"]:checked + .GPbasketZoom {
    background-position: 0 0;
}

input[type="checkbox"]:checked + .GPobjectSelected {
    background-position: 0 -28px;
}

/*input[type="checkbox"]:checked + .GPbasketPmr {
  background-position: -108px 0;
}*/

/* Objects list */

.GPobjectVisibility,
.GPshowObjectAdvancedTools,
.GPobjectInfo,
.GPobjectInfoOpened,
.GPobjectRemove {
    background-image: url("images/GPobjectTools.png");
}

/* Opacity slider : Chrome, Safari, Opera */

.GPobjectOpacity input[type="range"]::-webkit-slider-runnable-track {
    background: url("images/GPopacitySlider.png");
}

/* Opacity slider : Firefox */

.GPobjectOpacity input[type="range"]::-moz-range-track {
    background: url("images/GPopacitySlider.png");
}

/* Opacity slider : IE */

.GPobjectOpacity input[type="range"]::-ms-track {
    background: url("images/GPopacitySlider.png");
}

/* Object info panel */

#GPobjectInfoPanel {
    right: 190px;
}

#GPobjectInfoTitle {
    color: #366291;
    border-bottom: 1px solid #366291;
}

#GPobjectInfoQuicklook {
    background-image: url("images/GPobjectInfo.png");
}

#GPobjectInfoClose {
    background-image: url("images/GPobjectInfoClose.png");
}

.GPobjectInfoLink,
.GPobjectInfoPopup {
    background-image: url("images/GPobjectInfo.png");
}

.ol-mouse-position {
    top: auto;
    bottom: 2em;
}

.ol-overviewmap {
    bottom: 2.6em;
    left: 10px;
}

.ol-scale-line {
    left: 50%;
}

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;
}

.ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
}

.ol-popup-closer:after {
    content: "✖";
}

.infobulle .infobulle_titre {
    padding-top: 10px;
    padding-bottom: 12px;
    font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Arial, sans-serif;
    font-size: 15px;
    color: #256285;
    cursor: pointer;
}

#infobulle {
    display: block;
    cursor: pointer;
    font-size: 13px;
    font-family: "Lucida Grande";
    background-color: #ecebea;
    color: #333333;
    padding: 5px;
    box-shadow: 1px 1px 12px black;
}

.infobulle .plus_info {
    display: block;
    padding-top: 5px;
    text-align: right;
}

.click-terr {
    width: 70px;
}

/* https://www.creativejuiz.fr/blog/doc/menu-css3-dropdown-max-height.html */

.column-left {
    padding-left: 5px;
    /*float: left;*/
    border-right: 1px solid #e9e8e4;
    /*width: 49%;*/
}
.column-right {
    padding-left: 5px;
    /*float: left;*/
    /*width: 49%;*/
}

#menu-ul a {
    display:block;
    color: #fff;
    text-decoration:none;
}
#menu-ul > li{
    position: relative;
    display:inline-block;
    width: 25px;
    height: 25px;
    background: #4b74a0 ;
    z-index: 1;
    border-radius: 4px 4px 4px 4px;
}

#menu-ul > li li {
    position: relative;
    display:inline-block;
    /*width: 150px;*/
    padding: 2px 2px;
    background: #4b74a0 ;
    z-index: 1;
    border-radius: 4px 4px 4px 4px;
}

#menu-ul > li li { background: transparent none; }
#menu-ul > li li a { color: #444; }
#menu-ul > li li:hover { background:#FFFFFF; }

#menu-ul > li + li {
    border-left: 1px solid #aaa;
    border-right: 1px solid #777;
}

#menu-ul .ul {
    position: absolute;
    top: 2em; left: 0;
    width: 300px;
    max-height:0em;
    margin: 0; padding: 0;
    background: #FFFFFF ;
    overflow: hidden;
    transition: 0.5s max-height 0.3s;
}
#menu-ul > li:hover .ul {
    max-height: 30em;
}