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: #80F1B1;
  --hoverDark:#181820;
  --linkText: #C8C9D8;
  --darkGreen: #80F1B1;
  --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: #80F1B1;
  --darkBlueDark: #282B78;
  --darkBluelightWhite: #fff;
  --otherColor1: #f1f1f1;
  background: var(--background);
  color: var(--textColor);
}
body a {
  text-decoration: none;
}

.playerMarketCategoryWrapper .playerMarketCategory {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.35));
  overflow: hidden;
  transition: all 0.2s;
}
.playerMarketCategoryWrapper .playerMarketCategory.greenShadow {
  filter: drop-shadow(0 4px 4px rgba(128, 241, 177, 0.35));
}
.playerMarketCategoryWrapper .playerMarketCategory a {
  width: 100%;
  position: relative;
  display: block;
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 40px 100%, 0% calc(100% - 30px), 0% 0%);
  transition: all 0.2s;
  overflow: hidden;
}
.test.playerMarketCategoryWrapper .playerMarketCategory a {
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 20px 100%, 0% calc(100% - 15px), 0% 0%);
}

.playerMarketCategoryWrapper .playerMarketCategory a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  box-shadow: 0 0 0 300px rgba(25, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.2s;
}
.playerMarketCategoryWrapper .playerMarketCategory a img {
  width: 100%;
  position: relative;
  z-index: 1;
}
:hover.playerMarketCategoryWrapper .playerMarketCategory a {
  transition: all 0.2s;
}
:hover.playerMarketCategoryWrapper .playerMarketCategory a:before {
  width: 250px;
  height: 250px;
  animation-duration: 0.3s;
  animation-name: hoverEffect;
  transition: all 0.3s;
}

@media (max-width: 576px) {
  .playerMarketCategoryWrapper .playerMarketCategory a:before {
    display: none;
  }
  :hover.playerMarketCategoryWrapper .playerMarketCategory a {
    transition: all 0.2s;
  }
  :hover.playerMarketCategoryWrapper .playerMarketCategory a:before {
    width: 250px;
    height: 250px;
    animation-duration: 0.3s;
    animation-name: hoverEffect;
    transition: all 0.3s;
  }
}
:hover.playerMarketCategoryWrapper .playerMarketCategory {
  transform: translateY(-20px);
  filter: drop-shadow(0 20px 4px rgba(0, 0, 0, 0.55));
  transition: all 0.2s;
}
@media (max-width: 576px) {
  :hover.playerMarketCategoryWrapper .playerMarketCategory {
    transform: translateY(0);
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.35));
  }
}

@keyframes hoverEffect {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
