.brand-row{
  justify-content:space-between;
}

.pd2-header-status{
  flex:0 0 auto;
  align-self:flex-start;
  margin-left:auto;
}

.pd2-live-status{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:7px 14px;
  margin:0;
  padding:9px 11px;
  border:1px solid rgba(216,173,99,.22);
  border-radius:9px;
  background:rgba(10,11,13,.58);
  font-size:12px;
  line-height:1.25;
  color:#c7beb1;
}

.pd2-live-status-item{
  display:flex;
  align-items:center;
  gap:5px;
  white-space:nowrap;
}

.pd2-live-status-item > span{
  display:inline;
  margin:0;
  color:inherit;
  font-size:inherit;
}

.pd2-live-status b{
  font-weight:800;
  color:#ddd4c6;
}

.pd2-status-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#817b71;
  box-shadow:0 0 0 2px rgba(129,123,113,.11);
  flex:0 0 auto;
}

.pd2-header-status.pd2-status-online .pd2-status-dot{
  background:#70d58a;
  box-shadow:0 0 7px rgba(112,213,138,.58);
}

.pd2-header-status.pd2-status-online #pd2-server-status,
.pd2-header-status.pd2-status-online #pd2-players-online{
  color:#98e4a9;
}

.pd2-header-status.pd2-status-offline .pd2-status-dot{
  background:#df6f63;
  box-shadow:0 0 7px rgba(223,111,99,.45);
}

.pd2-header-status.pd2-status-offline #pd2-server-status{
  color:#ef9188;
}

.pd2-header-status.pd2-status-checking .pd2-status-dot{
  animation:pd2-status-pulse 1.25s ease-in-out infinite;
}

@keyframes pd2-status-pulse{
  0%,100%{opacity:.4}
  50%{opacity:1}
}

@media(max-width:760px){
  .brand-row{
    flex-wrap:wrap;
  }

  .pd2-header-status{
    width:100%;
    margin-left:0;
  }

  .pd2-live-status{
    justify-content:flex-start;
    gap:6px 11px;
    font-size:11px;
  }
}
