body {
  --background: #181820;
  --backgroundRgbaZero: rgba(24,24,32,0);
  --backgroundDark: #111117;
  --backgroundDarkLightBlue: #111117;
  --backgroundDark2: #0c0c10;
  --cardBackground: #20212b;
  --cardBackgroundLight: #272834;
  --cardBackgroundDark: #1c1d26;
  --cardBackgroundRgba: rgba(32,33,43,0.6);
  --textColor: #C8C9D8;
  --placeholderColor: #abacb5;
  --borderColor: #333444;
  --borderColor2: #171822;
  --borderColor3: #0E0E14;
  --linkActiveColor: #4255d4;
  --hoverDark:#181820;
  --linkText: #C8C9D8;
  --darkGreen: #4255d4;
  --darkGreenDark: #248A50;
  --darkBlue: #343891;
  --darkBlueDark: #282B78;
  --darkBluelightWhite: #343891;
  --otherColor1: #1b1c26;
  background: var(--background);
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 14px;
  color: var(--textColor);
}
body.light {
  --background: #eeeeee;
  --backgroundDark: #dddddd;
  --backgroundDarkLightBlue: #343891;
  --backgroundDark2: #bbbbbb;
  --cardBackground: #fff;
  --cardBackgroundLight: #f2f2f2;
  --cardBackgroundDark: #dbdbdb;
  --cardBackgroundRgba: rgba(255,255,255,0.6);
  --textColor: #212529;
  --placeholderColor: #212529;
  --borderColor: #e5e5e5;
  --borderColor2: #8b8989;
  --borderColor3: #bbbbbb;
  --linkActiveColor: #343891;
  --hoverDark:#eeeeee;
  --linkText: #343891;
  --darkGreen: #343891;
  --darkGreenDark: #248A50;
  --darkBlue: #4255d4;
  --darkBlueDark: #282B78;
  --darkBluelightWhite: #fff;
  --otherColor1: #f1f1f1;
  background: var(--background);
  color: var(--textColor);
}
body a {
  text-decoration: none;
}

.streamerItem {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  padding-bottom: 20px;
}
.streamerItem .streamerImage {
  width: 100%;
  position: relative;
  background: var(--cardBackground);
  padding: 4px;
  clip-path: polygon(calc(100% - 30px) 0%, 100% 30px, 100% 100%, 0% 100%, 0% 0%);
  z-index: 1;
}
.streamerItem .streamerImage .imageInner {
  width: 100%;
  position: relative;
  clip-path: polygon(calc(100% - 30px) 0%, 100% 30px, 100% 100%, 0% 100%, 0% 0%);
  z-index: 1;
}
.streamerItem .streamerImage .imageInner img {
  width: 100%;
}
.streamerItem .streamerImage .streamerStatus {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 3px #000;
  z-index: 2;
}
.streamerItem .streamerImage .streamerStatus .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cardBackground);
  display: flex;
  align-items: Center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.25);
  text-shadow: none;
}
.streamerItem .streamerImage .streamerStatus.online .icon {
  background: #28A745;
}
.streamerItem .streamerName {
  width: 90%;
  position: absolute;
  left: -4px;
  bottom: 13px;
  z-index: 2;
}
.streamerItem .streamerName h4 {
  width: 100%;
  position: relative;
  padding: 8px 8px 15px 8px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #343891;
  font-size: 12px;
  color: #fff;
  clip-path: polygon(calc(100% - 17px) 0%, 100% 14px, 100% 100%, 0% 100%, 0% 0%);
}
.streamerItem .streamerName h4 i {
  color: #4255d4;
}
.streamerItem .streamerName:before {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  top: -8px;
  left: -8px;
  background: #282B78;
  clip-path: polygon(calc(100% - 17px) 0%, 100% 14px, 100% 100%, 0% 100%, 0% 0%);
}
.streamerItem .streamerSocial {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px 3px 20px;
  background: #4255d4;
  position: absolute;
  bottom: 0;
  left: 25px;
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 10px 100%, 0% calc(100% - 10px), 0% 0%);
  z-index: 3;
}
.streamerItem .streamerSocial a {
  font-size: 12px;
  color: #343891;
  margin: 0;
  padding: 0;
  transition: all 0.2s;
}
.streamerItem .streamerSocial a:hover {
  transform: scale(1.3);
  transition: all 0.2s;
}
@media (max-width: 576px) {
  .streamerItem .streamerSocial {
    padding: 3px 8px;
    left: 10px;
  }
}

.streamerStreamBox {
  width: 100%;
  height: 650px;
}
@media (max-width: 1199px) {
  .streamerStreamBox {
    height: 530px;
  }
}

.streamerChatBox {
  width: 100%;
  height: 420px;
}
@media (max-width: 1199px) {
  .streamerChatBox {
    height: 525px;
  }
}
