streaming-graphic-one {
  display: block;
  width: 330px * 3 + 30px * 2 + 15px * 2;
  margin: 0 auto;
  position: relative;

  main {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    user-select: none;
  }

  dl {
    background: #FCFBFC;
    margin: 0;
    border: 1px solid #DADADA;
    width: 330px;
    position: relative;
    padding-bottom: 50px;

    &::before, &::after {
      content: none;
    }
  }

  dt {
    width: 112px;
    height: 43px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #00C8C1;
    border-radius: 100px;
    margin: -22px auto -21px;

    i {
      margin-right: 8px;
    }
  }

  &.inited .node {
    transition: .25s transform;
  }

  .node {
    background-image: linear-gradient(0deg, #F3F3F3 0%, white 100%);
    border: 1px solid var(--color);
    box-shadow: 0 2px 10px 0 var(--bgshadow);
    border-radius: 5px;
    width: 210px;
    height: 68px;
    overflow: hidden;
    overflow: clip;
    position: relative;
    margin: 0 auto;
    display: flex;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    margin-top: 50px;

    &.dragging {
      z-index: 100;
      pointer-events: none;
    }

    .circle {
      width: 11px;
      height: 11px;
      margin: 10px 6px 0 12px;
      border: 1px solid rgba(255,255,255,0.70);
      border-radius: 50%;
    }

    .name {
      &-part {
        flex: 1;
      }

      &-text {
        font-size: 15px;
        color: #4C4C4C;
        margin-top: 6px;
        display: flex;

        span {
          flex: 1;
        }

        a {
          margin-left: 4px;
          align-self: center;
        }
      }

      &-type {
        font-size: 12px;
        color: #797979;
        margin-top: 7px;
      }
    }

    &::before {
      content: "";
      display: block;
      transform: rotate(-45deg);
      width: 22px;
      height: 22px;
      position: absolute;
      left: -11px;
      top: -11px;
      background: var(--color);
    }

    &.health {
      &-green {
        --bgshadow: rgba(126, 211, 33, .22);
        --color: #7ED321;
        --circle: linear-gradient(-180deg, #E4FFB6, #68B42D);
      }

      &-yellow {
        --bgshadow: rgba(245, 166, 35, .22);
        --color: #F5A623;
        --circle: linear-gradient(-180deg, #FAD961, #F76B1C);
      }

      &-red {
        --bgshadow: rgba(209, 95, 102, .22);
        --color: #D15F66;
        --circle: linear-gradient(-180deg, #F5515F, #9F041B);
      }
    }

    .status {
      &-part {
        width: 60px;
        align-self: flex-end;
        text-align: right;
        margin: 0 5px 4px 0;
      }

      &-icon {
        position: absolute;
        width: 60px;
        height: 60px;
        right: -12px;
        top: -12px;
        font-size: 60px;
        color: var(--bgshadow);
      }

      &-text {
        font-size: 13px;
        font-weight: 500;
        color: var(--color);
      }
    }
  }

  #links {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    bottom: 0;
    width: calc(100% - 30px);
    height: 100%;
    pointer-events: none;

    .bg {
      stroke: #D2D2D2;
    }
    .fg {
      stroke: #BFBFBF;
      stroke-dasharray: 4px;
      animation: anime-dasharray .4s infinite linear;
    }

    .line {
      fill: none;
      stroke-width: 2px;
    }
  }
}

@keyframes anime-dasharray {
  to { stroke-dashoffset: -8px }
}

.modal-dialog.modal-streaming {
  width: 1080px;
}
