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

@media (max-width: 576px) {
  body {
    padding-bottom: 100px;
  }
}
.productDetailAreaWrapper {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
}
.productDetailAreaWrapper .productDetailArea {
  width: 100%;
  position: relative;
  padding: 15px;
  background: var(--cardBackground);
  clip-path: polygon(calc(100% - 80px) 0%, 100% 80px, 100% 100%, 70px 100%, 0% calc(100% - 70px), 0% 0%);
}
@media (max-width: 1099px) {
  .productDetailAreaWrapper .productDetailArea {
    /*clip-path:polygon(calc(100% - 80px) 0%, 100% 80px, 100% 100%, 0 100%, 0% 100%, 0% 0%);*/
    clip-path: none;
  }
}
.productDetailAreaWrapper .productDetailArea .buttonLeftSingle, .productDetailAreaWrapper .productDetailArea .buttonRightSingle {
  min-width: 200px;
}
@media (max-width: 1399px) {
  .productDetailAreaWrapper .productDetailArea .buttonLeftSingle.large, .productDetailAreaWrapper .productDetailArea .buttonRightSingle.large {
    font-size: 13px;
    padding: 11px 20px;
  }
}
@media (max-width: 999px) {
  .productDetailAreaWrapper .productDetailArea .buttonLeftSingle, .productDetailAreaWrapper .productDetailArea .buttonRightSingle {
    min-width: auto;
  }
}

.productImage {
  width: 100%;
  position: relative;
  display: flex;
  min-height: 100%;
  align-self: stretch;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
}
.productImage img {
  width: 100%;
  position: relative;
  min-height: 100%;
  object-fit: cover;
  align-self: stretch;
  clip-path: polygon(100% 0%, 100% 100%, 60px 100%, 0% calc(100% - 60px), 0% 0%);
}
@media (max-width: 1099px) {
  .productImage img {
    object-fit: contain;
    /*clip-path:polygon(calc(100% - 70px) 0%, 100% 70px, 100% 100%, 0% 100%, 0% 0%);*/
    clip-path: none;
  }
}

.productDetailBox {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.productHeader {
  width: 100%;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--borderColor2);
}
@media (max-width: 576px) {
  .productHeader {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.productHeader.gb {
  border-bottom: none;
}
.productHeader .productTitle {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: var(--darkGreen);
  margin: 0 0 5px 0;
}
@media (max-width: 576px) {
  .productHeader .productTitle {
    font-size: 16px;
  }
}
.productHeader .productTitleElements {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .productHeader .productTitleElements {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.productHeader .productTitleElements .colE {
  position: relative;
  padding: 0 15px;
  border-right: 1px solid var(--borderColor2);
  min-height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.productHeader .productTitleElements .colE:first-child {
  padding-left: 0;
}
.productHeader .productTitleElements .colE:last-child {
  border-right: none;
}
@media (max-width: 576px) {
  .productHeader .productTitleElements .colE {
    padding: 0 5px;
  }
  .productHeader .productTitleElements .colE .buttonRightSingle {
    padding: 7px 10px;
  }
}

.productFavAddButton, .productFavRemoveButton {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #80F1B1;
  border: 2px solid #248A50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #343891;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
}

.productFavRemoveButton {
  background: #c3141b;
  border: 2px solid #990d11;
  color: #fff;
}

.iconLink {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--textColor);
}
.iconLink i {
  color: var(--darkGreen);
  font-size: 20px;
}
@media (max-width: 576px) {
  .iconLink {
    font-size: 11px;
  }
  .iconLink i {
    font-size: 13px;
  }
}

.commentStats.detailCommentStats {
  font-size: 15px;
}
.commentStats.detailCommentStats .stars {
  font-size: 15px;
}
@media (max-width: 576px) {
  .commentStats.detailCommentStats {
    font-size: 10px;
  }
  .commentStats.detailCommentStats i {
    font-size: 10px;
  }
}

.detailPrice {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 0;
}
.detailPrice .priceBox {
  display: inline-flex;
  gap: 20px;
}
.detailPrice .price {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  font-size: 40px;
  font-weight: 800;
  color: var(--darkGreen);
  line-height: 1;
}
.detailPrice .price .unitPriceBox {
  font-size: 20px;
  font-weight: 700;
  color: #e3b21a;
  line-height: 1;
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
}
.detailPrice .price .unitPriceBox .oldPrice {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .detailPrice .price .unitPriceBox .oldPrice {
    font-size: 10px;
  }
}
.detailPrice .price .unitPriceBox .oldPrice:before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #e3b21a;
  position: absolute;
  top: 50%;
  left: 0;
}
.detailPrice .price .unitPriceBox .percent {
  font-size: 10px;
  display: inline-block;
  padding: 2px 6px;
  background: var(--darkGreen);
  color: var(--darkBlue);
  border-radius: 20px;
}
.detailPrice .price .unitPriceBox .productBasketCount {
  font-size: 15px;
}
@media (max-width: 576px) {
  .detailPrice .price .unitPriceBox {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .detailPrice .price .unitPriceBox .productBasketCount {
    font-size: 10px;
  }
}
.detailPrice .price.sale {
  display: inline-block;
  padding: 10px;
  border: 2px solid #80F1B1;
  border-radius: 10px;
  position: relative;
}
.detailPrice .price.sale .title {
  display: inline-block;
  padding: 0 20px;
  background: var(--cardBackground);
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--textColor);
}
.detailPrice .salePrice {
  font-size: 40px;
  font-weight: 800;
  color: #e3b21a;
  line-height: 1;
  display: inline-block;
  padding: 10px;
  border: 2px solid #343891;
  border-radius: 10px;
  position: relative;
}
.detailPrice .salePrice .title {
  display: inline-block;
  padding: 0 20px;
  background: var(--cardBackground);
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--textColor);
}
.detailPrice .installment {
  font-size: 14px;
  color: var(--textColor);
}
@media (max-width: 1099px) {
  .detailPrice {
    align-items: flex-start;
    gap: 0;
    padding: 0;
  }
  .detailPrice .price {
    font-size: 25px;
  }
  .detailPrice .installment {
    font-size: 10px;
  }
}

.buttonIconBackground {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  align-self: baseline;
  clip-path: polygon(calc(100% - 17px) 0%, 100% 14px, 100% 100%, 0% 100%, 0% 0%);
  transition: all 0.2s;
}
.buttonIconBackground .icon {
  width: 65px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  font-size: 30px;
  border-radius: 5px 0 0 5px;
  color: var(--darkGreen);
  transition: all 0.2s;
}
@media (max-width: 999px) {
  .buttonIconBackground .icon {
    width: 45px;
    font-size: 20px;
  }
}
.buttonIconBackground .text {
  font-size: 14px;
  font-weight: 400;
  padding: 15px 30px 15px 15px;
  background: var(--cardBackgroundLight);
  line-height: 1;
  border-radius: 0 5px 5px 0;
  color: var(--textColor);
  transition: all 0.2s;
}
@media (max-width: 999px) {
  .buttonIconBackground .text {
    padding: 10px 30px 10px 15px;
  }
}
.buttonIconBackground:hover {
  transform: scale(1.05);
  transition: all 0.2s;
}
.buttonIconBackground:hover .icon {
  background: var(--darkBlue);
  color: var(--darkGreen);
  transition: all 0.2s;
}
.buttonIconBackground:hover .text {
  background: var(--cardBackgroundLight);
  color: var(--darkGreen);
  transition: all 0.2s;
}

.detailTitle {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.detailTitle h3 {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--darkGreen);
  margin: 0;
  padding: 0 25px 0 0;
  position: relative;
  background: var(--cardBackground);
}
.detailTitle:before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-bottom: 1px solid var(--borderColor2);
}
.detailTitle .rightBox {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 0 0 20px;
  background: var(--cardBackground);
}
.detailTitle .rightBox .carouselButton {
  width: 30px;
  height: 30px;
  font-size: 13px;
  background: var(--cardBackgroundLight);
  color: var(--darkGreen);
}
@media (max-width: 576px) {
  .detailTitle {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .detailTitle h3 {
    font-size: 15px;
    padding: 0 15px;
  }
}

.detailProductListScroller {
  width: 100%;
  position: relative;
  max-height: 150px;
}

.carouselArea {
  position: relative;
}
.carouselArea:hover .scrollEffect {
  display: none;
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.scrollEffect {
  position: absolute;
  width: 100px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgba(129, 241, 177, 0), rgba(129, 241, 177, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  z-index: 2;
}
.scrollEffect i {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

.detailProductList {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  gap: 8px 10px;
  padding-right: 30px;
}
.detailProductList .detailProductItem {
  width: 100%;
  position: relative;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--textColor);
  background: var(--background);
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  transition: all 0.2s;
}
.detailProductList .detailProductItem:hover {
  background: var(--darkBlue);
  color: var(--darkGreen);
  transition: all 0.2s;
}
.detailProductList .detailProductItem.active {
  background: var(--darkGreen);
  color: var(--darkBlue);
  border-color: var(--darkGreenDark);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.detailProductList .detailProductItem.active.gb .productName {
  color: var(--darkBlue);
}
.detailProductList .detailProductItem.active.gb .productDetail {
  background: #6cd499;
  border: 1px solid var(--darkGreen);
}
body.light .detailProductList .detailProductItem.active.gb .productDetail {
  background: #2c2f81;
}

.detailProductList .detailProductItem.active.gb .productDetail .productDetailPrice {
  color: var(--darkBlue);
}
.detailProductList .detailProductItem.active.gb .productDetail .productDetailPrice:first-child {
  border-right: 1px solid var(--darkGreen);
}
.detailProductList .detailProductItem.active:hover {
  background: var(--darkGreen);
  color: var(--darkBlue);
  transition: all 0.2s;
}
.detailProductList .detailProductItem.gb {
  justify-content: space-between;
  padding: 0 5px 0 0;
}
.detailProductList .detailProductItem.gb .productName {
  width: 50%;
  position: relative;
  text-align: start;
  font-size: 15px;
  font-weight: 500;
  color: var(--textColor);
  padding: 10px 10px;
}
@media (max-width: 576px) {
  .detailProductList .detailProductItem.gb .productName {
    font-size: 13px;
  }
}
.detailProductList .detailProductItem.gb .productDetail {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0;
  background: var(--cardBackground);
  border-radius: 5px;
  border: 1px solid var(--borderColor);
}
.detailProductList .detailProductItem.gb .productDetail .productDetailPrice {
  display: inline-block;
  padding: 5px 5px;
  text-align: center;
  font-weight: 400;
  font-size: 11px;
  color: var(--textColor);
}
.detailProductList .detailProductItem.gb .productDetail .productDetailPrice:first-child {
  border-right: 1px solid var(--borderColor);
}
.detailProductList .detailProductItem.gb:hover {
  background: var(--background);
  color: var(--textColor);
  transition: all 0.2s;
}
@media (max-width: 1399px) {
  .detailProductList .detailProductItem {
    font-size: 12px;
  }
}
@media (max-width: 999px) {
  .detailProductList .detailProductItem {
    padding: 10px 5px;
  }
}
@media (max-width: 576px) {
  .detailProductList .detailProductItem {
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
}
@media (max-width: 576px) {
  .detailProductList {
    grid-template-columns: repeat(1, 100%);
    gap: 5px;
    padding-right: 0;
  }
}

.detailInfo {
  width: 100%;
  position: relative;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.detailInfo .icon {
  font-size: 20px;
  color: var(--darkGreen);
}
.detailInfo .text {
  font-size: 17px;
  color: var(--textColor);
}
@media (max-width: 1399px) {
  .detailInfo .icon {
    font-size: 15px;
    color: var(--darkGreen);
  }
  .detailInfo .text {
    font-size: 14px;
    color: var(--textColor);
  }
}
@media (max-width: 576px) {
  .detailInfo {
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 5px;
  }
  .detailInfo .icon {
    font-size: 13px;
    color: var(--darkGreen);
  }
  .detailInfo .text {
    font-size: 12px;
    color: var(--textColor);
  }
}

.detailBasketArea {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.detailBasketNavigateArea {
  display: inline-flex;
  align-items: center;
}
.detailBasketNavigateArea .basketNavigateMinus, .detailBasketNavigateArea .basketNavigatePlus {
  width: 60px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--textColor);
  background: var(--borderColor);
  transition: all 0.2s ease-in-out 0s;
}
@media (max-width: 1399px) {
  .detailBasketNavigateArea .basketNavigateMinus, .detailBasketNavigateArea .basketNavigatePlus {
    width: 45px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .detailBasketNavigateArea .basketNavigateMinus, .detailBasketNavigateArea .basketNavigatePlus {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }
}
.detailBasketNavigateArea .basketNavigateMinus.isDisable, .detailBasketNavigateArea .basketNavigatePlus.isDisable {
  pointer-events: none;
}
.detailBasketNavigateArea .basketNavigateMinus:hover, .detailBasketNavigateArea .basketNavigatePlus:hover {
  background: var(--darkGreenDark);
  color: var(--darkBlue);
  transition: all 0.2s ease-in-out 0s;
}
.detailBasketNavigateArea .basketNavigateMinus:hover:before, .detailBasketNavigateArea .basketNavigatePlus:hover:before {
  background: var(--darkGreen);
}
.detailBasketNavigateArea .basketNavigateMinus i, .detailBasketNavigateArea .basketNavigatePlus i {
  pointer-events: none;
}
.detailBasketNavigateArea .basketNavigateMinus:before, .detailBasketNavigateArea .basketNavigatePlus:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--cardBackground);
  position: absolute;
  top: 2px;
  left: 2px;
}
.detailBasketNavigateArea .basketNavigateMinus i, .detailBasketNavigateArea .basketNavigatePlus i {
  position: relative;
}
.detailBasketNavigateArea .basketNavigateMinus {
  clip-path: polygon(17px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 14px);
}
.detailBasketNavigateArea .basketNavigateMinus:before {
  clip-path: polygon(16px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 13px);
}
.detailBasketNavigateArea .basketNavigatePlus {
  clip-path: polygon(100% 0%, 100% 100%, 100% calc(100% - 14px), calc(100% - 17px) 100%, 0% 100%, 0% 0%);
}
.detailBasketNavigateArea .basketNavigatePlus:before {
  clip-path: polygon(100% 0%, 100% 100%, 100% calc(100% - 13px), calc(100% - 16px) 100%, 0% 100%, 0% 0%);
}
.detailBasketNavigateArea .basketNavigateInput {
  width: 100px;
  height: 50px;
  border-top: 2px solid var(--borderColor);
  border-bottom: 2px solid var(--borderColor);
  font-size: 25px;
  font-weight: 600;
  color: var(--textColor);
  background: var(--background);
  line-height: 50px;
  text-align: center;
  border-left: none;
  border-right: none;
  -moz-appearance: textfield;
  border-radius: 0 !important;
}
@media (max-width: 1399px) {
  .detailBasketNavigateArea .basketNavigateInput {
    width: 50px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .detailBasketNavigateArea .basketNavigateInput {
    width: 50px;
    height: 36px;
    font-size: 12px;
    line-height: 36px;
  }
}
.detailBasketNavigateArea .basketNavigateInput:focus {
  outline: none;
  box-shadow: none;
}
.detailBasketNavigateArea .basketNavigateInput::-webkit-outer-spin-button, .detailBasketNavigateArea .basketNavigateInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

.mobileShoppingNav {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  background: var(--cardBackgroundLight);
  box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 11;
  transition: all 0.2s;
}
.mobileShoppingNav.footerActive {
  bottom: 61px;
  transition: all 0.2s;
}
.mobileShoppingNav.oneLine {
  display: flex;
  justify-content: space-between;
}
.mobileShoppingNav.oneLine .detailPrice {
  justify-content: center;
}
.mobileShoppingNav.oneLine .detailPrice .price {
  font-size: 15px;
  white-space: nowrap;
}
.mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigateMinus, .mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigatePlus {
  width: 30px;
  height: 34px;
  font-size: 8px;
}
.mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigateMinus {
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 9px 100%, 0% calc(100% - 8px), 0% 0%);
}
.mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigateMinus:before {
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 8px 100%, 0% calc(100% - 8px), 0% 0%);
}
.mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigatePlus {
  clip-path: none;
}
.mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigatePlus:before {
  width: calc(100% - 2px);
  clip-path: none;
}
.mobileShoppingNav.oneLine .detailBasketNavigateArea .basketNavigateInput {
  width: 30px;
  height: 34px;
  font-size: 11px;
  line-height: 34px;
  border-radius: 0 !important;
}
.mobileShoppingNav.oneLine .itemButtons {
  margin-top: 0;
}
.mobileShoppingNav.oneLine .itemButtons i {
  display: none;
}
.mobileShoppingNav.oneLine .itemButtons .buttonLeft, .mobileShoppingNav.oneLine .itemButtons .buttonRight {
  width: auto;
  padding: 10px 10px;
  font-size: 9px;
}
.mobileShoppingNav.oneLine .itemButtons .buttonLeft {
  clip-path: none;
}
.mobileShoppingNav.oneLine .itemButtons .buttonLeft:before {
  clip-path: none;
}

.buttonBadge {
  display: inline-flex;
  padding: 3px 6px;
  font-size: 10px;
  background: #80F1B1;
  color: #343891;
  border-radius: 20px;
  font-weight: 700;
}

.goldBarPaymentBoxes {
  position: relative;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner {
  display: inline-flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner {
    width: 100%;
    gap: 5px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox {
  width: 300px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding: 15px;
  background: var(--borderColor);
  clip-path: polygon(calc(100% - 112px) 0, calc(100% - 112px) 40px, 100% 40px, 100% 100%, 17px 100%, 0 calc(100% - 17px), 0 0);
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox {
    width: calc(50% - 5px);
    padding: 15px 10px 10px 10px;
    clip-path: polygon(calc(100% - 61px) 0, calc(100% - 61px) 35px, 100% 35px, 100% 100%, 17px 100%, 0 calc(100% - 17px), 0 0);
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--cardBackground);
  clip-path: polygon(calc(100% - 112px) 0, calc(100% - 112px) 40px, 100% 40px, 100% 100%, 17px 100%, 0 calc(100% - 17px), 0 0);
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox:before {
    clip-path: polygon(calc(100% - 61px) 0, calc(100% - 61px) 35px, 100% 35px, 100% 100%, 17px 100%, 0 calc(100% - 17px), 0 0);
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .unitPriceBox {
  font-size: 20px;
  font-weight: 700;
  color: #e3b21a;
  line-height: 1;
  position: relative;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .unitPriceBox .productBasketCount {
  font-size: 15px;
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .unitPriceBox {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .unitPriceBox .productBasketCount {
    font-size: 10px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .quantityPriceBox {
  font-size: 35px;
  font-weight: 800;
  color: var(--textColor);
  line-height: 1;
  position: relative;
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .quantityPriceBox {
    font-size: 20px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton {
  width: 100%;
  position: relative;
  padding: 10px 20px;
  background: var(--borderColor);
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 17px 100%, 0% calc(100% - 14px), 0% 0%);
  font-size: 15px;
  color: var(--textColor);
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton {
    font-size: 12px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--background);
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 17px 100%, 0% calc(100% - 14px), 0% 0%);
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton i {
  color: #e3b21a;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton span .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton:hover {
  background: #248A50;
  color: #343891;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton:hover i {
  color: #343891;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentLeftBox .leftBasketButton:hover:before {
  background: #80F1B1;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox {
  width: 300px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding: 15px;
  background: var(--borderColor);
  clip-path: polygon(0 40px, 112px 40px, 112px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%);
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox {
    width: calc(50% - 5px);
    padding: 15px 10px 10px 10px;
    clip-path: polygon(0 35px, 66px 35px, 66px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%);
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--cardBackground);
  clip-path: polygon(0 40px, 112px 40px, 112px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%);
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox:before {
    clip-path: polygon(0 35px, 66px 35px, 66px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%);
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .unitPriceBox {
  font-size: 20px;
  font-weight: 700;
  color: #e3b21a;
  line-height: 1;
  position: relative;
  text-align: right;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .unitPriceBox .productBasketCount {
  font-size: 15px;
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .unitPriceBox {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .unitPriceBox .productBasketCount {
    font-size: 10px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .quantityPriceBox {
  font-size: 35px;
  font-weight: 800;
  color: var(--textColor);
  line-height: 1;
  position: relative;
  text-align: right;
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .quantityPriceBox {
    font-size: 20px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton {
  width: 100%;
  position: relative;
  padding: 10px 20px;
  background: var(--borderColor);
  clip-path: polygon(100% 0%, 100% calc(100% - 17px), calc(100% - 14px) 100%, 0% 100%, 0% 0%);
  font-size: 15px;
  color: var(--textColor);
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton {
    font-size: 12px;
  }
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--background);
  clip-path: polygon(100% 0%, 100% calc(100% - 17px), calc(100% - 14px) 100%, 0% 100%, 0% 0%);
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton i {
  color: #e3b21a;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton span .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton:hover {
  background: #248A50;
  color: #343891;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton:hover i {
  color: #343891;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .goldBarPaymentRightBox .rightBasketButton:hover:before {
  background: #80F1B1;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea .basketNavigateMinus, .goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea .basketNavigatePlus {
  height: 35px;
  clip-path: none;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea .basketNavigateMinus:before, .goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea .basketNavigatePlus:before {
  clip-path: none;
}
.goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea .basketNavigateInput {
  height: 35px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .goldBarPaymentBoxes .goldBarPaymentBoxesInner .detailBasketNavigateArea .basketNavigateInput {
    font-size: 12px;
  }
}

.epinPaymentMobileBox {
  width: 100%;
  position: relative;
  z-index: 100;
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background: var(--borderColor);
  padding: 15px 10px 10px 10px;
  clip-path: polygon(calc(100% - 127px) 0, calc(100% - 127px) 35px, 100% 35px, 100% 100%, 17px 100%, 0 calc(100% - 17px), 0 0);
  z-index: 101;
}
.noBasket.epinPaymentMobileBox .epinPaymentMobileBoxItem {
  clip-path: polygon(calc(100% - 21px) 0, 100% 17px, 100% 100%, 0 100%, 0 100%, 0 0);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.epinPaymentMobileBox .epinPaymentMobileBoxItem:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--cardBackground);
  clip-path: polygon(calc(100% - 127px) 0, calc(100% - 127px) 35px, 100% 35px, 100% 100%, 17px 100%, 0 calc(100% - 17px), 0 0);
}
.noBasket.epinPaymentMobileBox .epinPaymentMobileBoxItem:before {
  clip-path: polygon(calc(100% - 20px) 0, 100% 16px, 100% 100%, 0 100%, 0 100%, 0 0);
}

.epinPaymentMobileBox .epinPaymentMobileBoxItem .detailPrice .price {
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons {
  justify-content: space-between;
  margin-top: 0;
}
.noBasket.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons {
  width: 50%;
}

.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonLeft, .epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonRight {
  width: calc(50% - 2px);
  background: var(--borderColor);
  font-size: 12px;
  color: var(--textColor);
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonLeft:before, .epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonRight:before {
  background: var(--background);
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonLeft i, .epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonRight i {
  color: #e3b21a;
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonLeft:hover, .epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonRight:hover {
  background: #248A50;
  color: #343891;
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonLeft:hover i, .epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonRight:hover i {
  color: #343891;
}
.epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonLeft:hover:before, .epinPaymentMobileBox .epinPaymentMobileBoxItem .itemButtons .buttonRight:hover:before {
  background: #80F1B1;
}
.epinPaymentMobileBox .detailBasketNavigateArea {
  position: absolute;
  top: -5px;
  right: 0;
  z-index: 102;
}
.epinPaymentMobileBox .detailBasketNavigateArea .basketNavigateMinus, .epinPaymentMobileBox .detailBasketNavigateArea .basketNavigatePlus {
  height: 35px;
  clip-path: none;
}
.epinPaymentMobileBox .detailBasketNavigateArea .basketNavigateMinus:before, .epinPaymentMobileBox .detailBasketNavigateArea .basketNavigatePlus:before {
  clip-path: none;
}
.epinPaymentMobileBox .detailBasketNavigateArea .basketNavigateInput {
  height: 35px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .epinPaymentMobileBox .detailBasketNavigateArea .basketNavigateInput {
    font-size: 12px;
  }
}

.minWidthAuto {
  min-width: auto !important;
}

#otherProductList .owl-item {
  max-width: 231px !important;
}

.productVerticalList {
  width: 100%;
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
}
.productVerticalList:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--cardBackground);
  clip-path: polygon(100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 0%);
}
.productVerticalList .image {
  width: 90px;
  position: relative;
  box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.15);
}
.productVerticalList .image img {
  width: 100%;
}
.productVerticalList .image:before {
  content: "";
  width: 0;
  height: 80%;
  border-right: 2px solid var(--borderColor2);
  position: absolute;
  top: 10%;
  right: -10px;
}
.productVerticalList .info {
  width: calc(100% - 90px);
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.productVerticalList .info .detail {
  width: calc(100% - 400px);
  position: relative;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
}
.productVerticalList .info .detail .title {
  font-size: 17px;
  font-weight: 600;
}
.productVerticalList .info .detail .title a {
  color: var(--darkGreen);
}
.productVerticalList .info .detail .title a:hover {
  color: var(--darkGreen);
  text-decoration: underline;
}
.productVerticalList .info .detail .desc {
  font-size: 14px;
  color: var(--textColor);
  margin-top: 5px;
}
.productVerticalList .info .buttons {
  width: 400px;
  position: relative;
}

.verticalButtonBoxes {
  width: 400px;
  position: relative;
}
.verticalButtonBoxes .verticalButtonBoxesInner {
  width: 100%;
  gap: 0;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background: var(--borderColor);
  width: calc(50% - 5px);
  padding: 8px;
  margin-right: 5px;
  clip-path: polygon(calc(100% - 61px) 0, calc(100% - 61px) 25px, 100% 25px, 100% 100%, 0 100%, 0 calc(100% - 0px), 0 0);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--cardBackground);
  clip-path: polygon(calc(100% - 61px) 0, calc(100% - 61px) 25px, 100% 25px, 100% 100%, 0px 100%, 0 calc(100% - 0px), 0 0);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .unitPriceBox {
  font-size: 12px;
  font-weight: 700;
  color: #e3b21a;
  line-height: 1;
  position: relative;
  margin-bottom: 5px;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .unitPriceBox .productBasketCount {
  font-size: 10px;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .quantityPriceBox {
  font-size: 16px;
  font-weight: 800;
  color: var(--textColor);
  line-height: 1;
  position: relative;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton {
  width: 100%;
  position: relative;
  padding: 6px 20px;
  background: var(--borderColor);
  font-size: 12px;
  color: var(--textColor);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--background);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton i {
  color: #e3b21a;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton span .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton:hover {
  background: #248A50;
  color: #343891;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton:hover i {
  color: #343891;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonLeftBox .leftBasketButton:hover:before {
  background: #80F1B1;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background: var(--borderColor);
  width: 50%;
  padding: 8px;
  clip-path: polygon(0 25px, 66px 25px, 66px 0, 100% 0, 100% calc(100% - 23px), calc(100% - 21px) 100%, 0 100%);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--cardBackground);
  clip-path: polygon(0 25px, 66px 25px, 66px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 20px) 100%, 0 100%);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .unitPriceBox {
  font-size: 12px;
  font-weight: 700;
  color: #e3b21a;
  line-height: 1;
  position: relative;
  text-align: right;
  margin-bottom: 5px;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .unitPriceBox .productBasketCount {
  font-size: 10px;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .quantityPriceBox {
  font-size: 16px;
  font-weight: 800;
  color: var(--textColor);
  line-height: 1;
  position: relative;
  text-align: right;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton {
  width: 100%;
  position: relative;
  padding: 6px 20px;
  background: var(--borderColor);
  clip-path: polygon(100% 0%, 100% calc(100% - 17px), calc(100% - 16px) 100%, 0% 100%, 0% 0%);
  font-size: 12px;
  color: var(--textColor);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--background);
  clip-path: polygon(100% 0%, 100% calc(100% - 16px), calc(100% - 15px) 100%, 0% 100%, 0% 0%);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton i {
  color: #e3b21a;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton span .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:hover {
  background: #248A50;
  color: #343891;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:hover i {
  color: #343891;
}
.verticalButtonBoxes .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:hover:before {
  background: #80F1B1;
}
.verticalButtonBoxes .verticalButtonBoxesInner .detailBasketNavigateArea {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.verticalButtonBoxes .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigateMinus, .verticalButtonBoxes .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigatePlus {
  width: 36px;
  height: 25px;
  font-size: 10px;
  clip-path: none;
}
.verticalButtonBoxes .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigateMinus:before, .verticalButtonBoxes .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigatePlus:before {
  clip-path: none;
}
.verticalButtonBoxes .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigateInput {
  width: 50px;
  height: 25px;
  font-size: 11px;
}

.verticalButtonBoxes2 {
  width: 400px;
  position: relative;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner {
  width: 100%;
  gap: 0;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background: var(--borderColor);
  width: 60%;
  padding: 8px;
  clip-path: polygon(0 25px, 128px 25px, 128px 0, 100% 0, 100% calc(100% - 23px), calc(100% - 21px) 100%, 0 100%);
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--cardBackground);
  clip-path: polygon(0 25px, 128px 25px, 128px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 20px) 100%, 0 100%);
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .unitPriceBox {
  font-size: 12px;
  font-weight: 700;
  color: #e3b21a;
  line-height: 1;
  position: relative;
  text-align: right;
  margin-bottom: 5px;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .unitPriceBox .productBasketCount {
  font-size: 10px;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .quantityPriceBox {
  font-size: 16px;
  font-weight: 800;
  color: var(--textColor);
  line-height: 1;
  position: relative;
  text-align: right;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton {
  width: 100%;
  position: relative;
  padding: 6px 20px;
  background: var(--borderColor);
  clip-path: polygon(100% 0%, 100% calc(100% - 17px), calc(100% - 16px) 100%, 0% 100%, 0% 0%);
  font-size: 12px;
  color: var(--textColor);
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--background);
  clip-path: polygon(100% 0%, 100% calc(100% - 16px), calc(100% - 15px) 100%, 0% 100%, 0% 0%);
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton i {
  color: #e3b21a;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton span .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:hover {
  background: #248A50;
  color: #343891;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:hover i {
  color: #343891;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .verticalButtonRightBox .rightBasketButton:hover:before {
  background: #80F1B1;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .detailBasketNavigateArea {
  position: absolute;
  top: -5px;
  left: 57%;
  transform: translateX(-57%);
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigateMinus, .verticalButtonBoxes2 .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigatePlus {
  width: 36px;
  height: 25px;
  font-size: 10px;
  clip-path: none;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigateMinus:before, .verticalButtonBoxes2 .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigatePlus:before {
  clip-path: none;
}
.verticalButtonBoxes2 .verticalButtonBoxesInner .detailBasketNavigateArea .basketNavigateInput {
  width: 50px;
  height: 25px;
  font-size: 11px;
}
