.mytooltip {
  display: inline;
  position: relative;
  z-index: 999
  }
  .mytooltip .tooltip-item {
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  padding: 0 10px
  }
  .mytooltip .tooltip-content {
  position: absolute;
  z-index: 9999;
  width: 360px;
  left: 50%;
  margin: 0 0 20px -180px;
  bottom: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 30px;
  -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  background: #2b2b2b;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  padding:10px;
  }

  @media only screen and (max-device-width: 812px) {
    .mytooltip .tooltip-content {
      width: 200px;
      left: 310%;
    }
  }

  .mytooltip .tooltip-content::after {
  content: '';
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #2a3035 transparent transparent;
  border-width: 10px;
  margin-left: -10px
  }
  .mytooltip .tooltip-content img {
  position: relative;
  height: auto;
  display: block;
  }
  .mytooltip .tooltip-item::after {
  content: '';
  position: absolute;
  width: auto;
  height: 20px;
  bottom: 100%;
  left: 50%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
  }
  .mytooltip:hover .tooltip-item::after {
  pointer-events: auto
  }
  .mytooltip:hover .tooltip-content {
  pointer-events: auto;
  opacity: 1;
  padding: 10px;
  -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
  transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg)
  }
  .mytooltip:hover .tooltip-content2 {
  opacity: 1;
  font-size: 18px
  }
  .mytooltip .tooltip-text {
    padding-top: 20px;
    font-size: 14px;
    line-height: 24px;
    display: block;
    color: #fff
  }