.button-group {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.button-group>::selection {
  background: #ffffff00;
  color: #ffffff00;
}

.button {
  border-radius: 6px;
  font-weight: bold;
  padding: 10px 20px;
  color: var(--white-color);
  text-decoration: none;
  transition: all 150ms ease-in-out;
  max-width: 260px;
  min-width: 190px;
  background-color: var(--article-background-color);
  transition-duration: 0s;
}

.button:hover {
  /* background: linear-gradient(21deg, #594481, #241e3b); */
  background: var(--gray-background-color);
  text-decoration: none !important;
}

.button:hover {
  color: var(--white-color) !important;
}


.discord {
  overflow: visible;
  margin-right: 3px;
  display: inline-block;
}

h4 {
  display: inline;
}

h3 {
  display: inline;
}

.button>h5 {
  text-align: left;
  margin: 10px 0 2px 0;
  color: var(--gray-additionally-color);
  overflow: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.button>h4 {
  margin-left: 2px;
  user-select: text;
}

.button>h3 {
  padding-left: 5px;
}


.copying>h5 {
  padding: 3px 10px;
  background-color: var(--gray-background-color);
  border-radius: 6px;
  text-align: left;
  height: fit-content;
  font-size: medium;
  margin: 10px 0 2px 0;
  color: var(--gray-additionally-color);
  overflow: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  user-select: all;
  overflow: hidden;
  font-weight: 500;
}

.copying {
  display: flex;
  justify-content: left;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
}

.channel-avatar-img {
  border-radius: 5%;
  width: 128px;
  height: 128px;
  user-select: none;
}

.channel-avatar {
  margin-left: 15px;
  position: absolute;
  padding: 5px;
  border-radius: 5%;
  width: 128px;
  height: 128px;
  background-color: var(--article-background-color);
  z-index: 999;
}

.channel-status {
  position: absolute;
  top: 93px;
  left: 165px;
  padding: 4px 7px;
  border-radius: 5px;
  background-color: var(--article-background-color);
  font-size: 12px !important;
  text-transform: uppercase;
  display: flex;
  justify-content: start;
  flex-wrap: nowrap;

}

.channel-status-twitch {
  position: absolute;
  top: 88px;
  left: 265px;
  padding: 5px;
  border-radius: 5px;
  background-color: var(--article-background-color);
  display: flex;
}


.channel-status-boosty {
  position: absolute;
  top: 88px;
  left: 265px;
  padding: 5px;
  border-radius: 5px;
  background-color: var(--article-background-color);
  display: flex;
}


.icons-channel-status {
  width: 15px;
  height: 15px;
  user-select: none;
}

.header-creator {
  position: relative;
  padding-bottom: 120px;
  padding-top: 30px;
}

.channel-info {
  background-color: var(--article-background-color);
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 6px;
  position: relative;

  top: 100px;
  z-index: 1;
  width: auto;
  align-items: baseline;
  padding: 12px 0px;
  vertical-align: middle;
}

.channel-name {
  margin-left: 170px;
  align-items: center;
  font-size: 28px;
  font-weight: 500;
  color: #fff
}

.channel-name:hover {
  text-decoration: none;
}

.channel-info>a:hover {
  color: var(--violet-color);
}

.dot-online {
  width: 9px;
  height: 9px;
  align-self: center;
  margin-right: 7px;
  background-color: #838383;
  border-radius: 50%;
}

.online {
  background-color: var(--violet-color);
  animation: blink;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}


@keyframes blink {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.article-name {
  font-size: xx-large;
  font-weight: 600;
}

.article-description>h5 {
  padding: 0;
  margin: 0;
  font-size: large;
  font-weight: 500;
}

.article-stream {
  border-radius: 6px;
  background-color: var(--article-background-color);
  padding: 10px 20px;
  margin: 0 0 20px 0;
  position: relative;

}

.group-unstream {
  flex-direction: column;
}

.unstream {
  max-width: -webkit-fill-available;
}

.unstream:hover {
  background: var(--article-background-color) !important;
}


.copybutton {
  margin: 10px 0 2px 0;
  border: none;
  border-radius: 6px;
  background-color: var(--gray-background-color);
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  cursor: pointer;
}

.active-copy {
  transform: scale(.94);
}

.copybutton:hover>span {
  opacity: 0.5;
}

.active {
  background-color: var(--violet-opacity-color);
  transform: scale(0.85);
}

.icons-money {
  width: 16px;
  height: 16px;
  margin-bottom: -1px;
  user-select: none;

}

.hide {
  display: none;
}

@media only screen and (max-width: 480px) {

  .article-name {
    font-size: x-large;
  }

  .article-description>h5 {
    font-size: medium;
  }

  .copybutton:hover>span {
    opacity: 1;


  }

}