.custom-hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  border: 1px dashed #47e;
  pointer-events: none;
  background-color: rgba(68, 119, 238, 0.04);
}
.custom-hover-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
  display: block;
  min-width: 50px;
  height: 20px;
  color: #47e;
  font-size: 12px;
  line-height: 20px;
  overflow-wrap: normal;
  transform: translateY(-20px);
  content: attr(data-compname);
  pointer-events: none;
}
.custom-hover-layer > div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-hover-layer > div .ued-custom-hover-click-wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  line-height: 20px;
  color: #47e;
  font-size: 12px;
  pointer-events: all;
  cursor: pointer;
  background-color: #F8FAFE;
}
.custom-hover-layer > div .ued-custom-hover-click-wrap .editor-divider-vertical {
  border-color: #47e;
}
.custom-hover-layer-border {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: absolute;
}
.custom-hover-layer-arrow {
  width: 0;
  height: 0;
  border: 5px solid transparent;
}
.custom-hover-layer-top .custom-hover-layer-border {
  background-color: #47e;
  left: 0;
  top: 0;
  width: calc(100% + 2px);
  height: 3px;
  transform: translate3d(-1px, -5px, 0);
}
.custom-hover-layer-top .custom-hover-layer-arrow {
  transform: translate3d(0, -5px, 0);
  border-bottom-color: #47e;
}
.custom-hover-layer-bottom .custom-hover-layer-border {
  background-color: #47e;
  left: 0;
  bottom: 0;
  width: calc(100% + 2px);
  height: 3px;
  transform: translate3d(-1px, 5px, 0);
}
.custom-hover-layer-bottom .custom-hover-layer-arrow {
  transform: translate3d(0, 5px, 0);
  border-top-color: #47e;
}
.custom-hover-layer-left .custom-hover-layer-border {
  background-color: #47e;
  left: 0;
  top: 0;
  width: 3px;
  height: calc(100% + 2px);
  transform: translate3d(-5px, -1px, 0);
}
.custom-hover-layer-left .custom-hover-layer-arrow {
  transform: translate3d(-5px, 0, 0);
  border-right-color: #47e;
}
.custom-hover-layer-right .custom-hover-layer-border {
  background-color: #47e;
  right: 0;
  top: 0;
  width: 3px;
  height: calc(100% + 2px);
  transform: translate3d(5px, -1px, 0);
}
.custom-hover-layer-right .custom-hover-layer-arrow {
  transform: translate3d(5px, 0, 0);
  border-left-color: #47e;
}
