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;
}

.bestSellerArea {
  width: 100%;
  position: relative;
}

.sellerItemWrapper {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  transition: all 0.3s;
  z-index: 4;
}
.sellerItemWrapper .sellerItem {
  width: 100%;
  position: relative;
  background: var(--cardBackground);
  padding: 10px;
  clip-path: polygon(100% 0%, 100% 100%, 25px 100%, 0% calc(100% - 22px), 0% 0%);
}
.detail.sellerItemWrapper .sellerItem {
  clip-path: polygon(100% 0%, 100% calc(100% - 22px), calc(100% - 25px) 100%, 0% 100%, 0% 0%);
}

.sellerItemWrapper .sellerItem .itemHeader {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--borderColor3);
}
.sellerItemWrapper .sellerItem .itemHeader .headerImage {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #343891;
}
.detail.sellerItemWrapper .sellerItem .itemHeader .headerImage {
  width: 50px;
  height: 50px;
}

.sellerItemWrapper .sellerItem .itemHeader .headerImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle {
  width: calc(100% - 40px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle .titleDetail {
  width: calc(100% - 30px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle .titleDetail h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--textColor);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.detail.sellerItemWrapper .sellerItem .itemHeader .headerTitle .titleDetail h3 {
  font-size: 14px;
}

.sellerItemWrapper .sellerItem .itemHeader .headerTitle .titleDetail h3 i {
  color: var(--darkGreen);
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle .personRosette {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle .personRosette img {
  width: 100%;
}
@media (max-width: 576px) {
  .sellerItemWrapper .sellerItem .itemHeader .headerTitle .personRosette {
    display: none;
  }
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle .lastSeenStatus {
  display: inline-block;
  font-size: 12px;
  color: var(--textColor);
  font-weight: 500;
  background: var(--background);
  padding: 3px 15px;
  line-height: 1;
  border-radius: 50px;
}
.sellerItemWrapper .sellerItem .itemHeader .headerTitle .lastSeenStatus.success {
  background: #28A745;
  color: #fff;
}
.sellerItemWrapper .sellerItem .itemBody {
  width: 100%;
  position: relative;
  padding-top: 10px;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  padding: 5px;
  border-radius: 3px;
  background: var(--background);
}
.detail.sellerItemWrapper .sellerItem .itemBody .itemBox {
  padding: 10px 5px;
}

.sellerItemWrapper .sellerItem .itemBody .itemBox.button {
  background: #343891;
  transition: all 0.2s;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.button i {
  color: #80F1B1;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.button p {
  color: #fff;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.online {
  background: #28A745;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.online i {
  color: #343891;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.online p {
  color: #fff;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.offline {
  background: #c3141b;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.offline i {
  color: #e3b21a;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox.offline p {
  color: #fff;
}
.sellerItemWrapper .sellerItem .itemBody .itemBox i {
  font-size: 20px;
  color: var(--darkGreen);
}
.detail.sellerItemWrapper .sellerItem .itemBody .itemBox i {
  font-size: 20px;
}

.sellerItemWrapper .sellerItem .itemBody .itemBox p {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--textColor);
}
.detail.sellerItemWrapper .sellerItem .itemBody .itemBox p {
  font-size: 12px;
}

.sellerItemWrapper .sellerItem .itemBody .itemBox p strong {
  color: var(--darkGreen);
  font-weight: 800;
}
@media (max-width: 576px) {
  .sellerItemWrapper .sellerItem .itemBody .itemBox p {
    font-size: 10px;
  }
}
@media (max-width: 576px) {
  .sellerItemWrapper .sellerItem .itemBody .itemButtons .buttonLeft i, .sellerItemWrapper .sellerItem .itemBody .itemButtons .buttonRight i {
    display: none;
  }
}
.sellerItemWrapper:hover {
  filter: drop-shadow(0 0px 15px rgba(0, 0, 0, 0.8));
  transition: all 0.3s;
}
