
/* context menu */

.context-menu {
  display: none;
  position: absolute;
  z-index: 10;
  padding: 12px 0;
  width: 240px;
  background-color: #fff;
  border: solid 1px #dfdfdf;
  box-shadow: 1px 1px 2px #cfcfcf;
  
  background-color: #595959;
    border-color: #636363;
    color: #ffffff;
}

.context-menu--active {
  display: block;
}

.context-menu__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-menu__item {
  display: block;
  margin-bottom: 4px;
}

.context-menu__item:last-child {
  margin-bottom: 0;
}

.context-menu__link {
  display: block;
  padding: 4px 12px;
  color: #0066aa;
  text-decoration: none;
}

.context-menu__link:hover {
  color: #fff;
  background-color: #0066aa;
}

.sm-tooltip-floating {
    content: attr(data-tooltip);
    line-height: 1.2;
    max-width: none;
    position: absolute;
    text-align: left;
    white-space: pre;
    z-index: 200;
}
.sm-tooltip-floating {
    border-width: 0;
    margin: 0;
    max-width: 200px;
    opacity: 1;
    white-space: normal;
}
.sm-text-mini {
    font-size: 12px;
}
.sm-tooltip {
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.4);
    margin: 12px;
    max-width: 186px;
    padding: 6px 8px;
}
.sm-user-ui .sm-tooltip, .sm-user-ui.sm-tooltip {
    background-color: #595959;
    border-color: #636363;
    color: #ffffff;
}