#sg_b .sg_copy {
  font-size: 13px;
  color: #000;
  text-align: left !important;
  position: relative;
  box-sizing: border-box;
  line-height: 9px !important;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1.5px dashed #0d4de4;
  border-radius: 4px;
  padding-left: 5px;
  margin: 5px 0 8px;
  padding: 10px 5px;
  cursor: pointer;
}
#sg_b .sg_kod {
  font-weight: 600;
  padding: 0;
  margin-left: 5px;
  background: unset;
  color: #0d4de4;
  -moz-user-select: all;
  -khtml-user-select: all;
  -webkit-user-select: all;
  -ms-user-select: all;
  user-select: all;
  display: inline-block;
  font-size: 14px;
  margin-top: -1px;
  /* width: 70%; */
  height: 11px;
  line-height: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#sg_b .sg_copy_click {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0d4de4;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-51%);
  box-sizing: border-box;
}

#sg_b.sungroup .sgCopyPop.sgCopyDone {
  animation: sgCopyDone 1.4s ease-in-out;
}
#sg_b.sungroup .sgCopyPop {
  font-family: Poppins;
  position: absolute;
  width: 200px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  background-color: #fff200;
  border-radius: 5px;
  height: 20px;
  opacity: 0;
  font-size: 12px;
  z-index: 9;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  #sg_b.sungroup .sgCopyPop {
    font-size: 10px;
    width: 150px;
  }
}
@keyframes sgCopyDone {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    top: -20px;
    opacity: 1;
  }
  100% {
    top: -20px;
    opacity: 0;
  }
}
