.c-mypage-sidebar {
  display: flex;
  flex-direction: column;
}

.c-mypage-sidebar__woocommerce {
  --theme-color: #03a9f4;
}

.c-mypage-sidebar__dokan {
  --theme-color: #31cd68;
}

.c-mypage-sidebar__affiliate {
  --theme-color: #faa43a;
}

.c-mypage-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 40px 5px;
}

.c-mypage-sidebar__item {
  position: relative;
  padding: 0 40px;
}

.c-mypage-sidebar__item.c-mypage-sidebar__active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 34px;
  background-color: var(--theme-color);
  border-radius: 0 5px 5px 0;
}

.c-mypage-sidebar__link {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}

.c-mypage-sidebar__icon {
  width: 20px;
  height: 20px;
  background-color: #c4c4c4;
}

.c-mypage-sidebar__icon-account {
  -webkit-mask-image: url("account.svg");
  mask-image: url("account.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.c-mypage-sidebar__icon-tool-request {
  -webkit-mask-image: url("tool_request.svg");
  mask-image: url("tool_request.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.c-mypage-sidebar__icon-products {
  -webkit-mask-image: url("products.svg");
  mask-image: url("products.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.c-mypage-sidebar__icon-new-product {
  -webkit-mask-image: url("new_product.svg");
  mask-image: url("new_product.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.c-mypage-sidebar__icon-withdraw-history {
  -webkit-mask-image: url("withdraw_history.svg");
  mask-image: url("withdraw_history.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.c-mypage-sidebar__icon-withdraw {
  -webkit-mask-image: url("withdraw.svg");
  mask-image: url("withdraw.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.c-mypage-sidebar__label {
  font-size: 14px;
  font-weight: bold;
  color: #c4c4c4;
}

.c-mypage-sidebar__logout {
  display: flex;
  justify-content: end;
  padding: 16px;

  &:hover {
    opacity: 0.8;
  }
}

.c-mypage-sidebar__logout-img {
  width: 39px;
  height: 39px;
}

.c-mypage-sidebar__item.c-mypage-sidebar__active .c-mypage-sidebar__label,
.c-mypage-sidebar__link:hover .c-mypage-sidebar__label {
  color: var(--theme-color);
}

.c-mypage-sidebar__item.c-mypage-sidebar__active .c-mypage-sidebar__icon,
.c-mypage-sidebar__link:hover .c-mypage-sidebar__icon {
  background-color: var(--theme-color);
}
