.ohu-popover {
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
.ohu-popover__arrow {
  position: absolute;
}
.ohu-popover.is-top {
  padding-bottom: 12px;
}
.ohu-popover.is-top .ohu-popover__arrow {
  margin-left: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #4C4C4C transparent transparent transparent;
  border-width: 12px 12px 0 12px;
}
.ohu-popover.is-center-left {
  padding-right: 12px;
}
.ohu-popover.is-center-left .ohu-popover__arrow {
  margin-top: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #4C4C4C;
  border-width: 12px 0 12px 12px;
}
.ohu-popover.is-center-right {
  padding-left: 12px;
}
.ohu-popover.is-center-right .ohu-popover__arrow {
  margin-top: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #4C4C4C transparent transparent;
  border-width: 12px 12px 12px 0;
}
.ohu-popover.is-bottom {
  padding-top: 12px;
}
.ohu-popover.is-bottom .ohu-popover__arrow {
  margin-left: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #4C4C4C transparent;
  border-width: 0 12px 12px 12px;
}
.ohu-popover__content {
  background: #4C4C4C;
  border-radius: 8px;
  color: #fff;
  font-weight: 400;
  font-size: 32px;
}

.ohu-popover-item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  white-space: nowrap;
  border: none;
  transition: all 0.3s;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
  font-size: 32px;
  line-height: 1.375em;
  font-weight: 400;
}
.ohu-popover-item:active {
  opacity: 0.5;
}
.ohu-popover-item.is-disabled {
  color: #999;
}
.ohu-popover-item > .ohu-divider {
  margin-left: 100px;
}
.ohu-popover-item__content {
  position: relative;
  padding-left: 102px;
  height: 102px;
  z-index: 1;
}
.ohu-popover-item__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 102px;
  height: 100%;
  font-size: 38px;
  text-align: center;
  line-height: 102px;
}
.ohu-popover-item__icon > .ohu-icon {
  vertical-align: -0.2em;
}
.ohu-popover-item__text {
  padding: 30px 30px 30px 0;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}