/*css popover*/
.popover_lws {
    font-family: 'Lato', sans-serif;
    display: none;
    position: absolute;
    min-width: 220px;
    max-width: 300px;
    padding: 20px;
    background-color: #0e2c68;
    color: white;
    left: -50%;
    z-index: 9999;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,1);
    font-size: 14px;
}
.control_popover_lws {
    position:relative;
    cursor:pointer;
}
.control_popover_lws:hover .popover_lws {
    display:block;
}




/* TOOLTIP */
.tooltip-ndd-container {
    position: relative;
    cursor: pointer;
}
.tooltip-ndd {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    z-index: 1;
    color: #1e499b;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    width: 160%;
    top: 101%;
    left: -30%;
    padding: 10px;
}

.tooltip-ndd:after, .tooltip-ndd:before {
      bottom: 100%;
    right: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.tooltip-ndd:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 15px;
        margin-right: -15px;
}
.tooltip-ndd:before {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-width: 16px;
  margin-right: -16px;
}
.tooltip-ndd-container:hover .tooltip-ndd {
    display: block;
}
/* FIN TOOLTIP */


