body, html {
  margin: 0;
}

#product-mindmap {
  position: relative;
}

#product-mindmap img {
  display: block;
}

#product-mindmap .static {
  width: 100%;
  height: auto;
}

#product-mindmap .pm-on-top {
  position: absolute;
  height: auto;
  width: 20%;
}

#num-16 {
  top: 42%;
  left: 46%;
}
#num-17 {
  top: 24%;
  left: 42%;
}
#num-18 {
  top: 5%;
  left: 39%;
}
#num-19 {
  top: 19%;
  left: 32%;
}
#num-20 {
  top: 47%;
  left: 36.5%;
}

.x-position {
  position: absolute;
  top: 46%;
  left: 38%;
}

.hovicon {
  display: inline-block;
  font-family: 'Arial', 'Helvetica';
  font-weight: bold;
  font-size: 16px;
  line-height: 54px;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  text-decoration: none;
  z-index: 1;
  color: #fff;
  border: 1px solid white;
}

.hovicon span {
  border-radius: 50%;
  padding: 4px;
  position: absolute;
  height: 46px;
  line-height: 46px;
  width: 46px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translate(all 0.2s ease-in-out);
}

.hovicon .circle-bg {
  background: rgba(214, 214, 214, 0.16);
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: all linear .2s;
}

.hovicon:hover.hovicon .circle-bg {
  width: 52px;
  height: 52px;
}

.hovicon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.hovicon:before {
  speak: none;
  font-size: 48px;
  line-height: 90px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}

/* Effect 1 */
.hovicon.effect-1 {
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.hovicon.effect-1:after {
  top: -10px;
  left: -10px;
  padding: 10px;
  box-shadow: 0 0 0 1px #86C543;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Effect 1a */
.hovicon.effect-1.sub-a:hover {
  color: white;
  border-color: #86C543;
}

.hovicon.effect-1.sub-a:hover i {
  color: #41ab6b;
}

.hovicon.effect-1.sub-a:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}